Tagged Questions

19
votes
2answers
11k views

How fast or lightweight Is Protocol Buffer?

Is Protocol Buffer for .NET gonna be lightweight/faster than Remoting(the SerializationFormat.Binary)? Will there be a first class support for it in language/framework terms? i.e. is it handled ...
19
votes
3answers
10k views

C# Remoting - How to turn off CustomErrors

I getting the following error when I try to connect to my server app using remoting: A problem seems to have occured whilst connecting to the remote server: Server encountered an internal error. ...
14
votes
14answers
17k views

Get external IP address over remoting in C#

I need to find out the external IP of the computer a C# application is running on. In the application I have a connection (via .NET remoting) to a server. Is there a good way to get the address of ...
13
votes
4answers
6k views

Usage of AppDomain in C#

What is the most important use of AppDomains in C#?
12
votes
4answers
3k views

AppDomain and MarshalByRefObject life time : how to avoid RemotingException?

When a MarshalByRef object is passed from an AppDomain (1) to another (2), if you wait 6 mins before calling a method on it in the second AppDomain (2) you will get a RemotingException : ...
12
votes
3answers
4k views

How best to communicate between AppDomains?

I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have also noticed that there are ...
10
votes
5answers
1k views

Remoting or WCF for new development (between two .NET apps on the same machine) using interfaces?

We want to have two .NET apps running on the same machine communicate with each other. We want three projects. A library containing interfaces. A "server" app that implements the interfaces and ...
10
votes
3answers
2k views

Fastest serializer and deserializer with lowest memory footprint in C#?

I am currently using the binary formatter (Remoting) to serialize and deserialize objects for sending around my LAN. I have recently upgraded from 2.0 to .NET 3.5. Has 3.5 introduced any new types to ...
9
votes
3answers
2k views

Working with singletons in .Net Remoting

I'm having a bit of a problem with a singleton class I'm exposing via remoting. In my server I have: TcpChannel channel = new TcpChannel( Settings.Default.RemotingPort ); ...
9
votes
4answers
2k views

Use the [Serializable] attribute or subclassing from MarshalByRefObject?

I'd like to use an object across AppDomains. For this I can use the [Serializeable] attribute: [Serializable] class MyClass { public string GetSomeString() { return "someString" } } Or ...
9
votes
4answers
2k views

What is the best way for a client app to find a server on a local network in C#?

The client connects to the server using GenuineChannels (we are considering switching to DotNetRemoting). What I mean by find is obtain the IP and port number of a server to connect to. It seems ...
8
votes
3answers
700 views

Can I tell the CLR to marshal immutable objects between AppDomains by reference?

When marshaling objects between AppDomains in .NET the CLR will either serialize the object (if it has the Serializable attribute) or it will generate a proxy (if it inherits from MarshalByRef) With ...
8
votes
4answers
3k views

.Net Remoting Vs WCF

