-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 622 by setting correct WCF attributes to allow multiple calls #626
Conversation
@sylvain-hamel Much cleaner solution! Thanks! |
Just reading the MSDN article on
I've put comments inline. |
@@ -6,7 +6,8 @@ | |||
|
|||
namespace CefSharp.Internals | |||
{ | |||
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)] | |||
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple)] | |||
[CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From what I can tell [CallbackBehavior]
is only required on the IRenderProcess
class
@sylvain-hamel What do you think of amaitland@06e2a1a? Quick test and everything looks ok, I think that's the minimum required code change. |
@amaitland your are right. you can remove the extra lines when your will merge. |
Closing in favor of #630 |
@amaitland I think this is a better fix. What do you think?