Top "Remoting" questions

.NET Remoting is a Microsoft application programming interface (API) for interprocess communication released in 2002 with the 1.0 version of .NET framework.

Implementation of C# XMLRPC.NET client and server over HTTPS

It's pretty hard to find information about XMLRPC.net library used with https. The only documentation where an "https" URL …

c# https remoting xml-rpc
What is a Channel Factory in .NET?

What is a Channel Factory and why do you use it?

c# wcf remoting
How does [RemoteClass] work in Flex Actionscript can I use it for custom data-binding?

Actionscript supports a [RemoteClass] metadata tag that is used in BlazeDS to provide data-binding hints for marshalling AMF binary objects …

apache-flex data-binding actionscript remoting blazeds
In .NET remoting what is the difference between RemotingConfiguration.RegisterWellKnownServiceType and RemotingServices.Marshal?

In .NET remoting what is the difference between RemotingConfiguration.RegisterWellKnownServiceType and RemotingServices.Marshal? What I want to do is create …

c# .net remoting
Unable to cast transparent proxy to type from AppDomain

I'm trying to create an object in an appdomain: var type = typeof (CompiledTemplate); var obj = (CompiledTemplate) domain.CreateInstanceAndUnwrap ( type.Assembly.…

c# .net remoting appdomain
The channel 'tcp' is already registered

I want the given application (Windows Service) to act as a remoting server as well as remoting client. In production …

c# remoting
"Dead Letters encountered" error while running AKKA remote actors

I am trying to run remote actors using AKKA, on my localhost, but each time I get this error. It …

scala akka remoting actor
Is MarshalByRefObject special?

.NET has a thing called remoting where you can pass objects around between separate appdomains or even physical machines. I …

.net clr remoting
Remoting set timeout

.NET remoting is used in my brownfield application. We decided to set timeouts for our remoting methods. System.Collections.IDictionary …

c# .net timeout remoting .net-remoting
.NET Remoting, passing objects into methods

I am writing a .NET Remoting application. I have my dll, server, and client all working correctly. However, when I …

c# .net remoting serializable