This commit is contained in:
2022-11-30 09:27:10 +01:00
39 changed files with 5592 additions and 85 deletions

View File

@@ -90,12 +90,16 @@
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IDSFinVKServer1" />
<binding name="BasicHttpBinding_IDSFinVKServer" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8733/DSFinVKService" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IDSFinVKServer1" contract="DSFinVKService.IDSFinVKServer"
name="BasicHttpBinding_IDSFinVKServer1" />
<endpoint address="http://localhost:8733/DSFinVKService" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IDSFinVKServer" contract="RKSV_DE_DSFinVKService_2022.IDSFinVKServer"
name="BasicHttpBinding_IDSFinVKServer" />
</client>
</system.serviceModel>
</configuration>

View File

@@ -341,7 +341,7 @@ Public Class cSMS
Dim sbRequestBody As New Chilkat.StringBuilder
json.EmitSb(sbRequestBody)
MsgBox(sbRequestBody.ToString)
'MsgBox(sbRequestBody.ToString)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST", "/richcontent/v3/send", sbRequestBody, sbResponseBody)
If (success <> True) Then

View File

@@ -0,0 +1,213 @@
Imports System.Data.SqlClient
Imports System.Drawing
Imports System.Net.NetworkInformation
Imports System.Reflection
Imports System.Windows.Forms
Public Class cTranslateAuto_LIST
Public list As New List(Of cTranslateAuto)
Dim trs_progId
Sub New()
LOAD()
End Sub
Public Sub LOAD()
Try
Using conn As SqlConnection = SQL.GetNewOpenConnectionFMZOLL()
Using cmd As New SqlCommand("SELECT * FROM tblTranslateAuto WHERE [trs_active]=1 ", conn)
'cmd.Parameters.AddWithValue("@trs_progId", trs_progId)
Dim dr = cmd.ExecuteReader()
While dr.Read
Dim T As New cTranslateAuto
T.trs_id = dr("trs_id")
T.trs_textDE = dr("trs_textDE")
T.trs_sprache = dr("trs_sprache")
T.trs_text = dr("trs_text")
T.trs_active = dr("trs_active")
list.Add(T)
End While
dr.Close()
End Using
End Using
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
End Sub
Shared Sub DoToAllControls(ByVal m_Control As Control, LAN As String, Optional LAN_SRC As String = "DE")
For Each ctrl As Control In m_Control.Controls
If ctrl.Controls.Count > 0 Then
DoToAllControls(ctrl, LAN, LAN_SRC)
End If
'If ctrl.GetType().Equals(GetType(ToolStrip)) Then
' For Each item As ToolStripItem In DirectCast(ctrl, ToolStrip).Items
' MsgBox(item.Name)
' Next
'End If
'MsgBox(ctrl.Name)
If (TypeOf ctrl Is System.Windows.Forms.Label) Then
DirectCast(ctrl, System.Windows.Forms.Label).Text = VERAG_PROG_ALLGEMEIN.cTranslateAuto._Transle(ctrl.Text, LAN, LAN_SRC)
End If
If (TypeOf ctrl Is System.Windows.Forms.Button) Or (TypeOf ctrl Is VERAG_PROG_ALLGEMEIN.FlatButton) Then
DirectCast(ctrl, System.Windows.Forms.Button).Text = VERAG_PROG_ALLGEMEIN.cTranslateAuto._Transle(ctrl.Text, LAN, LAN_SRC)
End If
If (TypeOf ctrl Is System.Windows.Forms.TabPage) Then
DirectCast(ctrl, System.Windows.Forms.TabPage).Text = VERAG_PROG_ALLGEMEIN.cTranslateAuto._Transle(ctrl.Text, LAN, LAN_SRC)
End If
If (TypeOf ctrl Is System.Windows.Forms.RadioButton) Or (TypeOf ctrl Is VERAG_PROG_ALLGEMEIN.MyRadioButton) Then
DirectCast(ctrl, System.Windows.Forms.RadioButton).Text = VERAG_PROG_ALLGEMEIN.cTranslateAuto._Transle(ctrl.Text, LAN, LAN_SRC)
End If
If (TypeOf ctrl Is System.Windows.Forms.GroupBox) Then
DirectCast(ctrl, System.Windows.Forms.GroupBox).Text = VERAG_PROG_ALLGEMEIN.cTranslateAuto._Transle(ctrl.Text, LAN, LAN_SRC)
End If
If (TypeOf ctrl Is System.Windows.Forms.ComboBox) Or (TypeOf ctrl Is VERAG_PROG_ALLGEMEIN.MyComboBox) Then
'DirectCast(obj, System.Windows.Forms.Label).Text = TXT.trs_text
End If
Next
End Sub
End Class
Public Class cTranslateAuto
Property trs_id As Integer
Property trs_sprache As String
Property trs_textDE As String
Property trs_text As String
Property trs_active As Boolean = True
Public hasEntry = False
Dim SQL As New SQL
Sub New()
End Sub
Sub New(trs_id)
Me.trs_id = trs_id
LOAD()
End Sub
Function getParameterList() As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable)
Dim list As New List(Of VERAG_PROG_ALLGEMEIN.SQLVariable)
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("trs_id", trs_id,, True))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("trs_textDE", trs_textDE))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("trs_sprache", trs_sprache))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("trs_text", trs_text))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("trs_active", trs_active))
Return list
End Function
Public Function SAVE() As Boolean
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim sqlstr = " BEGIN TRAN IF EXISTS(SELECT * FROM tblTranslateAuto WHERE trs_id=@trs_id) " &
" BEGIN " & getUpdateCmd() & " END " &
" Else " &
" BEGIN " & getInsertCmd() & " END " &
" commit tran "
Return SQL.doSQLVarList(sqlstr, "FMZOLL", , list)
End Function
Public Sub LOAD()
Try
hasEntry = False
Using conn As SqlConnection = SQL.GetNewOpenConnectionFMZOLL()
Using cmd As New SqlCommand("SELECT * FROM tblTranslateAuto WHERE trs_id=@trs_id AND [trs_active]=1 ", conn)
cmd.Parameters.AddWithValue("@trs_id", trs_id)
Dim dr = cmd.ExecuteReader()
If dr.Read Then
For Each li In getParameterList()
Dim propInfo As PropertyInfo = Me.GetType.GetProperty(li.Scalarvariable)
If dr.Item(li.Text) Is DBNull.Value Then
propInfo.SetValue(Me, Nothing)
Else
propInfo.SetValue(Me, dr.Item(li.Text))
End If
Next
hasEntry = True
End If
dr.Close()
End Using
End Using
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
End Sub
Public Function getUpdateCmd() As String
Try
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim str As String = ""
For Each i In list
If Not i.isPrimaryParam Then
str &= "[" & i.Text & "] = @" & i.Scalarvariable & "," '.Replace("-", "").Replace(" ", "") & ","
End If
Next
str = str.Substring(0, str.Length - 1) 'wg. ','
Return (" UPDATE [tblTranslateAuto] SET " & str & " WHERE trs_id=@trs_id ")
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
Return ""
End Function
Public Function getInsertCmd() As String
Try
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim str As String = ""
Dim values As String = ""
For Each i In list
If Not i.isPrimaryParam Then
str &= "[" & i.Text & "],"
values &= "@" & i.Scalarvariable & "," '.Replace("-", "").Replace(" ", "") & ","
End If
Next
str = str.Substring(0, str.Length - 1) 'wg. ','
values = values.Substring(0, values.Length - 1) 'wg. ','
Return (" INSERT INTO tblTranslateAuto (" & str & ") VALUES(" & values & ") ")
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
Return ""
End Function
Shared Function _Transle(Text, LAN, Optional SRC_LAN = "") As String
Dim TRS_RSLT = VERAG_PROG_ALLGEMEIN.cAllgemein.TRANSLATE_AUTO.list.Find(Function(x) (x.trs_textDE = Text Or x.trs_text = Text) And x.trs_sprache = LAN)
If TRS_RSLT IsNot Nothing Then
Return TRS_RSLT.trs_text
Else
Dim TextResult = ""
If cDeeplAPI.deepl_Translate(Text, TextResult, LAN, SRC_LAN) Then
Dim TRS As New cTranslateAuto
TRS.trs_text = TextResult
TRS.trs_sprache = LAN
TRS.trs_textDE = Text
TRS.SAVE()
'MsgBox(Text & " --- " & TextResult)
VERAG_PROG_ALLGEMEIN.cAllgemein.TRANSLATE_AUTO.list.Add(TRS)
Return TextResult
End If
End If
Return Text
End Function
End Class

View File

@@ -67,7 +67,7 @@ Partial Class frmMessenger
Me.Panel3 = New System.Windows.Forms.Panel()
Me.btnTeilnehmer = New System.Windows.Forms.Button()
Me.Panel4 = New System.Windows.Forms.Panel()
Me.lblChatName = New System.Windows.Forms.Label()
Me.lblChatName = New System.Windows.Forms.TextBox()
Me.lblOnlineOffline = New System.Windows.Forms.Label()
Me.pnl = New System.Windows.Forms.Panel()
Me.Button4 = New System.Windows.Forms.Button()
@@ -612,11 +612,11 @@ Partial Class frmMessenger
'
'lblChatName
'
Me.lblChatName.AutoSize = True
Me.lblChatName.BorderStyle = System.Windows.Forms.BorderStyle.None
Me.lblChatName.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblChatName.Location = New System.Drawing.Point(9, 11)
Me.lblChatName.Name = "lblChatName"
Me.lblChatName.Size = New System.Drawing.Size(15, 20)
Me.lblChatName.Size = New System.Drawing.Size(450, 19)
Me.lblChatName.TabIndex = 4
Me.lblChatName.Text = "-"
'
@@ -1027,7 +1027,7 @@ Partial Class frmMessenger
Friend WithEvents pic As PictureBox
Friend WithEvents lblOnlineOffline As Label
Friend WithEvents Panel3 As Panel
Friend WithEvents lblChatName As Label
Friend WithEvents lblChatName As TextBox
Friend WithEvents Panel4 As Panel
Friend WithEvents btnTeilnehmer As Button
Friend WithEvents PictureBox1 As PictureBox

