Sigurna lokalna komunikacija između Proxyja i Gatewaya.
U appsettings.json:
{ "Kestrel": { "Endpoints": { "NamedPipe": { "Url": "http://pipe:DataGatewayApi" } } } }
Named Pipe mora biti dostupan proxy servisu:
# Postavljanje ACL-a za Named Pipe (u Gateway kodu) # Samo SYSTEM i Proxy-Service-Account
{ "Target": { "Type": "NamedPipe", "PipeName": "DataGatewayApi", "ConnectionTimeout": 5000, "ReadTimeout": 30000 } }
# Provjera statusa Pipe-a Get-ChildItem \\.\pipe\ | Where-Object { $_.Name -like "*DataGateway*" }