I know that WCF can be hosted on its own. what about WCF RIA services? Thanks!
Actually, it can be placed after a small configuration:
DomainServiceHost host = new DomainServiceHost(typeof(DomainService1), uri); host.Description.Behaviors.Remove<AspNetCompatibilityRequirementsAttribute>();
WCF RIA services are created on top of WCF, and they become available as WCF services. See WCF RIA Services on MSDN .
According to this forum topic on MSDN , this cannot be done because RIA services establish ASP.NET compatibility so IIS hosting is required.
Source: https://habr.com/ru/post/1306334/More articles:Create a WPF Browser Application (XBAP) in PowerBuilder 12? - powerbuilderJava - Google App Engine - InvalidClassException when changing a class that was saved in the session scope - javaTabular (X) HTML Forms - htmlGoal C, how to query if an object has a particular class - objective-cNSPredicates, scopes, and SearchDisplayController - objective-cIssues related to displaying MessageBox from non-GUI threads - multithreadingHow reliable is check () in Moq? - unit-testingtoupper / tolower + locale (German) - c ++How to find where the library is used in multiple pom files - javaExport data as an Excel file from ASP.NET - c #All Articles