This commit is contained in:
2021-10-27 11:19:22 +02:00
parent 13f28aa1d8
commit f4813a04a9
76 changed files with 9922 additions and 2253 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="ArrayOfstring">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring" />
<xs:complexType name="ArrayOfdecimal">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="decimal" type="xs:decimal" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfdecimal" nillable="true" type="tns:ArrayOfdecimal" />
<xs:complexType name="ArrayOfint">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="int" type="xs:int" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfint" nillable="true" type="tns:ArrayOfint" />
</xs:schema>

View File

@@ -0,0 +1,210 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/DSFinVK" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/DSFinVK" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xs:simpleType name="ErrorCode">
<xs:restriction base="xs:string">
<xs:enumeration value="OK" />
<xs:enumeration value="FAILED" />
<xs:enumeration value="BAD_USERNAME" />
<xs:enumeration value="BAD_PASSWORD" />
<xs:enumeration value="TSE_NOT_FOUND" />
<xs:enumeration value="TSE_INITIALIZATION_FAILED" />
<xs:enumeration value="TSE_BEGIN_TRANSACTION_FAILED" />
<xs:enumeration value="TSE_FINISH_TRANSACTION_FAILED" />
<xs:enumeration value="ARRAY_LENGTH_NOT_EQUAL" />
<xs:enumeration value="PARAMETER_ERROR" />
<xs:enumeration value="DSFINVKCOM_LICENSE_NOT_VALID" />
<xs:enumeration value="KSVCOM_LICENSE_NOT_VALID" />
<xs:enumeration value="DATABASE_NO_CONNECTION">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">100</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DATABASE_CONNECTION_NOT_OPENED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">101</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DATABASE_NOT_SPECIFIED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">102</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DATABASE_OPERATION_FAILED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">103</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CASHBOX_NAME_NOT_UNIQUE">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">200</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CASHBOX_IN_USE">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">201</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CASHBOX_NOT_FOUND">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">202</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ROW_HAS_INVALID_DATA">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">10001</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ROW_BON_ID_NOT_FOUND">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">10100</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ROW_BON_ID_ALREADY_EXISTS">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">10101</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ROW_BON_ID_ALREADY_FINISHED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">10102</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:element name="ErrorCode" nillable="true" type="tns:ErrorCode" />
<xs:complexType name="Kassendaten">
<xs:sequence>
<xs:element minOccurs="0" name="IVNR" type="xs:int" />
<xs:element minOccurs="0" name="KASSE_BASISWAEH_CODE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KASSE_BRAND" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KASSE_MODELL" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KASSE_SERIENNR" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KASSE_SW_BRAND" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KASSE_SW_VERSION" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KEINE_UST_ZUORDNUNG" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_LAND" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_NAME" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_ORT" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_PLZ" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_STRASSE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="LOC_USTID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_NR" type="xs:long" />
<xs:element minOccurs="0" name="license" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_bezeichnung" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_ivnr" type="xs:int" />
</xs:sequence>
</xs:complexType>
<xs:element name="Kassendaten" nillable="true" type="tns:Kassendaten" />
<xs:complexType name="ArrayOfKassendaten">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Kassendaten" nillable="true" type="tns:Kassendaten" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfKassendaten" nillable="true" type="tns:ArrayOfKassendaten" />
<xs:complexType name="BonKopfBegin">
<xs:sequence>
<xs:element minOccurs="0" name="BEDIENER_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BEDIENER_NAME" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_NAME" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_NOTIZ" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_NR" type="xs:int" />
<xs:element minOccurs="0" name="BON_START" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_STORNO" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_TYP" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_LAND" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_NAME" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_ORT" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_PLZ" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_STRASSE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_TYP" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="KUNDE_USTID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="TERMINAL_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="BonKopfBegin" nillable="true" type="tns:BonKopfBegin" />
<xs:complexType name="BonKopfFinish">
<xs:sequence>
<xs:element minOccurs="0" name="BON_ENDE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="PROCESS_TYPE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="UMS_BRUTTO" type="xs:decimal" />
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="payment_currencies" nillable="true" type="q1:ArrayOfstring" />
<xs:element xmlns:q2="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="payment_per_currency" nillable="true" type="q2:ArrayOfdecimal" />
<xs:element xmlns:q3="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="payment_types" nillable="true" type="q3:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
<xs:element name="BonKopfFinish" nillable="true" type="tns:BonKopfFinish" />
<xs:complexType name="BonPosition">
<xs:sequence>
<xs:element minOccurs="0" name="AGENTUR_ID" type="xs:int" />
<xs:element minOccurs="0" name="ARTIKELTEXT" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="ART_NR" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="EINHEIT" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="FAKTOR" type="xs:decimal" />
<xs:element minOccurs="0" name="GTIN" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="GUTSCHEIN_NR" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="GV_NAME" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="GV_TYP" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="INHAUS" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="MENGE" type="xs:decimal" />
<xs:element minOccurs="0" name="POS_TERMINAL_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="POS_ZEILE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="P_STORNO" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="STK_BR" type="xs:decimal" />
<xs:element minOccurs="0" name="WARENGR" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="WARENGR_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="BonPosition" nillable="true" type="tns:BonPosition" />
<xs:complexType name="BonPosition_Ust">
<xs:sequence>
<xs:element minOccurs="0" name="BON_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="POS_BRUTTO" type="xs:decimal" />
<xs:element minOccurs="0" name="POS_NETTO" type="xs:decimal" />
<xs:element minOccurs="0" name="POS_UST" type="xs:decimal" />
<xs:element minOccurs="0" name="POS_ZEILE" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="UST_SCHLUESSEL" type="xs:int" />
</xs:sequence>
</xs:complexType>
<xs:element name="BonPosition_Ust" nillable="true" type="tns:BonPosition_Ust" />
<xs:complexType name="Taxes">
<xs:sequence>
<xs:element minOccurs="0" name="Count" type="xs:int" />
<xs:element xmlns:q4="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="UST_BESCHR" nillable="true" type="q4:ArrayOfstring" />
<xs:element xmlns:q5="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="UST_SATZ" nillable="true" type="q5:ArrayOfdecimal" />
<xs:element xmlns:q6="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="UST_SCHLUESSEL" nillable="true" type="q6:ArrayOfint" />
</xs:sequence>
</xs:complexType>
<xs:element name="Taxes" nillable="true" type="tns:Taxes" />
</xs:schema>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/ItgKsV" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/ItgKsV" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="TSEData">
<xs:sequence>
<xs:element minOccurs="0" name="tse_pd_encoding" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_public_key" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_serial" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_sig_algo" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zeitformat" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zertifikat" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="TSEData" nillable="true" type="tns:TSEData" />
</xs:schema>

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<ReferenceGroup xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ID="30441d17-0b0b-4525-9bbd-a0df5cde1d14" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
<ClientOptions>
<GenerateAsynchronousMethods>false</GenerateAsynchronousMethods>
<GenerateTaskBasedAsynchronousMethod>true</GenerateTaskBasedAsynchronousMethod>
<EnableDataBinding>true</EnableDataBinding>
<ExcludedTypes />
<ImportXmlTypes>false</ImportXmlTypes>
<GenerateInternalTypes>false</GenerateInternalTypes>
<GenerateMessageContracts>false</GenerateMessageContracts>
<NamespaceMappings />
<CollectionMappings />
<GenerateSerializableTypes>true</GenerateSerializableTypes>
<Serializer>Auto</Serializer>
<UseSerializerForFaults>true</UseSerializerForFaults>
<ReferenceAllAssemblies>true</ReferenceAllAssemblies>
<ReferencedAssemblies />
<ReferencedDataContractTypes />
<ServiceContractMappings />
</ClientOptions>
<MetadataSources>
<MetadataSource Address="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" Protocol="mex" SourceId="1" />
</MetadataSources>
<Metadata>
<MetadataFile FileName="service.wsdl" MetadataType="Wsdl" ID="fb2fdabf-8fd9-428e-8927-cc39d35dc9fe" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="service.xsd" MetadataType="Schema" ID="65b3abf7-2115-4d17-a848-51b592f45e56" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="service1.xsd" MetadataType="Schema" ID="8107f1b8-1ea5-475d-acb6-c74a66a1a64d" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="DSFinVK.xsd" MetadataType="Schema" ID="d34bf231-c308-4188-b64c-ce476604a579" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="Arrays.xsd" MetadataType="Schema" ID="31a6eed6-de11-4c7c-b27a-2f4dbd4055d4" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="ItgKsV.xsd" MetadataType="Schema" ID="edb73792-9580-42ab-9725-e3c031ef50d1" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
</Metadata>
<Extensions>
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
<ExtensionFile FileName="configuration.svcinfo" Name="configuration.svcinfo" />
</Extensions>
</ReferenceGroup>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="BeginReceiptResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.BeginReceiptResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ErrorCode" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.ErrorCode, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetAvailableClientsTseResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetAvailableClientsTseResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetAvailableTseListResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetAvailableTseListResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetCashboxesResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetCashboxesResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetDsFinVKValuesForTseResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetDsFinVKValuesForTseResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetDsFinVKValuesResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetDsFinVKValuesResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetLastReceiptQrCodeContentResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetLastReceiptQrCodeContentResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetLastReceiptQrCodeResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetLastReceiptQrCodeResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetLastReceiptValuesResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetLastReceiptValuesResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetNextBON_IDResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetNextBON_IDResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GetTaxIdsResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.GetTaxIdsResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="IsClientPresentTseResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.IsClientPresentTseResponse, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Kassendaten" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.Kassendaten, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="TSEData" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.TSEData, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Taxes" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>VERAG_PROG_ALLGEMEIN.RKSV_DE.Taxes, Service References.RKSV_DE.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configurationSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:schemas-microsoft-com:xml-wcfconfigurationsnapshot">
<behaviors />
<bindings>
<binding digest="System.ServiceModel.Configuration.BasicHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data name=&quot;BasicHttpBinding_IDSFinVKServer&quot; /&gt;" bindingType="basicHttpBinding" name="BasicHttpBinding_IDSFinVKServer" />
</bindings>
<endpoints>
<endpoint normalizedDigest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://localhost:8733/DSFinVKService&quot; binding=&quot;basicHttpBinding&quot; bindingConfiguration=&quot;BasicHttpBinding_IDSFinVKServer&quot; contract=&quot;RKSV_DE.IDSFinVKServer&quot; name=&quot;BasicHttpBinding_IDSFinVKServer&quot; /&gt;" digest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://localhost:8733/DSFinVKService&quot; binding=&quot;basicHttpBinding&quot; bindingConfiguration=&quot;BasicHttpBinding_IDSFinVKServer&quot; contract=&quot;RKSV_DE.IDSFinVKServer&quot; name=&quot;BasicHttpBinding_IDSFinVKServer&quot; /&gt;" contractName="RKSV_DE.IDSFinVKServer" name="BasicHttpBinding_IDSFinVKServer" />
</endpoints>
</configurationSnapshot>

