Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Inbound Requests

The Tax Balance Server Transfer DE hosts an HTTP API and the Tax Balance Web Application which you can configure to use standard TCP ports (80/443) or non-standard ports.

...

  1. Open the appsettings.json file located at the Tax Balance Transfder DE installation directory.

  2. Change the value of the key Urls. Separate multiple binding URLs with a colon (;)

...

Use netsh.exe tool to register URLs for Tax BalanceTransfer DE:

Code Block
netsh http add urlacl url=<tax-balancetransfer-de-url-prefix> user=<tax-balancetransfer-de-user>
  • Replacing <tax-transfer-balancede-url-prefix> with the URL prefix from appsettings.json

  • Replacing <tax-transfer-balancede-user> with the account that will use the URL prefix

...

Use the netsh.exe tool to register a certificate for Tax Balance ServerTransfer DE.

Code Block
languagepowershell
netsh http add sslcert 
  ipport=<tax-balancetransfer-de-url-prefix>
  certhash=<tax-transfer-balancede-certificate-thumbprint> 
  appid="23842322-71a0-4aed-9852-eb1e5cea2c17"
  • Replacing <tax-balancetransfer-de-url-prefix> with the URL prefix from appsettings.json

  • Replacing <tax-transfer-balancede-certificate-thumbprint> with the X.509 certificate thumbprint from a certificate stored in the Windows certificate for the local machine.

...