Am working on a .Net website which is going to have 1000s of concurrent users. Am thinking of keeping the business components on the app server and UI components on the web server.Database ( sql ...
7
votes
2answers
1k views

Asynchronous Remoting calls

We have a remoting singleton server running in a separate windows service (let's call her RemotingService). The clients of the RemotingService are ASP.NET instances (many many). Currently, the ...
6
votes
2answers
320 views

Remoting lifetime for static objects in app domain with client activated objects

I'm curious about shared/static object lifetime in an AppDomain where the RemotingCalls are the cause of creating the shared objects. We're using a Remoting setup that uses client activated objects ...
6
votes
1answer
690 views

Inter-AppDomain communication problem

I've been developing a Windows Service in C#. A set of configuration file paths is supplied to this service when it starts. For each of these files the service will spin up an AppDomain using the ...
6
votes
3answers
1k views

.NET Remoting Singleton memory leak, TCP, Marshal by Reference

I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine. The service instantiates ...
6
votes
2answers
297 views

'ref' keyword and AppDomains

When I started using C# I was unsure of how references were treated exactly (whether they were being passed by value etc.). I wrongly thought the 'ref' keyword was needed when passing objects that ...
5
votes
3answers
569 views

Why does my C# Remoting object timeout, even with the Lifetime returning null?

this is a last resort after many days googling to try to find a definitive answer to my question. I have created a Windows service, a Windows form, and a Remoting object (all in C#). I am using the ...
5
votes
3answers
1k views

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.FullName, type.FullName); ...
5
votes
4answers
852 views

Send large byte arrays between AppDomains in the same process

I'm building a network server and starting a lot of AppDomains on the server to which requests are routed. What will be the fastest way to send off a request payload to one of the AppDomains for ...
5
votes
2answers
4k views

How to exclude nonserializable observers from a [Serializable] INotifyPropertyChanged implementor?

I have almost a hundred of entity classes looking like that: [Serializable] public class SampleEntity : INotifyPropertyChanged { private string name; public string Name { get { ...
4
votes
1answer
430 views

How to access CORBA interface without IDL or late-bound invoke remoting methods

We have been using an SAP "COM License Bridge" to access their license server and query the hardware key of a system programatically (to reuse with out own licensing). This worked fine on SAP Business ...
4
votes
3answers
256 views

Using WCF to execute code & return objects in another CLR address space

After some reading, i've gather .NET Remoting is a deprecated API which has been replaced by WCF. I'm writing an automation framework, and would like to reference a DLL with types/methods either ...
4
votes
5answers
318 views

Any 'quick wins' to make .NET remoting faster on a single machine?

I've been badly let-down and received an application that in certain situations is at least 100 times too slow, which I have to release to our customers very soon (a matter of weeks). Through some ...
4
votes
1answer
135 views

Why is my C# AppDomain fine one moment, then throws exceptions the next?

I have an AppDomain that I'm using to load modules into a sandbox with: class PluginLoader { public static AppDomain PluginSandbox; static PluginLoader() { AppDomainSetup ads = ...
4
votes
2answers
759 views

Unable to read data from the transport connection: the connection was closed

The exception is Remoting Exception - Authentication Failure. The detailed message says "Unable to read data from the transport connection: the connection was closed." I'm having trouble with ...
4
votes
2answers
869 views

.NET Remoting switching channels by itself

We are having an odd problem with .NET Remoting. Basically, we have a server which registers two TcpChannels with ChannelServices.RegisterChannel(): one listens on port 50000, the other one listens on ...
4
votes
2answers
609 views

What is a Channel Factory in .NET?

What is a Channel Factory and why do you use it?
4
votes
1answer
360 views

.NET IpcChannel doesn't reliably clean up properly?

For some reason, after using an IpcChannel and shutting it down, sometimes the namedpipe stays open, with a thread waiting on it. I cannot make this happen on demand in a debug environment, but it ...
4
votes
3answers
4k views

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 I will run the two instances of my application monitoring each other over .NET ...
4
votes
2answers
1k views

How to use custom serialization during .NET remoting?

I've written a custom serialization routine that does not use ISerializable or the SerialzableAttribute to save my objects to a file. I also remote these same objects and would like to use the same ...
4
votes
5answers
3k views

.Net Remoting to WCF Challenge!

I am trying to migrate my .net remoting code to wcf but I'm finding it difficult. Can someone help me migrate this simple Remoting based program below to use WCF? The program implements a simple ...
3
votes
1answer
144 views

Any documents on game-developing using wpf/silverlight/remoting

I'm going to start developing a card game using wpf at my spare time, so that I can play it with my friends in other cities. I suppose there is a game-server, and players can play this game via their ...
3
votes
1answer
325 views

Can AsyncCallback use a non-static delegate?

I'm using .net remoting, with asynchronous function calls to handle the ipc of my current project. I'm running into an issue where I'd like the client to: ASynchronously request information ...
3
votes
2answers
405 views

How do I pass references as method parameters across AppDomains?

I have been trying to get the following code to work(everything is defined in the same assembly) : namespace SomeApp{ public class A : MarshalByRefObject { public byte[] GetSomeData() { // } } ...
3
votes
1answer
643 views

Requested Service not found

I have an windows service application with which works on remoting.That is used to display the ballontip. sometime it displays this error... Exception :Requested Service not foundInner Exception : ...
3
votes
1answer
409 views

Efficient multiple services exposed over .NET remoting using more channels or end points?

I am using remoting over TCP for a prototype distributed server application where I want to have varying multiple services exposed from each remoting server process. In some cases I want the services ...
3
votes
3answers
74 views

How do I return an object that is able to execute on the server?

Coming from a Java background, this is the way I'm thinking: The server provides an object to the client. This object should be able to execute on the server. Server: private string _S = "A"; ...
3
votes
3answers
380 views

Intrasession Communication with .NET Remoting

I have an application that needs to be called upon by a second application. These applications need to find each other without configuration (preferably without touching the registry) and function in ...
3
votes
3answers
176 views

Remote monitoring design

I need to monitor several systems going thru stress testing. I want to make a client-server .NET(C#) application that will ping the systems to check temperature, memory usage etc. The client will ...
3
votes
4answers
508 views

Passing IEnumerable across appdomain boundaries

Is it generally a bad idea to pass an IEnumerable across appdomain boundaries? I ask because with my current understanding of IEnumerable implementations, the enumerator isn't going to be used until ...
3
votes
1answer
446 views

How do I use .Net Remoting through a web proxy?

An application I'm writing needs to use .Net Remoting (I'm aware that WCF is the 'new thing', but it is unfortunately not an option available to us at this time). Anyway, everything works fine if I ...
3
votes
1answer
354 views

Detect a transparent proxy vs actual object reference?

Given an object reference, is it possible to programmatically determine if the object was created in the current appdomain or instead is a proxy to an object in another appdomain?
3
votes
4answers
1k views

How can I tell if another app has registered an IPC Remoting channel?

So I have an application which has a .NET API available. Their API library communicates with their main application through .NET remoting calls. In order to use the API, the application must be up and ...
3
votes
2answers
522 views

remoting - information about the client. c#

Is it possible to find out / get some information about the connecting client when using remoting on .net 2.0? I like to know get some information about the connecting client on the server side, so I ...
3
votes
5answers
732 views

.Net Remoting without using .Net remoting?

After some advice more than anything. I have the following example. Appication1.exe - Has object MyList Application2.exe - Needs to gain access to MyList and interfact with the object as if it ...
3
votes
1answer
113 views

triggering events “over the wire” in .net

I need a way to trigger events on remote processes "over the wire" and pass parameters (xml serialization, whatever). I want to be able to do things like this. foreach(childClient c in clientList) { ...
3
votes
3answers
3k views

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 an object in a Windows Service, then put ...
3
votes
1answer
1k views

How to configure the limit of concurrent requests to a remoting server with TcpChannel

I have a standard Remoting server with an underlying TcpChannel: IDictionary props = new Hashtable(); props["port"] = portnumber; TcpChannel channel = new TcpChannel(props, null, ...

1 2 3 4 5 6