View File

@@ -0,0 +1,201 @@
<?xml version="1.0" encoding="utf-8"?>
<SavedWcfConfigurationInformation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="9.1" CheckSum="bxAh/JL+ADUo3TxNmCZiEgASibrYnomXzs4dd8Ck8x4=">
<bindingConfigurations>
<bindingConfiguration bindingType="basicHttpBinding" name="BasicHttpBinding_IDSFinVKServer">
<properties>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>BasicHttpBinding_IDSFinVKServer</serializedValue>
</property>
<property path="/closeTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/openTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/receiveTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/sendTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/allowCookies" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>StrongWildcard</serializedValue>
</property>
<property path="/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>65536</serializedValue>
</property>
<property path="/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/readerQuotas" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement</serializedValue>
</property>
<property path="/readerQuotas/maxDepth" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxStringContentLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxArrayLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxBytesPerRead" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxNameTableCharCount" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Text.UTF8Encoding</serializedValue>
</property>
<property path="/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Buffered</serializedValue>
</property>
<property path="/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/messageEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.WSMessageEncoding, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Text</serializedValue>
</property>
<property path="/security" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.BasicHttpSecurityElement</serializedValue>
</property>
<property path="/security/mode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpSecurityMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpTransportSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.HttpTransportSecurityElement</serializedValue>
</property>
<property path="/security/transport/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpClientCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport/proxyCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpProxyCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Never</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>TransportSelected</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>(Sammlung)</serializedValue>
</property>
<property path="/security/transport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/security/message" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpMessageSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.BasicHttpMessageSecurityElement</serializedValue>
</property>
<property path="/security/message/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpMessageCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>UserName</serializedValue>
</property>
<property path="/security/message/algorithmSuite" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Security.SecurityAlgorithmSuite, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Default</serializedValue>
</property>
</properties>
</bindingConfiguration>
</bindingConfigurations>
<endpoints>
<endpoint name="BasicHttpBinding_IDSFinVKServer" contract="RKSV_DE.IDSFinVKServer" bindingType="basicHttpBinding" address="http://localhost:8733/DSFinVKService" bindingConfiguration="BasicHttpBinding_IDSFinVKServer">
<properties>
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>http://localhost:8733/DSFinVKService</serializedValue>
</property>
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/binding" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>basicHttpBinding</serializedValue>
</property>
<property path="/bindingConfiguration" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>BasicHttpBinding_IDSFinVKServer</serializedValue>
</property>
<property path="/contract" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>RKSV_DE.IDSFinVKServer</serializedValue>
</property>
<property path="/headers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.AddressHeaderCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.AddressHeaderCollectionElement</serializedValue>
</property>
<property path="/headers/headers" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.Channels.AddressHeaderCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>&lt;Header /&gt;</serializedValue>
</property>
<property path="/identity" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.IdentityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.IdentityElement</serializedValue>
</property>
<property path="/identity/userPrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.UserPrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.UserPrincipalNameElement</serializedValue>
</property>
<property path="/identity/userPrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/servicePrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.ServicePrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.ServicePrincipalNameElement</serializedValue>
</property>
<property path="/identity/servicePrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/dns" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DnsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.DnsElement</serializedValue>
</property>
<property path="/identity/dns/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/rsa" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.RsaElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.RsaElement</serializedValue>
</property>
<property path="/identity/rsa/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificate" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateElement</serializedValue>
</property>
<property path="/identity/certificate/encodedValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateReferenceElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateReferenceElement</serializedValue>
</property>
<property path="/identity/certificateReference/storeName" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreName, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>My</serializedValue>
</property>
<property path="/identity/certificateReference/storeLocation" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreLocation, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>LocalMachine</serializedValue>
</property>
<property path="/identity/certificateReference/x509FindType" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.X509FindType, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>FindBySubjectDistinguishedName</serializedValue>
</property>
<property path="/identity/certificateReference/findValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference/isChainIncluded" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>BasicHttpBinding_IDSFinVKServer</serializedValue>
</property>
<property path="/kind" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/endpointConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
</properties>
</endpoint>
</endpoints>
</SavedWcfConfigurationInformation>

