Tagged Questions

48
votes
3answers
5k views

Is .NET Remoting really deprecated?

Everyone is saying how .NET Remoting is being replaced by WCF, but I'm wondering just how accurate that is. I haven't seen any official word that Remoting is being deprecated, and it seems to me there ...
20
votes
3answers
11k 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. ...
18
votes
6answers
10k views

Windows packet sniffer that can capture loopback traffic?

(This is a followup to my previous question about measuring .NET remoting traffic.) When I am testing our Windows service / service controller GUI combination, it is often most convenient to run both ...
15
votes
2answers
2k views

Is MarshalByRefObject special?

.NET has a thing called remoting where you can pass objects around between separate appdomains or even physical machines. I don't fully understand how the magic is done, hence this question. In ...
14
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 ...
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 ...
12
votes
4answers
4k 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 : ...
11
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 ...
11
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 ); ...
8
votes
3answers
709 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 ...
6
votes
1answer
127 views

Optimized way to do RPC in .Net

I'm considering to move parts of a .Net application to other computers. The obvious way to do this is simply using WCF with a binary tcp protocol, for example as describer in " Easiest way to get fast ...
6
votes
2answers
350 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
769 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
1answer
1k views

Why am I seeing slower performance here from WCF than Remoting?

Everything I'm told says that WCF should be at least as fast as remoting. I have a specific scenario here, however, where it isn't even close, and I'm wondering if someone can spot something obvious ...
6
votes
3answers
3k views

Good .Net Remoting Tutorial/Guide

Does anyone have any links to a good, concise, Tutorial or guide to .Net remoting? Would be grateful! Thanks (sorry for the short post!) Edit: I am now aware of: ...
6
votes
8answers
591 views

Remoting performance degrades over the time

I'm working on a client-server solution that uses .NET 2.0 Remoting (server activation, binary formatting over TCP channel, Vista Ultimate) for communication purposes. Currently I'm profiling the ...
5
votes
3answers
628 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
3answers
384 views

com+ alternative in .net?

What is the com+ alternative in .net? Is it .net remoting or WCF or something else.
5
votes
2answers
685 views

How can I subscribe to an event across AppDomains (object.Event += handler;)

I'm having the problem described in this message board post. I have an object that is hosted in its own AppDomain. public class MyObject : MarshalByRefObject { public event EventHandler ...
5
votes
4answers
870 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
2k views

does silverlight support remoting?

Does silverlight support the remoting functionality of the .net framework?
5
votes
1answer
770 views

Switching off the .net JIT compiler optimisations

I have a curly one here. When we remote a method (that is using generics) the remoting sink cannot seem to discover our method from the other identical named ones. Debugging with .net source code ...
5
votes
4answers
4k views

How to debug .NET remoting calls?

I have an app with the following basic architecture: A windows service (Service) that registers a .NET type (RemoteObject) for remote access (.NET Remoting). RemoteObject creates non-ThreadPool ...
4
votes
1answer
487 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
1answer
999 views

Why is WCF performance so slow when compared with Remoting?

I'm trying to evaluate which communication technology to use in a new system, right now it looks like Remoting is our only option as WCF's performance is terrible. I have benchmarked calling a WCF ...
4
votes
5answers
331 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
2answers
829 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
916 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
1answer
181 views

Architecture decision for client-server communication protocol

This question is pretty generic actually, but I'm really having trouble finding a good answer or example of how it should be done. We are writing a simple multi-user collaborative web browsing ...
4
votes
1answer
367 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
2answers
583 views

.NET Remoting thread locking mechanism

I'm having a pressing issue and I'm hoping you all can help me out. I will try my best to explain it as well as I can. I am augmenting a system that uses .NET remoting to allow for database calls ...
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
3answers
558 views

Declarative thread safety in .NET

I need to make an existing app thread safe. Due circumstances (see below), I decided to use one single ReaderWriterLock for the entire graph of business objects. All methods/properties must look like ...
4
votes
3answers
402 views

How do I measure bytes in/out of an IP port used for .NET remoting?

I am using .NET remoting to retrieve periodic status updates from a Windows service into a 'controller' application which is used to display some live stats about what the service is doing. The ...
3
votes
2answers
86 views

Mixing MarshalByRefObject and Serializable

Various sources explain that When an object derives form MarshalByRefObject, an object reference will be passed from one application domain to another rather than the object itself. When an ...
3
votes
2answers
146 views

To Remote or Not to Remote?

To Remote or Not to Remote? Forgive me if my terminology is not 100% correct. After developing software (all Windows form apps) for many years for small companies, I recently crawled out from ...
3
votes
2answers
263 views

How .NET Remoting handles changes of IP address in Remoting Server side

Precondition - the remoting server and client are both setup, the client is able to invoke methods and receive events in/from the server side by client-activated business object. Change the ip ...
3
votes
2answers
358 views

How to pass an unknown type between two .NET AppDomains?

I have a .NET application in which assemblies in separate AppDomains must share serialized objects that are passed by value. Both assemblies reference a shared assembly that defines the base class ...
3
votes
1answer
2k views

What causes “Tcp channel protocol violation expecting preamble” in .NET Remoting?

I have a distributed application that uses .NET Remoting on an in-house gigabit network. There is a single server, and over a dozen clients that connect to the server. The clients run multiple ...
3
votes
1answer
353 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
434 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
696 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
415 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
1answer
181 views

Proxy calls across a DMZ

We need to determine a quick way for our web application deployed in a DMZ to communicate to our SQL server that lives in the protected network. Only port 80 is open and available, and no direct SQL ...
3
votes
1answer
126 views

Using IOC in a remoting scenario

I'm struggling with getting IOC to work in a remoting scenario. I have my application server set up to publish Services (SingleCall) which are configured via XML. This works just like this as we all ...
3
votes
3answers
184 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
531 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 ...

1 2 3 4 5 7