View File

@@ -0,0 +1,108 @@
Imports System.Web
Imports System.Web.Routing
Imports iTextSharp.text.xml.simpleparser
Public Class cDeeplAPI
'PROD
Shared API_STRING As String = "https://api-free.deepl.com"
Shared AUTH_KEY As String = "57bad342-00e2-6732-da08-b6733fb09a91:fx"
Shared Function deepl_Translate(textTotranslate As String, ByRef textResult As String, targetLAN As String, Optional sourceLAN As String = "DE") As Boolean
textResult = textTotranslate
Dim rest As New Chilkat.Rest
VERAG_PROG_ALLGEMEIN.cChilkat_Helper.UnlockCilkat()
' Connect to the REST server.
Dim bTls As Boolean = True
Dim port As Integer = 443
Dim bAutoReconnect As Boolean = True
Dim success As Boolean = rest.Connect(API_STRING, port, bTls, bAutoReconnect)
If (success <> True) Then
Debug.WriteLine("ConnectFailReason: " & rest.ConnectFailReason)
Debug.WriteLine(rest.LastErrorText)
Return False
End If
'---------------------------------------------------
'See the Online Tool for Generating JSON Creation Code
Dim json As New Chilkat.JsonObject
' If sourceLAN <> "" Then json.UpdateNumber("source_lang", sourceLAN)
json.UpdateString("target_lang", targetLAN)
json.UpdateString("text", textTotranslate)
'json.UpdateString("preserve_formatting", 1)
json.UpdateString("auth_key", AUTH_KEY)
rest.AddHeader("Accept", "application/json")
rest.AddHeader("Content-Type", "application/x-www-form-urlencoded")
' client.DefaultRequestHeaders.Accept.Add(New System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
'client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "application/x-www-form-urlencoded");
'rest.AddHeader("Authorization", AUTH_KEY)
' rest.AddHeader("Accept", "application/vnd.hmrc.1.0+json")
'rest.AddHeader("Accept", "*/*")
'rest.AddHeader("User-Agent", "PostmanRuntime/7.29.0")
'rest.AddHeader("Connection", "keep-alive")
'rest.AddHeader("Accept-Encoding", "gzip, deflate, br")
'rest.AddHeader("Cache-Control", "no-cache")
'rest.AddHeader("User-Agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0")
' rest.AddHeader("Content-Type", "application/x-www-form-urlencoded")
'rest.AddHeader("Accept", "*/*")
Dim sbRequestBody As New Chilkat.StringBuilder
'json.EmitSb(sbRequestBody)
'MsgBox(sbRequestBody.ToString)
'---------------------------------------------------
'Dim json As New Chilkat.JsonObject
'Dim successJsonLoad As Boolean = json.Load("
' {""source_lang"":DE,""target_lang"":""DE"",""text"":""Hello World"",""preserve_formatting"":""1"",""auth_key"":""57bad342-00e2-6732-da08-b6733fb09a91:fx""} ")
'If (successJsonLoad <> True) Then
' MsgBox(json.LastErrorText)
' Return False
'End If
'Dim sbRequestBody As New Chilkat.StringBuilder
'json.EmitSb(sbRequestBody)
' MsgBox("/v2/translate?auth_key=" & AUTH_KEY & "&target_lang=" & targetLAN & "&text=" & HttpUtility.UrlEncode(textTotranslate) & "")
Dim sbResponseBody As New Chilkat.StringBuilder
Dim srch = If(sourceLAN <> "", "&source_lang=" & sourceLAN, "")
success = rest.FullRequestSb("POST", "/v2/translate?auth_key=" & AUTH_KEY & "&target_lang=" & targetLAN & "&text=" & HttpUtility.UrlEncode(textTotranslate) & srch, sbRequestBody, sbResponseBody)
' success = rest.FullRequestSb("POST", "/v2/translate", sbRequestBody, sbResponseBody)
' MsgBox(success)
If (rest.LastMethodSuccess <> True) Then
Console.WriteLine(rest.LastErrorText)
Return False
End If
If success Then
Dim respStatusCode As Integer = rest.ResponseStatusCode
'MsgBox(respStatusCode)
If (respStatusCode = 200) Then
Try
Dim jsonResp = New Chilkat.JsonObject()
jsonResp.LoadSb(sbResponseBody)
If jsonResp.SizeOfArray("translations") > 0 Then
textResult = jsonResp.StringOf("translations[0].text")
' MsgBox("::::::::: " & jsonResp.StringOf("translations[0].text"))
Return True
End If
Catch ex As Exception
MsgBox(ex.Message & ex.StackTrace)
End Try
End If
End If
Return False
End Function
End Class

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,225 @@
<?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="CASHBOX_NOT_MANAGED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">203</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CASHBOX_ALREADY_MANAGED">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">204</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="REF_BON_ID" 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="c6da70ce-18e5-4fb7-a327-591da4c0a8a6" 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="a5c41169-7e75-41b7-b768-3aeb963e9a68" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="service.xsd" MetadataType="Schema" ID="0b9d93bc-cad0-4e31-b75a-d3570ebbfdf1" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="service1.xsd" MetadataType="Schema" ID="6acc0902-4c16-4b0f-bd17-99cdd5da9f94" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="DSFinVK.xsd" MetadataType="Schema" ID="3393d3ea-1288-463d-a671-3835f8697692" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="Arrays.xsd" MetadataType="Schema" ID="53de0da1-31d9-4a67-ac97-61fd2d1e476b" SourceId="1" SourceUrl="http://ymgk028055.verag.ost.dmn:8733/DSFinVKService/mex" />
<MetadataFile FileName="ItgKsV.xsd" MetadataType="Schema" ID="0800f30d-c1b1-4e91-b0a1-7b78d581d256" 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_DSFinVKService_2022.BeginReceiptResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.ErrorCode, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetAvailableClientsTseResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetAvailableTseListResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetCashboxesResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetDsFinVKValuesForTseResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetDsFinVKValuesResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetLastReceiptQrCodeContentResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetLastReceiptQrCodeResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetLastReceiptValuesResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetNextBON_IDResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.GetTaxIdsResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.IsClientPresentTseResponse, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.Kassendaten, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.TSEData, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.Taxes, Service References.RKSV_DE_DSFinVKService_2022.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_DSFinVKService_2022.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_DSFinVKService_2022.IDSFinVKServer&quot; name=&quot;BasicHttpBinding_IDSFinVKServer&quot; /&gt;" contractName="RKSV_DE_DSFinVKService_2022.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="Eqls2W5fkgWZW3jCAsqHzpxX2GdVF3zPyak1aaVrR3Q=">
<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_DSFinVKService_2022.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_DSFinVKService_2022.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,507 @@
<?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:element minOccurs="0" name="Z_KASSE_ID" nillable="true" type="xs:string" />
</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="Z_KASSE_ID" 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_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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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="Z_KASSE_ID" nillable="true" type="xs:string" />
<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>

