How can a newly added global.asax file make a mess of my WCF service

前端 未结 2 1926
余生分开走
余生分开走 2021-01-17 03:24

I have a silverlight app that uses WCF both by polling Duplex and \"normal\" async calls. everything was working fine, until I added a global.asax file.

After an ho

2条回答
  •  清歌不尽
    2021-01-17 03:59

    There are some types of binding which support accessing asp.net session data, I really dont see how it would affect unless WCF tries to hook into the session_start event just like a http module does. You could also use reflector to disassemble the code where you where getting the exception.

提交回复
热议问题