I did an upgrade from 2022.1.0.2677 to 2024.7.0.3446. Soup response on LoadData0 is different between version, so the communication with other application stopped working. The difference is in element <LoadData0Result>
which is replaced with element <DataSet>
.
Soap response from version 2022.1.0.2677
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:Body>
<LoadData0Response xmlns="http://asapenginewebapi.advantages.cz/">
<LoadData0Result>
<xs:schema id="ROOT" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop">
<xs:element name="ROOT" msdata:IsDataSet="true" msdata:Locale="cs-CZ" msprop:Id="d9e75316-aa3d-498b-aa42-e91385e52617">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="TTD_SCHENK_PAS_DOB" msdata:IsLoading="False" msdata:DisplayExpression="'Laborator - DOB'" msprop:EntityId="53f431fc-51a6-4830-b41d-fe124863c48c" msprop:Id="9897a2eb-4076-4f5d-937e-93bebb400535" msprop:AuditingSecondReferenceKeyColumn="" msprop:IsAuditingEnabled="None">
<xs:complexType>
<xs:attribute name="ID_vz" msdata:Caption="ÄŚislo vzorku" msprop:IsAuditingEnabled="None" msprop:OrigamDataType="Integer" msprop:OnCopyAction="Copy" msprop:FieldId="b4caa7c0-88a8-41e3-ab7c-8dbc4316ccff" msprop:IsDatabaseField="True" msprop:Id="4c234d0f-679c-487e-a1da-f178c1cc9009" type="xs:int" />
<xs:attribute name="LOP" msprop:IsAuditingEnabled="None" msprop:OrigamDataType="Long" msprop:OnCopyAction="Copy" msprop:FieldId="a765ed5d-c2ec-460b-89e0-7a753f493230" msprop:IsDatabaseField="True" msprop:Id="2c25da3a-e49a-42cc-bdd5-f6b616fb4bdd" type="xs:long" />
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<ROOT xmlns="">
<TTD_SCHENK_PAS_DOB diffgr:id="TTD_SCHENK_PAS_DOB1" msdata:rowOrder="0" ID_vz="0" />
</ROOT>
</diffgr:diffgram>
</LoadData0Result>
</LoadData0Response>
</s:Body>
</s:Envelope>
Soap response from version 2024.7.0.3446
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:Body>
<LoadData0Response xmlns="http://asapenginewebapi.advantages.cz/">
<DataSet>
<xs:schema id="ROOT" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop">
<xs:element name="ROOT" msdata:IsDataSet="true" msdata:Locale="cs-CZ" msprop:Id="d9e75316-aa3d-498b-aa42-e91385e52617">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="TTD_SCHENK_PAS_DOB" msdata:IsLoading="False" msdata:DisplayExpression="'Laborator - DOB'" msprop:Id="9897a2eb-4076-4f5d-937e-93bebb400535" msprop:EntityId="53f431fc-51a6-4830-b41d-fe124863c48c" msprop:AuditingSecondReferenceKeyColumn="" msprop:IsAuditingEnabled="None">
<xs:complexType>
<xs:attribute name="ID_vz" msdata:Caption="ÄŚislo vzorku" msprop:IsAuditingEnabled="None" msprop:OnCopyAction="Copy" msprop:Id="4c234d0f-679c-487e-a1da-f178c1cc9009" msprop:OrigamDataType="Integer" msprop:FieldId="36b2674b-4cc0-418e-be1d-871ef8bcf475" msprop:IsDatabaseField="True" type="xs:int" />
<xs:attribute name="LOP" msprop:IsAuditingEnabled="None" msprop:OnCopyAction="Copy" msprop:Id="2c25da3a-e49a-42cc-bdd5-f6b616fb4bdd" msprop:OrigamDataType="Long" msprop:FieldId="5c9d8999-8b51-4669-9a9a-129e4429191c" msprop:IsDatabaseField="True" type="xs:long" />
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<ROOT xmlns="">
<TTD_SCHENK_PAS_DOB diffgr:id="TTD_SCHENK_PAS_DOB1" msdata:rowOrder="0" ID_vz="0" />
</ROOT>
</diffgr:diffgram>
</DataSet>
</LoadData0Response>
</s:Body>
</s:Envelope>