View File

@@ -363,6 +363,7 @@
<Compile Include="Classes\cQSTeam.vb" />
<Compile Include="Classes\cRechnungsausgang.vb" />
<Compile Include="Classes\cRechnungsnummern.vb" />
<Compile Include="Classes\cTranslateAuto.vb" />
<Compile Include="Classes\cUserActivity.vb" />
<Compile Include="Classes\Essensbestellung.vb" />
<Compile Include="Classes\old_cRKSV_DE.vb" />
@@ -564,6 +565,7 @@
<Compile Include="RKSV_DE\cServerClient_RKSV_DE.vb" />
<Compile Include="Schnittstellen\ATEZ\cATEZ_NCTS.vb" />
<Compile Include="Schnittstellen\cBMD_Interface.vb" />
<Compile Include="Schnittstellen\cDeeplAPI.vb" />
<Compile Include="Schnittstellen\cDVO_Interface.vb" />
<Compile Include="Schnittstellen\cJsonPost.vb" />
<Compile Include="Schnittstellen\cLDV_Interface.vb" />
@@ -603,6 +605,11 @@
<DesignTime>True</DesignTime>
<DependentUpon>Reference.svcmap</DependentUpon>
</Compile>
<Compile Include="Service References\RKSV_DE_DSFinVKService_2022\Reference.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Reference.svcmap</DependentUpon>
</Compile>
<Compile Include="Web References\at.gv.bmf.finanzonline.session\Reference.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
@@ -862,6 +869,70 @@
<None Include="Service References\DSFinVKService\VERAG_PROG_ALLGEMEIN.DSFinVKService.TSEData.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\Arrays.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\DSFinVK.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\ItgKsV.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\service.wsdl" />
<None Include="Service References\RKSV_DE_DSFinVKService_2022\service.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\service1.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.BeginReceiptResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.ErrorCode.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetAvailableClientsTseResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetAvailableTseListResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetCashboxesResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetDsFinVKValuesForTseResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetDsFinVKValuesResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetLastReceiptQrCodeContentResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetLastReceiptQrCodeResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetLastReceiptValuesResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetNextBON_IDResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.GetTaxIdsResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.IsClientPresentTseResponse.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.Kassendaten.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.Taxes.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\VERAG_PROG_ALLGEMEIN.RKSV_DE_DSFinVKService_2022.TSEData.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Web References\at.gv.bmf.finanzonline.session\Reference.map">
<Generator>MSDiscoCodeGenerator</Generator>
<LastGenOutput>Reference.vb</LastGenOutput>
@@ -1178,6 +1249,7 @@
</ItemGroup>
<ItemGroup>
<WCFMetadataStorage Include="Service References\DSFinVKService\" />
<WCFMetadataStorage Include="Service References\RKSV_DE_DSFinVKService_2022\" />
</ItemGroup>
<ItemGroup>
<None Include="Service References\DSFinVKService\configuration91.svcinfo" />
@@ -1197,6 +1269,18 @@
<ItemGroup>
<None Include="Resources\ZwAbEinfuegen_white.png" />
</ItemGroup>
<ItemGroup>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\configuration91.svcinfo" />
</ItemGroup>
<ItemGroup>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\configuration.svcinfo" />
</ItemGroup>
<ItemGroup>
<None Include="Service References\RKSV_DE_DSFinVKService_2022\Reference.svcmap">
<Generator>WCF Proxy Generator</Generator>
<LastGenOutput>Reference.vb</LastGenOutput>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<ProjectExtensions />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

