Calling inherited interface methods possible? #40
Unanswered
StephanWeyer
asked this question in
Q&A
Replies: 1 comment
-
Please update to CoreRemoting version 1.1.15 (available via nuget since today). Then it should work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to convert a .NET remoting program to .NET. I have an interface called "IDbAdminConnector" which inherits method descriptions of an interface class "IConnector":
public interface IDbAdminConnector : OlapInterface.IConnector
{
....
}
The proxy in the client offers me the methods from IConnector, but when I call them, I get a timeout exception in the client. Only the methods described in the IDbAdminConnector seems to work. How can I solve the problem without duplicating all the interface descriptions and methods of the derived classes?
InterfaceProblems.zip
Beta Was this translation helpful? Give feedback.
All reactions