Tagged Questions

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

learn more… | top users | synonyms

44
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 ...
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. ...
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
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#?
13
votes
4answers
4k views

ASP.NET Stress Testing

Is there a way to test an application where you simulate a hundred different clients connecting to a IIS server and asking the same data? At the customer where our project is running they have 400 ...
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 ...
11
votes
3answers
5k views

.NET Remoting vs. Web Services vs. Windows Communication Foundation (WCF)

Anyone willing to help me out with pros/cons on .NET Remoting, Web Services, and WCF? I have worked a bit with .NET Remoting and Web Services and I am architecting a new ASP.NET 3.5 web app where I ...
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 ...
10
votes
8answers
12k views

RMI vs. Web Services. What's best for Java2Java remoting?

I'm new to both Web Services and RMI and I wonder which is the better way to do remoting between different web applications, when these applications are all written in Java, that is when different ...
9
votes
1answer
278 views

Request to php file from Flash hangs in Safari

The last two days we've been going over this problem for several hours to figure out what's going on and we can't find any clues. Here's what's happening; We have a Flash application that allows ...
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
2answers
3k views

Lazy/Eager loading strategies in remoting cases (JPA)

I'm running into LazyLoading exceptions like the most people who try remoting with an ORM. In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread ...
8
votes
3answers
697 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
3answers
350 views

When messages get bigger, IpcChannel Remoting gets slower

I'm evaluating various interprocess communication methods for a couple of .NET 2.0 processes residing on the same machine. Naturally, .Net Remoting is a candidate, and theoretically the fastest ...
7
votes
6answers
2k views

What are the pros and cons of Web Services and RMI in a Java-only environment?

When developing distributed applications, all written in Java by the same company, would you choose Web Services or RMI? What are the pros and cons in terms of performance, loose coupling, ease of ...
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
1answer
118 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
319 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
678 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
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 ...
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
585 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 ...
6
votes
1answer
493 views

Remoting from a Swing app to GWT server

To put it simple, I've written a JSE Swing app that needs to talk to a GWT server I've written earlier. I absolutely love the way GWT does remoting between it's javascript and server sides and wish I ...
6
votes
6answers
1k views

How to initialize Hibernate entities fetched by a remote method call?

When calling a remote service (e.g. over RMI) to load a list of entities from a database using Hibernate, how do you manage it to initialize all the fields and references the client needs? Example: ...
6
votes
6answers
1k views

Flex - best strategy for keeping client data in synch with backend database?

In an Adobe flex applicaiton using BlazeDS AMF remoting, what is the best stategy for keeping the local data fresh and in synch with the backend database? In a typical web application, web pages ...
5
votes
3answers
563 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
1answer
235 views

Implement the business logic in an app server with spring

Is posible implement the business logic in an App Server remote using pojos instead of either EJB or Servlets???. The main idea is apply a model of 3 layers where the clients may be both web browsers ...
5
votes
3answers
365 views

com+ alternative in .net?

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

Flash Remoting and Java

I want to use Flash Remoting in my Flash app that is backed by a Java server. I'm interested in what my options are for using Flash Remoting with Java. I know about BlazeDS but it seems to be fully ...
5
votes
6answers
403 views

What remoting approach for Java application would you recommend?

I wonder how is the best way to integrate Java modules developed as separate J(2)EE applications. Each of those modules exposes Java interfaces. The POJO entities (Hibernate) are being used along with ...
5
votes
5answers
712 views

How to protect access=“remote” functions in CFCs from snoopers?

One of the great features of CFCs is the ability to reuse the code for both a straight .cfm page and for Flex apps. One such app that I devleoped uses Flex for its charting capabilities and needs ...
5
votes
4answers
850 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 { ...
5
votes
2answers
2k views

does silverlight support remoting?

Does silverlight support the remoting functionality of the .net framework?
5
votes
1answer
757 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 ...
5
votes
6answers
6k views

Flex - Remoting vs HTTPService - when to use what?

I have been using Flex for a while and have not used remoting as of yet. Currently my apps use a webservice that generates xml that I use for databinding. What would be the benefit to using remoting ...
4
votes
4answers
171 views

Java: how to write proper equals method for classes that really do not have any state?

Consider this interface: public interface Listenable { void listen(); } Consider this implementation: public class Listener implements Listenable { public void listen() { ...
4
votes
2answers
2k views

Java: no security manager: RMI class loader disabled

Hi I have RMI application and now I try to invoke some methods at server from my client. I have following code: public static void main(final String[] args) { try { ...

1 2 3 4 5 14