View File

@@ -708,6 +708,7 @@
<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="REF_BON_ID" 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>

View File

@@ -24,7 +24,7 @@ Imports System.Xml.Serialization
Namespace RKSV_DE_DSFinVKService
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
System.Web.Services.WebServiceBindingAttribute(Name:="BasicHttpBinding_IDSFinVKServer", [Namespace]:="http://tempuri.org/")> _
@@ -1187,7 +1187,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://schemas.datacontract.org/2004/07/DSFinVK")> _
Public Enum ErrorCode
@@ -1269,7 +1269,7 @@ Namespace RKSV_DE_DSFinVKService
End Enum
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -1561,7 +1561,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -1637,7 +1637,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -1724,7 +1724,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -1859,7 +1859,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -2163,7 +2163,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -2291,7 +2291,7 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
@@ -2334,6 +2334,8 @@ Namespace RKSV_DE_DSFinVKService
Private kUNDE_USTIDField As String
Private rEF_BON_IDField As String
Private tERMINAL_IDField As String
Private z_KASSE_IDField As String
@@ -2535,6 +2537,17 @@ Namespace RKSV_DE_DSFinVKService
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute(IsNullable:=true)> _
Public Property REF_BON_ID() As String
Get
Return Me.rEF_BON_IDField
End Get
Set
Me.rEF_BON_IDField = value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute(IsNullable:=true)> _
Public Property TERMINAL_ID() As String
@@ -2559,11 +2572,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetMachineCodeCompletedEventHandler(ByVal sender As Object, ByVal e As GetMachineCodeCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetMachineCodeCompletedEventArgs
@@ -2586,11 +2599,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub InitializeLibraryCompletedEventHandler(ByVal sender As Object, ByVal e As InitializeLibraryCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class InitializeLibraryCompletedEventArgs
@@ -2621,11 +2634,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub CleanupLibraryCompletedEventHandler(ByVal sender As Object, ByVal e As CleanupLibraryCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class CleanupLibraryCompletedEventArgs
@@ -2656,11 +2669,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub CreateDatabaseCompletedEventHandler(ByVal sender As Object, ByVal e As CreateDatabaseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class CreateDatabaseCompletedEventArgs
@@ -2691,11 +2704,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub CreateCashboxCompletedEventHandler(ByVal sender As Object, ByVal e As CreateCashboxCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class CreateCashboxCompletedEventArgs
@@ -2726,11 +2739,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetCashboxesCompletedEventHandler(ByVal sender As Object, ByVal e As GetCashboxesCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetCashboxesCompletedEventArgs
@@ -2769,11 +2782,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub BeginReceiptCompletedEventHandler(ByVal sender As Object, ByVal e As BeginReceiptCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class BeginReceiptCompletedEventArgs
@@ -2820,11 +2833,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub UpdateReceiptCompletedEventHandler(ByVal sender As Object, ByVal e As UpdateReceiptCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class UpdateReceiptCompletedEventArgs
@@ -2855,11 +2868,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub FinishReceiptCompletedEventHandler(ByVal sender As Object, ByVal e As FinishReceiptCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class FinishReceiptCompletedEventArgs
@@ -2890,11 +2903,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub AddPositionToReceiptCompletedEventHandler(ByVal sender As Object, ByVal e As AddPositionToReceiptCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class AddPositionToReceiptCompletedEventArgs
@@ -2925,11 +2938,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub ExportFullCompletedEventHandler(ByVal sender As Object, ByVal e As ExportFullCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class ExportFullCompletedEventArgs
@@ -2960,11 +2973,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub ExportDateToDateCompletedEventHandler(ByVal sender As Object, ByVal e As ExportDateToDateCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class ExportDateToDateCompletedEventArgs
@@ -2995,11 +3008,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub ExportNumberToNumberCompletedEventHandler(ByVal sender As Object, ByVal e As ExportNumberToNumberCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class ExportNumberToNumberCompletedEventArgs
@@ -3030,11 +3043,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub ExportCSVFilesCompletedEventHandler(ByVal sender As Object, ByVal e As ExportCSVFilesCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class ExportCSVFilesCompletedEventArgs
@@ -3065,11 +3078,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetAvailableTseListCompletedEventHandler(ByVal sender As Object, ByVal e As GetAvailableTseListCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetAvailableTseListCompletedEventArgs
@@ -3132,11 +3145,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetDsFinVKValuesCompletedEventHandler(ByVal sender As Object, ByVal e As GetDsFinVKValuesCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetDsFinVKValuesCompletedEventArgs
@@ -3215,11 +3228,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetDsFinVKValuesForTseCompletedEventHandler(ByVal sender As Object, ByVal e As GetDsFinVKValuesForTseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetDsFinVKValuesForTseCompletedEventArgs
@@ -3258,11 +3271,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub SetupTseForFirstUseTseCompletedEventHandler(ByVal sender As Object, ByVal e As SetupTseForFirstUseTseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class SetupTseForFirstUseTseCompletedEventArgs
@@ -3293,11 +3306,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub StringifyTseErrorCodeCompletedEventHandler(ByVal sender As Object, ByVal e As StringifyTseErrorCodeCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class StringifyTseErrorCodeCompletedEventArgs
@@ -3320,11 +3333,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetAvailableClientsTseCompletedEventHandler(ByVal sender As Object, ByVal e As GetAvailableClientsTseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetAvailableClientsTseCompletedEventArgs
@@ -3379,11 +3392,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub IsClientPresentTseCompletedEventHandler(ByVal sender As Object, ByVal e As IsClientPresentTseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class IsClientPresentTseCompletedEventArgs
@@ -3430,11 +3443,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetTaxIdsCompletedEventHandler(ByVal sender As Object, ByVal e As GetTaxIdsCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetTaxIdsCompletedEventArgs
@@ -3473,11 +3486,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub CreateCashpointClosingCompletedEventHandler(ByVal sender As Object, ByVal e As CreateCashpointClosingCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class CreateCashpointClosingCompletedEventArgs
@@ -3508,11 +3521,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetLastReceiptValuesCompletedEventHandler(ByVal sender As Object, ByVal e As GetLastReceiptValuesCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetLastReceiptValuesCompletedEventArgs
@@ -3607,11 +3620,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetLastReceiptQrCodeCompletedEventHandler(ByVal sender As Object, ByVal e As GetLastReceiptQrCodeCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetLastReceiptQrCodeCompletedEventArgs
@@ -3650,11 +3663,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetLastReceiptQrCodeContentCompletedEventHandler(ByVal sender As Object, ByVal e As GetLastReceiptQrCodeContentCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetLastReceiptQrCodeContentCompletedEventArgs
@@ -3693,11 +3706,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub RegisterNewClientTseCompletedEventHandler(ByVal sender As Object, ByVal e As RegisterNewClientTseCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class RegisterNewClientTseCompletedEventArgs
@@ -3728,11 +3741,11 @@ Namespace RKSV_DE_DSFinVKService
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub GetNextBON_IDCompletedEventHandler(ByVal sender As Object, ByVal e As GetNextBON_IDCompletedEventArgs)
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3761.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class GetNextBON_IDCompletedEventArgs

View File

@@ -54,6 +54,7 @@ Public Class cAllgemein
Public Shared BENUTZER_BERECHTIGUNGS_GRUPPEN As cBerechtigungenBenutzerGruppenZuordnung_List = Nothing
Public Shared PARAMS As cParameterList = Nothing
Public Shared TRANSLATE As cTranslate_LIST = Nothing
Public Shared TRANSLATE_AUTO As cTranslateAuto_LIST = Nothing
Public Shared _LAN As String = "DE" '"EN"
Public Shared SESSION As New cSession
@@ -128,6 +129,7 @@ Public Class cAllgemein
LOAD_PARAM()
LOAD_TRANSLATE()
LOAD_TRANSLATE_AUTO()
LOAD_FIRMEN()
LOAD_FILIALEN()
@@ -164,6 +166,9 @@ Public Class cAllgemein
Public Shared Sub LOAD_TRANSLATE()
TRANSLATE = New cTranslate_LIST(PROGID)
End Sub
Public Shared Sub LOAD_TRANSLATE_AUTO()
TRANSLATE_AUTO = New cTranslateAuto_LIST()
End Sub
Public Shared Function GET_LAND() As String
Select Case FIRMA
Case "AMBAR" : Return "DE"