We're very excited to see the CoreWCF project moving well. Right now we're trying to deploy a WCF service writen in CoreWCF to an Azure App Service using .NET 6. Deployment succeeds, but the WCF endpoints don't work.
Could you let me know if this feature is supported at this moment? If it is, do you have instructions on how to do it?
Thank you very much, really appreciate your work!
Ellen
It is possible to deploy a
WCF service
incorewcf
to Azure App Service (Net 6).As per Azure App Service operating system functionality documentation, Azure App Service supports named pipes as an inter-process communication (IPC) mechanism between different processes that collectively run an app.
Use named pipes instead of
NetTcpBinding
in your WCF service.Steps to deploy a WCF service in
corewcf
toAzure App Service (Net 6)
appsettings.json
file as below.WEBSITE_LOAD_USER_PROFILE
" and the value "1". And restart the App Service.For more information refer to the MSDoc and MSDoc.