-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from fiskaltrust/user/tsc/journalfix
Don't return \0 in last journal chunk
- Loading branch information
Showing
11 changed files
with
61 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/fiskaltrust.Middleware.Interface.Client.Http.StrongName/version.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 16 additions & 17 deletions
33
src/fiskaltrust.Middleware.Interface.Client.Http/POS/HttpPosClientOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
using System; | ||
|
||
namespace fiskaltrust.Middleware.Interface.Client.Http | ||
{ | ||
public class HttpPosClientOptions : ClientOptions | ||
{ | ||
public HttpCommunicationType CommunicationType { get; set; } | ||
using System; | ||
|
||
namespace fiskaltrust.Middleware.Interface.Client.Http | ||
{ | ||
public class HttpPosClientOptions : ClientOptions | ||
{ | ||
public HttpCommunicationType CommunicationType { get; set; } | ||
public bool UseUnversionedLegacyUrls { get; set; } = false; | ||
public Guid? CashboxId { get; set; } | ||
public string AccessToken { get; set; } | ||
} | ||
|
||
public enum HttpCommunicationType | ||
{ | ||
Json, | ||
Xml | ||
} | ||
|
||
public Guid? CashboxId { get; set; } | ||
public string AccessToken { get; set; } | ||
} | ||
|
||
public enum HttpCommunicationType | ||
{ | ||
Json, | ||
Xml | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/fiskaltrust.Middleware.Interface.Client.Soap/SoapClientOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
|
||
namespace fiskaltrust.Middleware.Interface.Client.Soap | ||
{ | ||
public class SoapClientOptions : ClientOptions | ||
{ | ||
public long MaxReceivedMessageSize { get; set; } = 16 * 1024 * 1024; | ||
public TimeSpan ReceiveTimeout { get; set; } = TimeSpan.FromDays(14); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters