c# - Calling WCF service hosted in Forms Authentication site from a Windows Service -
we have windows service process continually processing messages microsoft messaging queue. when acting upon these messages, calling methods wcf service. that wcf service hosted in asp.net web site not has wcf services end-user front end. generally, wcf methods modifying in-memory data structures, , front end reading them. data being modified , clients need notified of changes immediately. (we using signalr.) everything working great long asp.net site using windows integrated authentication. required front end use forms authentication. this, of course, broke wcf binding. previous binding was: <basichttpbinding> <binding name="basichttpbinding_isessionwebservice"> <security mode="transport"> <transport clientcredentialtype="windows" /> </security> </binding> </basichttpbinding> front-end users not need able call services. (in fact, should not able to.) ideally, i'd wcf serv