View File

@@ -0,0 +1,554 @@
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" name="DSFinVKServer" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xsd:schema targetNamespace="http://tempuri.org/Imports">
<xsd:import namespace="http://tempuri.org/" />
<xsd:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
<xsd:import namespace="http://schemas.datacontract.org/2004/07/DSFinVK" />
<xsd:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xsd:import namespace="http://schemas.datacontract.org/2004/07/ItgKsV" />
</xsd:schema>
</wsdl:types>
<wsdl:message name="IDSFinVKServer_GetMachineCode_InputMessage">
<wsdl:part name="parameters" element="tns:GetMachineCode" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetMachineCode_OutputMessage">
<wsdl:part name="parameters" element="tns:GetMachineCodeResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_InitializeLibrary_InputMessage">
<wsdl:part name="parameters" element="tns:InitializeLibrary" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_InitializeLibrary_OutputMessage">
<wsdl:part name="parameters" element="tns:InitializeLibraryResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CleanupLibrary_InputMessage">
<wsdl:part name="parameters" element="tns:CleanupLibrary" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CleanupLibrary_OutputMessage">
<wsdl:part name="parameters" element="tns:CleanupLibraryResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateDatabase_InputMessage">
<wsdl:part name="parameters" element="tns:CreateDatabase" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateDatabase_OutputMessage">
<wsdl:part name="parameters" element="tns:CreateDatabaseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateCashbox_InputMessage">
<wsdl:part name="parameters" element="tns:CreateCashbox" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateCashbox_OutputMessage">
<wsdl:part name="parameters" element="tns:CreateCashboxResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetCashboxes_InputMessage">
<wsdl:part name="parameters" element="tns:GetCashboxes" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetCashboxes_OutputMessage">
<wsdl:part name="parameters" element="tns:GetCashboxesResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_BeginReceipt_InputMessage">
<wsdl:part name="parameters" element="tns:BeginReceipt" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_BeginReceipt_OutputMessage">
<wsdl:part name="parameters" element="tns:BeginReceiptResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_UpdateReceipt_InputMessage">
<wsdl:part name="parameters" element="tns:UpdateReceipt" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_UpdateReceipt_OutputMessage">
<wsdl:part name="parameters" element="tns:UpdateReceiptResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_FinishReceipt_InputMessage">
<wsdl:part name="parameters" element="tns:FinishReceipt" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_FinishReceipt_OutputMessage">
<wsdl:part name="parameters" element="tns:FinishReceiptResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_AddPositionToReceipt_InputMessage">
<wsdl:part name="parameters" element="tns:AddPositionToReceipt" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_AddPositionToReceipt_OutputMessage">
<wsdl:part name="parameters" element="tns:AddPositionToReceiptResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportFull_InputMessage">
<wsdl:part name="parameters" element="tns:ExportFull" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportFull_OutputMessage">
<wsdl:part name="parameters" element="tns:ExportFullResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportDateToDate_InputMessage">
<wsdl:part name="parameters" element="tns:ExportDateToDate" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportDateToDate_OutputMessage">
<wsdl:part name="parameters" element="tns:ExportDateToDateResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportNumberToNumber_InputMessage">
<wsdl:part name="parameters" element="tns:ExportNumberToNumber" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportNumberToNumber_OutputMessage">
<wsdl:part name="parameters" element="tns:ExportNumberToNumberResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportCSVFiles_InputMessage">
<wsdl:part name="parameters" element="tns:ExportCSVFiles" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_ExportCSVFiles_OutputMessage">
<wsdl:part name="parameters" element="tns:ExportCSVFilesResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetAvailableTseList_InputMessage">
<wsdl:part name="parameters" element="tns:GetAvailableTseList" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetAvailableTseList_OutputMessage">
<wsdl:part name="parameters" element="tns:GetAvailableTseListResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetDsFinVKValues_InputMessage">
<wsdl:part name="parameters" element="tns:GetDsFinVKValues" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetDsFinVKValues_OutputMessage">
<wsdl:part name="parameters" element="tns:GetDsFinVKValuesResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetDsFinVKValuesForTse_InputMessage">
<wsdl:part name="parameters" element="tns:GetDsFinVKValuesForTse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetDsFinVKValuesForTse_OutputMessage">
<wsdl:part name="parameters" element="tns:GetDsFinVKValuesForTseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_SetupTseForFirstUseTse_InputMessage">
<wsdl:part name="parameters" element="tns:SetupTseForFirstUseTse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_SetupTseForFirstUseTse_OutputMessage">
<wsdl:part name="parameters" element="tns:SetupTseForFirstUseTseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_StringifyTseErrorCode_InputMessage">
<wsdl:part name="parameters" element="tns:StringifyTseErrorCode" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_StringifyTseErrorCode_OutputMessage">
<wsdl:part name="parameters" element="tns:StringifyTseErrorCodeResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetAvailableClientsTse_InputMessage">
<wsdl:part name="parameters" element="tns:GetAvailableClientsTse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetAvailableClientsTse_OutputMessage">
<wsdl:part name="parameters" element="tns:GetAvailableClientsTseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_IsClientPresentTse_InputMessage">
<wsdl:part name="parameters" element="tns:IsClientPresentTse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_IsClientPresentTse_OutputMessage">
<wsdl:part name="parameters" element="tns:IsClientPresentTseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetTaxIds_InputMessage">
<wsdl:part name="parameters" element="tns:GetTaxIds" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetTaxIds_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTaxIdsResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateCashpointClosing_InputMessage">
<wsdl:part name="parameters" element="tns:CreateCashpointClosing" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_CreateCashpointClosing_OutputMessage">
<wsdl:part name="parameters" element="tns:CreateCashpointClosingResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptValues_InputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptValues" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptValues_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptValuesResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptQrCode_InputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptQrCode" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptQrCode_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptQrCodeResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptQrCodeContent_InputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptQrCodeContent" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetLastReceiptQrCodeContent_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLastReceiptQrCodeContentResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_RegisterNewClientTse_InputMessage">
<wsdl:part name="parameters" element="tns:RegisterNewClientTse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_RegisterNewClientTse_OutputMessage">
<wsdl:part name="parameters" element="tns:RegisterNewClientTseResponse" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetNextBON_ID_InputMessage">
<wsdl:part name="parameters" element="tns:GetNextBON_ID" />
</wsdl:message>
<wsdl:message name="IDSFinVKServer_GetNextBON_ID_OutputMessage">
<wsdl:part name="parameters" element="tns:GetNextBON_IDResponse" />
</wsdl:message>
<wsdl:portType name="IDSFinVKServer">
<wsdl:operation name="GetMachineCode">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetMachineCode" message="tns:IDSFinVKServer_GetMachineCode_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetMachineCodeResponse" message="tns:IDSFinVKServer_GetMachineCode_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="InitializeLibrary">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/InitializeLibrary" message="tns:IDSFinVKServer_InitializeLibrary_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/InitializeLibraryResponse" message="tns:IDSFinVKServer_InitializeLibrary_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="CleanupLibrary">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/CleanupLibrary" message="tns:IDSFinVKServer_CleanupLibrary_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/CleanupLibraryResponse" message="tns:IDSFinVKServer_CleanupLibrary_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="CreateDatabase">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateDatabase" message="tns:IDSFinVKServer_CreateDatabase_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateDatabaseResponse" message="tns:IDSFinVKServer_CreateDatabase_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="CreateCashbox">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateCashbox" message="tns:IDSFinVKServer_CreateCashbox_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateCashboxResponse" message="tns:IDSFinVKServer_CreateCashbox_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetCashboxes">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetCashboxes" message="tns:IDSFinVKServer_GetCashboxes_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetCashboxesResponse" message="tns:IDSFinVKServer_GetCashboxes_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="BeginReceipt">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/BeginReceipt" message="tns:IDSFinVKServer_BeginReceipt_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/BeginReceiptResponse" message="tns:IDSFinVKServer_BeginReceipt_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="UpdateReceipt">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/UpdateReceipt" message="tns:IDSFinVKServer_UpdateReceipt_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/UpdateReceiptResponse" message="tns:IDSFinVKServer_UpdateReceipt_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="FinishReceipt">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/FinishReceipt" message="tns:IDSFinVKServer_FinishReceipt_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/FinishReceiptResponse" message="tns:IDSFinVKServer_FinishReceipt_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="AddPositionToReceipt">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/AddPositionToReceipt" message="tns:IDSFinVKServer_AddPositionToReceipt_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/AddPositionToReceiptResponse" message="tns:IDSFinVKServer_AddPositionToReceipt_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="ExportFull">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportFull" message="tns:IDSFinVKServer_ExportFull_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportFullResponse" message="tns:IDSFinVKServer_ExportFull_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="ExportDateToDate">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportDateToDate" message="tns:IDSFinVKServer_ExportDateToDate_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportDateToDateResponse" message="tns:IDSFinVKServer_ExportDateToDate_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="ExportNumberToNumber">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportNumberToNumber" message="tns:IDSFinVKServer_ExportNumberToNumber_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportNumberToNumberResponse" message="tns:IDSFinVKServer_ExportNumberToNumber_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="ExportCSVFiles">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportCSVFiles" message="tns:IDSFinVKServer_ExportCSVFiles_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/ExportCSVFilesResponse" message="tns:IDSFinVKServer_ExportCSVFiles_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetAvailableTseList">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetAvailableTseList" message="tns:IDSFinVKServer_GetAvailableTseList_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetAvailableTseListResponse" message="tns:IDSFinVKServer_GetAvailableTseList_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetDsFinVKValues">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetDsFinVKValues" message="tns:IDSFinVKServer_GetDsFinVKValues_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetDsFinVKValuesResponse" message="tns:IDSFinVKServer_GetDsFinVKValues_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetDsFinVKValuesForTse">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetDsFinVKValuesForTse" message="tns:IDSFinVKServer_GetDsFinVKValuesForTse_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetDsFinVKValuesForTseResponse" message="tns:IDSFinVKServer_GetDsFinVKValuesForTse_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="SetupTseForFirstUseTse">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/SetupTseForFirstUseTse" message="tns:IDSFinVKServer_SetupTseForFirstUseTse_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/SetupTseForFirstUseTseResponse" message="tns:IDSFinVKServer_SetupTseForFirstUseTse_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="StringifyTseErrorCode">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/StringifyTseErrorCode" message="tns:IDSFinVKServer_StringifyTseErrorCode_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/StringifyTseErrorCodeResponse" message="tns:IDSFinVKServer_StringifyTseErrorCode_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetAvailableClientsTse">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetAvailableClientsTse" message="tns:IDSFinVKServer_GetAvailableClientsTse_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetAvailableClientsTseResponse" message="tns:IDSFinVKServer_GetAvailableClientsTse_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="IsClientPresentTse">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/IsClientPresentTse" message="tns:IDSFinVKServer_IsClientPresentTse_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/IsClientPresentTseResponse" message="tns:IDSFinVKServer_IsClientPresentTse_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTaxIds">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetTaxIds" message="tns:IDSFinVKServer_GetTaxIds_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetTaxIdsResponse" message="tns:IDSFinVKServer_GetTaxIds_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="CreateCashpointClosing">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateCashpointClosing" message="tns:IDSFinVKServer_CreateCashpointClosing_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/CreateCashpointClosingResponse" message="tns:IDSFinVKServer_CreateCashpointClosing_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLastReceiptValues">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptValues" message="tns:IDSFinVKServer_GetLastReceiptValues_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptValuesResponse" message="tns:IDSFinVKServer_GetLastReceiptValues_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLastReceiptQrCode">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCode" message="tns:IDSFinVKServer_GetLastReceiptQrCode_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCodeResponse" message="tns:IDSFinVKServer_GetLastReceiptQrCode_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLastReceiptQrCodeContent">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCodeContent" message="tns:IDSFinVKServer_GetLastReceiptQrCodeContent_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCodeContentResponse" message="tns:IDSFinVKServer_GetLastReceiptQrCodeContent_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="RegisterNewClientTse">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/RegisterNewClientTse" message="tns:IDSFinVKServer_RegisterNewClientTse_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/RegisterNewClientTseResponse" message="tns:IDSFinVKServer_RegisterNewClientTse_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetNextBON_ID">
<wsdl:input wsaw:Action="http://tempuri.org/IDSFinVKServer/GetNextBON_ID" message="tns:IDSFinVKServer_GetNextBON_ID_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IDSFinVKServer/GetNextBON_IDResponse" message="tns:IDSFinVKServer_GetNextBON_ID_OutputMessage" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="BasicHttpBinding_IDSFinVKServer" type="tns:IDSFinVKServer">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="GetMachineCode">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetMachineCode" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="InitializeLibrary">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/InitializeLibrary" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="CleanupLibrary">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/CleanupLibrary" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="CreateDatabase">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/CreateDatabase" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="CreateCashbox">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/CreateCashbox" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetCashboxes">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetCashboxes" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="BeginReceipt">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/BeginReceipt" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="UpdateReceipt">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/UpdateReceipt" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="FinishReceipt">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/FinishReceipt" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="AddPositionToReceipt">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/AddPositionToReceipt" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ExportFull">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/ExportFull" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ExportDateToDate">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/ExportDateToDate" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ExportNumberToNumber">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/ExportNumberToNumber" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ExportCSVFiles">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/ExportCSVFiles" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetAvailableTseList">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetAvailableTseList" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetDsFinVKValues">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetDsFinVKValues" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetDsFinVKValuesForTse">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetDsFinVKValuesForTse" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="SetupTseForFirstUseTse">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/SetupTseForFirstUseTse" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="StringifyTseErrorCode">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/StringifyTseErrorCode" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetAvailableClientsTse">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetAvailableClientsTse" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="IsClientPresentTse">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/IsClientPresentTse" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTaxIds">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetTaxIds" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="CreateCashpointClosing">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/CreateCashpointClosing" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLastReceiptValues">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetLastReceiptValues" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLastReceiptQrCode">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCode" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLastReceiptQrCodeContent">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetLastReceiptQrCodeContent" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="RegisterNewClientTse">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/RegisterNewClientTse" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetNextBON_ID">
<soap:operation soapAction="http://tempuri.org/IDSFinVKServer/GetNextBON_ID" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="DSFinVKServer">
<wsdl:port name="BasicHttpBinding_IDSFinVKServer" binding="tns:BasicHttpBinding_IDSFinVKServer">
<soap:address location="http://localhost:8733/DSFinVKService" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

