简体   繁体   中英

asp.net: calling asp page while wcf operation is processing

I have a web application consists of several aspx pages + wcf service (one project) and a silverlight app. I have the following problem: I open silverlight app, it does async call to my long wcf service operation. While it is processing I can't request any other aspx page of my site. Why it happens? Is it session locking? I will be grateful for the tip. I can get any non asp page from server (iis6), but any aspx page can be processed only after wcf operation is done.

EDIT: I solved it by

aspNetCompatibilityEnabled="false"

Maybe your wcf ws is locking a database table also used by other aspx pages. Are you using synchronization locks ? Serializable transactions ? Or maybe you have a debugger attached.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM