0

I have a web service that uses Session. I want to rewrite it as an WCF that can be hosted outside IIS.

What is the best way to replace session using WCF that wont tie me to IIS in my rewrite?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
Xander
  • 9,069
  • 14
  • 70
  • 129
  • Does this answer your question? [wcf and session asmx rewrite with Silverlight](https://stackoverflow.com/questions/5654133/wcf-and-session-asmx-rewrite-with-silverlight) – Peter O. Nov 17 '20 at 11:24

1 Answers1

1

You can use wsHttpBinding with Reilable Messaging and sessions which can be hosted outside IIS. Have a look here:

how to enable WCF Session with wsHttpBidning with Transport only Security

Community
  • 1
  • 1
Aliostad
  • 80,612
  • 21
  • 160
  • 208