Home Forums Support RPC fails with "JIT Compiler encountered an internal limitation."

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1061
    Anonymous
    Inactive

    Problem is I have created a public RemoteProcedureCalls

    Server: RemoteProcedureCalls.Server.RegisterInstanceForPublicRemoteCall<DownloaderRemote, IDownloaderRemote>(new DownloaderRemote(), “DownloaderRemoteInst”);
    TCPConnection.StartListening(new IPEndPoint(IPAddress.Parse(serverIP), _serverPort));

    Client:
    var connectionInfo = new ConnectionInfo(“127.0.0.1”, 654);
    var con = TCPConnection.GetConnection(connectionInfo);
    string instanceId;
    _downloader = RemoteProcedureCalls.Client.CreateProxyToPublicNamedInstance<IDownloaderRemote>(con, “DownloaderRemoteInst”, out instanceId);

    Everything seems to work until i want to call a function on the interface
    i get JIT Compiler encountered an internal limitation.

    I am using VS2012 .Net40

    best regards

    #1065
    MarcF
    Keymaster

    Heya WolfmanFX,

    We are looking into this issue and believe it is caused by a Microsoft change. If you could submit a bug report that would be greatly appreciated, here.

    Regards,
    Marc

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.