Varna lokalna komunikacija med proxyjem in Gateway.
V appsettings.json:
{ "Kestrel": { "Endpoints": { "NamedPipe": { "Url": "http://pipe:DataGatewayApi" } } } }
Named Pipe mora biti dostopen za proxy storitev:
# Nastavi ACL za Named Pipe (v kodi Gateway) # Samo SYSTEM in račun proxy storitve
{ "Target": { "Type": "NamedPipe", "PipeName": "DataGatewayApi", "ConnectionTimeout": 5000, "ReadTimeout": 30000 } }
# Preveri stanje pipe Get-ChildItem \\.\pipe\ | Where-Object { $_.Name -like "*DataGateway*" }