Updated Wiki: Event filters
Server-side event filters Standard .NET event model is the simplest Observer pattern implementation. Every event is dispatched to all listeners who subscribed it, so the listener is responsible for...
View ArticleUpdated Wiki: Event filters
Server-side event filters Standard .NET event model is the simplest Observer pattern implementation. Every event is dispatched to all listeners who subscribed it, so the listener is responsible for...
View ArticleNew Post: [en] Can an event/method be restricted to on recipient? And data...
hi yallie, Thank you for the clarifications on events. If the servers are connected via VPN then it should not be a problem for Zyan, should it? I assume that if a communication is initiated and the...
View ArticleNew Post: [en] Can an event/method be restricted to on recipient? And data...
If the servers are connected via VPN then it should not be a problem for Zyan, should it? That shouldn't be a problem, but it might depend on your VPN type and configuration. Generally speaking, if...
View ArticleCreated Feature: [en] Add ZyanComponentHost.ClientLogonCanceled event [2318]
ZyanComponentHost is able to track invocation exceptions via InvokeCanceled event.But Logon operation exceptions cannot be tracked.ZyanComponentHost.ClientLogonCanceled event will provide the ability...
View ArticleEdited Feature: [en] Add ZyanComponentHost.ClientLogonCanceled event [2318]
ZyanComponentHost is able to track invocation exceptions via InvokeCanceled event.But Logon operation exceptions cannot be tracked.ZyanComponentHost.ClientLogonCanceled event will provide the ability...
View ArticleNew Post: [en] Could you please tell me how to work with remote...
If a function of a registered object returns the type of data that is serialized, then everything works fine. But if you pass an object inherited from MarshalByRefObject, an error occurs. There is an...
View ArticleNew Post: [en] Could you please tell me how to work with remote...
Hello! Hmm, don't see anything wrong with your code... Passing MarshalByRefObjects should work fine (Zyan in fact uses them internally). Will look into it. Thanks for submitting the issue!
View ArticleNew Post: An exception form ZyanComponentHost
My code: using (ZyanComponentHost host = new ZyanComponentHost("Server", new TcpDuplexServerProtocolSetup(m_port, new ClientAuthProvider(), true))) { host.PollingEventTracingEnabled = true;...
View ArticleNew Post: An exception form ZyanComponentHost
Hi, please post the exception message and error code (SocketException should have internal error code). Have you tried running your code on another computer? What steps do I need to reproduce the...
View ArticleCreated Unassigned: ZyanConnection constructor may reset CurrentSession [2323]
```c#// ServerSession.CurrentSession != nullvar conn = new ZyanConnection(url); // connect to slave server// ServerSession.CurrentSession == null```
View ArticleEdited Issue: [en] ZyanConnection constructor may reset CurrentSession [2323]
```c#// ServerSession.CurrentSession != nullvar conn = new ZyanConnection(url); // connect to slave server// ServerSession.CurrentSession == null```
View ArticleCommented Issue: [en] ZyanConnection constructor may reset CurrentSession [2323]
```c#// ServerSession.CurrentSession != nullvar conn = new ZyanConnection(url); // connect to slave server// ServerSession.CurrentSession == null```Comments: ** Comment from web user: yallie ** Hmm,...
View ArticleCommented Issue: [en] ZyanConnection constructor may reset CurrentSession [2323]
```c#// ServerSession.CurrentSession != nullvar conn = new ZyanConnection(url); // connect to slave server// ServerSession.CurrentSession == null```Comments: ** Comment from web user: yallie ** Current...
View ArticleSource code checked in, #42560
[en] Work around ServerSession.CurrentSession resetting, issue #2323.
View ArticleCreated Issue: [en] TcpEx: unhandled exception [2324]
On extremely rare occasions, TcpEx may get an unhandled System.NullReferenceException:```Сведения об исключении: System.NullReferenceExceptionСтек:в...
View ArticleEdited Issue: [en] TcpEx: unhandled exception [2324]
On extremely rare occasions, TcpEx may get an unhandled System.NullReferenceException:```Сведения об исключении: System.NullReferenceExceptionСтек:в...
View ArticleSource code checked in, #42562
[en] Added an extra check for Connection.Channel, issue #2324.
View ArticleClosed Issue: [en] TcpEx: unhandled exception [2324]
On extremely rare occasions, TcpEx may get an unhandled System.NullReferenceException:```Сведения об исключении: System.NullReferenceExceptionСтек:в...
View ArticleSource code checked in, #42563
[en] Fixed an issue with ServerSession.CurrentSession in a master-slave server setup, removed the temporary workaround, issue #2323.
View Article