View File

@@ -0,0 +1,496 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import namespace="http://schemas.datacontract.org/2004/07/DSFinVK" />
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xs:import namespace="http://schemas.datacontract.org/2004/07/ItgKsV" />
<xs:element name="GetMachineCode">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="isDemoLicense" type="xs:boolean" />
<xs:element minOccurs="0" name="clientId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetMachineCodeResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetMachineCodeResult" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="InitializeLibrary">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="server" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="database" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="username" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="password" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="InitializeLibraryResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="InitializeLibraryResult" type="q1:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CleanupLibrary">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="CleanupLibraryResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="CleanupLibraryResult" type="q2:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateDatabase">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="server" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="database" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="username" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="password" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateDatabaseResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="CreateDatabaseResult" type="q3:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateCashbox">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="cashbox" nillable="true" type="q4:Kassendaten" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateCashboxResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="CreateCashboxResult" type="q5:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCashboxes">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="cashBoxes" nillable="true" type="q6:ArrayOfKassendaten" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCashboxesResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetCashboxesResult" type="q7:ErrorCode" />
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="cashBoxes" nillable="true" type="q8:ArrayOfKassendaten" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BeginReceipt">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="bonkopfBegin" nillable="true" type="q9:BonKopfBegin" />
<xs:element minOccurs="0" name="transactionNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BeginReceiptResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q10="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="BeginReceiptResult" type="q10:ErrorCode" />
<xs:element minOccurs="0" name="transactionNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UpdateReceipt">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="transactionNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UpdateReceiptResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="UpdateReceiptResult" type="q11:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FinishReceipt">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element xmlns:q12="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="bonkopfFinish" nillable="true" type="q12:BonKopfFinish" />
<xs:element minOccurs="0" name="transactionNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FinishReceiptResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="FinishReceiptResult" type="q13:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AddPositionToReceipt">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="position" nillable="true" type="q14:BonPosition" />
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="position_vat" nillable="true" type="q15:BonPosition_Ust" />
<xs:element minOccurs="0" name="transactionNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AddPositionToReceiptResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="AddPositionToReceiptResult" type="q16:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportFull">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_NR_From" type="xs:int" />
<xs:element minOccurs="0" name="Z_NR_To" type="xs:int" />
<xs:element minOccurs="0" name="path" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="zipFileName" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportFullResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="ExportFullResult" type="q17:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportDateToDate">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="dtFrom" type="xs:dateTime" />
<xs:element minOccurs="0" name="dtTo" type="xs:dateTime" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportDateToDateResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="ExportDateToDateResult" type="q18:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportNumberToNumber">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="cashboxName" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="numberFrom" type="xs:int" />
<xs:element minOccurs="0" name="numberTo" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportNumberToNumberResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="ExportNumberToNumberResult" type="q19:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportCSVFiles">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Z_NR_From" type="xs:int" />
<xs:element minOccurs="0" name="Z_NR_To" type="xs:int" />
<xs:element minOccurs="0" name="path" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="zipFileName" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="exportCashpointclosing" type="xs:boolean" />
<xs:element minOccurs="0" name="exportLocation" type="xs:boolean" />
<xs:element minOccurs="0" name="exportCashregister" type="xs:boolean" />
<xs:element minOccurs="0" name="exportSlaves" type="xs:boolean" />
<xs:element minOccurs="0" name="exportPa" type="xs:boolean" />
<xs:element minOccurs="0" name="exportVat" type="xs:boolean" />
<xs:element minOccurs="0" name="exportTse" type="xs:boolean" />
<xs:element minOccurs="0" name="exportBusinesscases" type="xs:boolean" />
<xs:element minOccurs="0" name="exportPayment" type="xs:boolean" />
<xs:element minOccurs="0" name="exportCashPerCurrency" type="xs:boolean" />
<xs:element minOccurs="0" name="exportTransactions" type="xs:boolean" />
<xs:element minOccurs="0" name="exportAllocationGroups" type="xs:boolean" />
<xs:element minOccurs="0" name="exportTransactionsVat" type="xs:boolean" />
<xs:element minOccurs="0" name="exportDatapayment" type="xs:boolean" />
<xs:element minOccurs="0" name="exportLines" type="xs:boolean" />
<xs:element minOccurs="0" name="exportLinesVat" type="xs:boolean" />
<xs:element minOccurs="0" name="exportItemamounts" type="xs:boolean" />
<xs:element minOccurs="0" name="exportSubitems" type="xs:boolean" />
<xs:element minOccurs="0" name="exportReferences" type="xs:boolean" />
<xs:element minOccurs="0" name="exportTransactionsTse" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExportCSVFilesResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q20="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="ExportCSVFilesResult" type="q20:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetAvailableTseList">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="startDriveLetter" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="endDriveLetter" nillable="true" type="xs:string" />
<xs:element xmlns:q21="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="tseDriveLetterList" nillable="true" type="q21:ArrayOfstring" />
<xs:element xmlns:q22="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="tseSerialList" nillable="true" type="q22:ArrayOfstring" />
<xs:element minOccurs="0" name="count" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetAvailableTseListResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetAvailableTseListResult" type="xs:int" />
<xs:element xmlns:q23="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="tseDriveLetterList" nillable="true" type="q23:ArrayOfstring" />
<xs:element xmlns:q24="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="tseSerialList" nillable="true" type="q24:ArrayOfstring" />
<xs:element minOccurs="0" name="count" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetDsFinVKValues">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="tse_serial" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_sig_algo" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zeitformat" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_pd_encoding" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_public_key" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zertifikat" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetDsFinVKValuesResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetDsFinVKValuesResult" type="xs:int" />
<xs:element minOccurs="0" name="tse_serial" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_sig_algo" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zeitformat" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_pd_encoding" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_public_key" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="tse_zertifikat" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetDsFinVKValuesForTse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="driveLetter" nillable="true" type="xs:string" />
<xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/ItgKsV" minOccurs="0" name="tseData" nillable="true" type="q25:TSEData" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetDsFinVKValuesForTseResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetDsFinVKValuesForTseResult" type="xs:int" />
<xs:element xmlns:q26="http://schemas.datacontract.org/2004/07/ItgKsV" minOccurs="0" name="tseData" nillable="true" type="q26:TSEData" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SetupTseForFirstUseTse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="driveLetter" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="admin_puk" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="admin_pin" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="timeadmin_pin" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="clientId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SetupTseForFirstUseTseResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="SetupTseForFirstUseTseResult" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="StringifyTseErrorCode">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="tseErrorCode" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="StringifyTseErrorCodeResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="StringifyTseErrorCodeResult" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetAvailableClientsTse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="driveLetter" nillable="true" type="xs:string" />
<xs:element xmlns:q27="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="clientIds" nillable="true" type="q27:ArrayOfstring" />
<xs:element minOccurs="0" name="count" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetAvailableClientsTseResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="GetAvailableClientsTseResult" type="xs:int" />
<xs:element xmlns:q28="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="clientIds" nillable="true" type="q28:ArrayOfstring" />
<xs:element minOccurs="0" name="count" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="IsClientPresentTse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="driveLetter" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="clientId" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="result" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="IsClientPresentTseResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q29="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="IsClientPresentTseResult" type="q29:ErrorCode" />
<xs:element minOccurs="0" name="result" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTaxIds">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="taxes" nillable="true" type="q30:Taxes" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTaxIdsResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetTaxIdsResult" type="q31:ErrorCode" />
<xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="taxes" nillable="true" type="q32:Taxes" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateCashpointClosing">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CreateCashpointClosingResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="CreateCashpointClosingResult" type="q33:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptValues">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="transactionNumber" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="serialNumber" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="signature" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="transactionStart" type="xs:dateTime" />
<xs:element minOccurs="0" name="transactionFinish" type="xs:dateTime" />
<xs:element minOccurs="0" name="sigCounter" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptValuesResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q34="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetLastReceiptValuesResult" type="q34:ErrorCode" />
<xs:element minOccurs="0" name="transactionNumber" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="serialNumber" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="signature" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="transactionStart" type="xs:dateTime" />
<xs:element minOccurs="0" name="transactionFinish" type="xs:dateTime" />
<xs:element minOccurs="0" name="sigCounter" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptQrCode">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="qrCode" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="mimeType" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptQrCodeResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q35="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetLastReceiptQrCodeResult" type="q35:ErrorCode" />
<xs:element minOccurs="0" name="qrCode" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptQrCodeContent">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="qrCodeContent" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLastReceiptQrCodeContentResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q36="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetLastReceiptQrCodeContentResult" type="q36:ErrorCode" />
<xs:element minOccurs="0" name="qrCodeContent" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RegisterNewClientTse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="driveLetter" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="newClientId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RegisterNewClientTseResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="RegisterNewClientTseResult" type="q37:ErrorCode" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetNextBON_ID">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="BON_ID" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetNextBON_IDResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/DSFinVK" minOccurs="0" name="GetNextBON_IDResult" type="q38:ErrorCode" />
<xs:element minOccurs="0" name="BON_ID" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="anyType" nillable="true" type="xs:anyType" />
<xs:element name="anyURI" nillable="true" type="xs:anyURI" />
<xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
<xs:element name="boolean" nillable="true" type="xs:boolean" />
<xs:element name="byte" nillable="true" type="xs:byte" />
<xs:element name="dateTime" nillable="true" type="xs:dateTime" />
<xs:element name="decimal" nillable="true" type="xs:decimal" />
<xs:element name="double" nillable="true" type="xs:double" />
<xs:element name="float" nillable="true" type="xs:float" />
<xs:element name="int" nillable="true" type="xs:int" />
<xs:element name="long" nillable="true" type="xs:long" />
<xs:element name="QName" nillable="true" type="xs:QName" />
<xs:element name="short" nillable="true" type="xs:short" />
<xs:element name="string" nillable="true" type="xs:string" />
<xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
<xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
<xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
<xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
<xs:element name="char" nillable="true" type="tns:char" />
<xs:simpleType name="char">
<xs:restriction base="xs:int" />
</xs:simpleType>
<xs:element name="duration" nillable="true" type="tns:duration" />
<xs:simpleType name="duration">
<xs:restriction base="xs:duration">
<xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
<xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
<xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
</xs:restriction>
</xs:simpleType>
<xs:element name="guid" nillable="true" type="tns:guid" />
<xs:simpleType name="guid">
<xs:restriction base="xs:string">
<xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
</xs:restriction>
</xs:simpleType>
<xs:attribute name="FactoryType" type="xs:QName" />
<xs:attribute name="Id" type="xs:ID" />
<xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>