Created Feature: [en] Capture client-side call stack [2527]
Zyan events can be used to trace server-side events like SQL queries, permission checks, etc.Capturing server-side call stack is straightforward.But the whole picture needs a client-side call stack as...
View ArticleEdited Feature: [en] Capture client-side call stack [2527]
Zyan events can be used to trace server-side events like SQL queries, permission checks, etc.Capturing server-side call stack is straightforward.But the whole picture needs a client-side call stack as...
View ArticleNew Post: [en] Android project (solved)
Hi, I have a connection problem between android as server and win client. Android app is working with no problem. host.DiscoverableUrl: tcpex://192.168.1.39:9010/MiniChat But win client and android...
View ArticleSource code checked in, #44482
[en] Added test cases for nested display classes, issue #2528.
View ArticleSource code checked in, #44483
[en] Fixed an issue with nested display classes, issue #2528.
View ArticleCreated Issue: [en] Nested closures (C# 6.0) [2528]
Brand new Roslyn-based C# 6.0 compiler can generate nested display classes.It breaks InterLinq serializable expression converter.Test case:```c#[TestMethod]public void...
View ArticleCommented Issue: [en] Nested closure breaks expression serialization (C# 6.0)...
Brand new Roslyn-based C# 6.0 compiler can generate nested display classes.It breaks InterLinq serializable expression converter.Test case:```c#[TestMethod]public void...
View ArticleCreated Unassigned: [en] Target projects for .NET 4.6 [2529]
Main Zyan.Communication.csproj and all unit test projects should be built for .NET 4.6
View ArticleClosed Issue: [en] Nested closure breaks expression serialization (C# 6.0)...
Brand new Roslyn-based C# 6.0 compiler can generate nested display classes.It breaks InterLinq serializable expression converter.Test case:```c#[TestMethod]public void...
View ArticleClosed Unassigned: [en] Target projects for .NET 4.6 [2529]
Main Zyan.Communication.csproj and all unit test projects should be built for .NET 4.6Comments: Done, see changeset #44484.
View ArticleNew Post: [en] Android project (solved)
Hi flashkolik, Looks like you are using Zyan version from Nuget... It's a bit dated, and it may have bugs already fixed since then. Please try building Zyan library from the latest sources and let me...
View ArticleNew Post: [en] Android project (solved)
Hi Alex, Thanks for your reply. I solved my problem with removing "using" syntax.using (var host = new ZyanComponentHost("MiniChat", protocol)) tovar host = new ZyanComponentHost("MiniChat", protocol)
View ArticleNew Post: [en] Android project (solved)
Ah, thanks for reporting that! That explains everything. Your server was only running within your "using" block, and then it was stopped and disposed of. Regards, Alex.
View ArticleCreated Feature: [en] Implement custom HTTP-like headers [2540]
Implement custom headers that can be passed along with the call arguments.Headers should behave like logical call context.
View ArticleNew Post: Calling static methodes?
Hello Zyan Team, Hello community, first, thanks a lot for your great work! I was wondering if it's possible to call static methods through Zyan? Normally I declare a proxy with an interfaces like...
View ArticleNew Post: [en] Calling static methods?
Hi Michael, thank you for your kind words and sorry for my late reply. Just got back from my vacation. As for your question: you're right, it's not possible to call static methods via interfaces. And...
View ArticleNew Post: [en] How to restart Server without restart the Applikation?
Hi, If i stop the Server with:this.ZyanHost.UnregisterComponent("MyComponent"); this.ZyanHost.Dispose(); and then restart it, i got a socket error: Only one usage of each socket address...
View ArticleNew Post: [en] How to restart Server without restart the Applikation?
Hello iPanic, disposing of the host should be enough to stop the server and free up the TCP port. There is no need to unregister components, just call host.Dispose(), and that's all. I can't reproduce...
View ArticleNew Post: [en] How to restart Server without restart the Applikation?
Hello Alex, i am using TcpDuplex. But i cant test it, i got always a exception :Zyan.Communication.ChannelSinks.Encryption.CryptoRemotingException wurde nicht behandelt. HResult=-2146233077 Message=Der...
View Article