Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md to warn about possible network failures in call to SerialKey.Set #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var transactions = ediItems.OfType<TS837P>();
## 3. Serial Key and EdiFabric trial DLLs
All projects reference EdiFabric EDI Tools as NuGet packages from nuget.org. If you wish to install EdiFabric EDI Tools as DLLs, download the trial DLLs from [here](https://sowl.co/oApEt).


## 4. Setup
Rebuild the solution with Package Restore enabled. If there are any build errors, manually install the missing packages from [here](https://www.nuget.org/packages?q=edifabric).

Expand Down Expand Up @@ -101,6 +102,10 @@ The trial serial key is valid for 14 days, and using the product with a trial li

[Knowledge Base](https://support.edifabric.com)

## 13. Production Operation

Beware that ```SerialKey.Set``` makes an HTTP request to **api.edifrabric.com** upon invocation. This may fail in production due to downtime or networking issues. Since a retry policy can't be applied directly to the underlying HttpClient, the policy must be applied on the outside. In addition, a guide for caching the token is [here](https://github.com/EdiFabric/X12.NET/blob/master/NET%20Framework%204.8/EdiFabric.Examples.X12.Common/TokenFileCache.cs)

[Support](https://support.edifabric.com/hc/en-us/requests/new)

Last updated on June 20, 2023
Expand Down