İsmail Özçelik
İsmail Özçelik
Sign in with browser never worked at my computer.
@jcansdale I tried and result is same.
When I open this issue, I tried without Vpn. After you asked, I tried with it.
@jcansdale I will try as soon as possible.
After update to lastest version the problem is fix for me. Now I can login.
@KyuuzoT "Visual Studio 16.8.2" but now I have lots of different problem :)
I update version 3.9.1 and try to use `EntryAddedListener`. I update code; ``` myTestMap.AddEntryListener(new TestListener(),new SqlPredicate("Status=2"),true); public class TestListener: EntryAddedListener { public void EntryAdded(EntryEvent @event) { ValidateData(@event); } } ```...
Ok, I found the problem and try to fix it. `ClientMapProxy.AddEntryListener(MapListener listener,.....` methods has recursive call so, I get previous exception. I remove recursive calls and put the code (previous...
My Listener Code; ``` var myMap= hzInstance.GetMap("myMap"); myMap.AddEntryListener(new EntryAdapter { Updated = e => { EntityUpdated(e); }, },new SqlPredicate("status=1"),true); ``` It is fired, no problem in there but it takes...