Tagged Questions

.NET Remoting is a legacy technology of the .NET Framework for distributed applications. For development of new distributed applications it is recommened to use Windows Communication Foundation (WCF)

learn more… | top users | synonyms (1)

14
votes
3answers
351 views

WCF vs. .Net Remoting

according to this article, WCF with named pipes is the best choice for IPC, and it is around 25 % faster than .Net Remoting. I have the following code that compares WCF with named pipes with .Net ...
13
votes
3answers
233 views

Can I remove empty catch with throw?

I'm hoping this is straightforward. I work on a large code-base, the overall quality is good, but occasionally you get some of these: try { // Calls a .NET remoting method. } catch { throw; } ...
7
votes
6answers
1k views

What is the difference between web service and remoting?

I know web service and have some knowledge on remoting. Both concepts invoke methods on the client machine so where lies the difference ?? Through remoting we can also execute the method on the ...
6
votes
2answers
184 views

.net remoting: Update already serialized objects

I got a MarshalByRefObject named "DefaultMeasurement", which contains a List of IPoint-objects. public class DefaultMeasurement : MarshalByRefObject, IMeasurement { private List<IPoint> ...
5
votes
1answer
416 views

How-to proxy-remote a .NET IEnumerable with fixed-size batches over the network?

.NET remoting can generate transparent proxy remotes for an interface with serializable members, such as: public interface INetworkInterface { bool login(string username, string password); bool ...
5
votes
1answer
174 views

Getting Error with .NET REMOTING C#

Here is the error I'm getting. I have a simple .Net Remoting setup. This error comes up after a few minutes of the connection being idle. Object ...
4
votes
5answers
317 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
3answers
2k views

How can we troubleshoot intermittent “An existing connection was forcibly closed” errors caused by a Cisco CSS

We have the "standard" three tier architecture with our middle tier hosted in IIS and accessed via .net remoting. These errors occur between our web and web services servers (front tier) that are ...
4
votes
3answers
304 views

Best way to move files of varying sizes across slow network using .NET

I'm building a .NET remoting client/server that will be transmitting thousands of files, of varying sizes (everything from a few bytes to hundreds of MB), and I'd like some feedback on the best method ...
3
votes
1answer
39 views

what happens when an object derives from MarshalByRefObject and is also marked [Serializable]?

I'm working on my first project that uses AppDomains and I'm wondering what happens when an object derives from MarshalByRefObject and is also marked [Serializable]? for example: [Serializable] ...
3
votes
1answer
83 views

Primary Interop Assembly (PIA)

What benefits do you get from using PIA when around .NET remoting? I have been asked this question in an interview and my answer was around COM objects, but someone insisted it has benefits around ...
3
votes
2answers
72 views

Access COM objects on another box from .NET (without deprecated DCOM, remoting)

I have to integrate my .NET server app with a vendor's product. The vendor's product will be on its own server and has a supported & documented API, but alas, only as COM objects. Since DCOM and ...
3
votes
2answers
74 views

How to know whether a class method was called internally or remotely in .NET Remoting?

I have a class which needs to behave differently when being called remotely via .Net remoting. How can I determine, inside the class, if this is the case? class RemoteClass : MarshalByRefObject { ...
3
votes
3answers
134 views

Inter-server communication via known ports

Our product system consists of an IIS 6.0 server, behind which is a Java SOA server, behind both of which is an Oracle database server. For various reasons, we need a windows service running on the ...
3
votes
2answers
203 views

Correct way of implementing database access using .net remoting

Im looking to implement a .net remoting system, where a number of clients will need access to a server database. Client calls may be concurrent, but Im wanting to queue client requests to the database ...
3
votes
2answers
272 views

.NET Remoting replaced by WCF?

I heard that .NET Remoting is replaced by WCF. Can someone tell me some details about it?
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
542 views

Does WCF really replace .NET Remoting?

I can understand that WCF is in general better than Remoting, but the two seem quite different to me. MS make this pretty picture to show how great WCF is (or perhaps how poor the other techs are to ...
3
votes
1answer
251 views

What encryption method does .NET use when setting secure=“true” in a remoting channel configuration?

We have been asked by a customer which encryption methods are used for our remoting calls -- we use the secure="true" tokenImpersonationLevel="impersonation" attributes on the channel in the ...
3
votes
1answer
641 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 : ...
2
votes
2answers
346 views

Custom .NET Remoting IServerChannelSink

i have a client-server application which uses .NET Remoting communication. For authentication reasons i had to write a custom IClientChannelSink to insert a session cookie into the HTTP-requests. On ...
2
votes
1answer
126 views

Select specific channel on Activator.GetObject

Suppose that you have registered two TcpChannels in .NET Remoting. Then I try to get the proxy using Activator.GetObject using a url tcp://... Is it possible to choose which channel to use? Thanks ...
2
votes
1answer
246 views

How do I communicate an event between App Domains?

I have two app domains, one parent creating the child domain. In the child domain, there is a MarshalByRef object, being communicated with using .NET Remoting. An object running in the parent domain ...
2
votes
0answers
41 views

Get socket addresses of clients from HttpServerChannel object

I am currently working on a client-server application using .NET Remoting. All is working well but I would like to see specific information regarding the clients which connect to the server. Can ...
2
votes
1answer
326 views

c# remote events

I'm trying to do a server client application to learn more about remote programs using c#. The structure is quite simple. I have a server which triggers an event when the function updateInventory is ...
2
votes
1answer
124 views

Event not firing through AppDomain

I am having a lot of trouble with AppDomains. I currently have an AppDomain containing camera controls, and am trying to have events raised from this secondary AppDomain (like a picture being taken) ...
2
votes
1answer
71 views

Don't understand remoting activation

I have been working my way through the .NET Remoting Overview at http://msdn.microsoft.com/en-us/library/kwdt6w2k(v=VS.71).aspx , and I don't understand a couple of things, hope someone here can shed ...
2
votes
1answer
801 views

Remoting set timeout

.Net remoting is used in my brownfield application. We decided to set timeouts for our remoting methods. System.Collections.IDictionary properties = new System.Collections.Hashtable(); ...
2
votes
2answers
734 views

.NET Remoting over WCF?

Why would you use .NET Remoting over WCF? I understand that WCF has its distinct advantages, but what advantages would .NET Remoting offer you over the more modern WCF technology?
2
votes
2answers
107 views

Why can I only read properties and not set properties from ASP.NET web app when using .NET remoting?

I'm having an issue with attempting to set a property on a remote object hosted in a Windows Service. I'm trying to change a property of an object and it is not saving for some reason. Here is the ...
1
vote
0answers
16 views

Open tcp remoting channel on specific port

I want to open a tcp port for .Net Remoting callbacks in an application that will run on a terminal server, where multiple concurrent users will be executing and running the app and each must be able ...
1
vote
0answers
79 views

WCF 4.0 and .net remoting

There is a solid comparison between WCF and .net remoting on http://msdn.microsoft.com/en-us/library/bb310550.aspx. Many questions asked in StackOverflow regarding performance issues between .net ...
1
vote
1answer
63 views

Problems upgrading .NET remoting services to 4.0 in IIS

I'm trying to upgrade a legacy .NET remoting web services project to .NET 4.0 in IIS7. The old project is currently running fine on 2.0. All of the projects in the solution were upgraded to 4.0, ...
1
vote
0answers
90 views

How to remote exception through .NET Remoting? [closed]

Possible Duplicate: .NET Remoting Exception not handled Client-Side I have a client-server applicaytion working with .NET Remoting. Server contains a class (RemoteClass) which contains a ...
1
vote
1answer
101 views

How to remote events in .NET Remoting?

I have a class for remoting which contains events. But when I am trying to set handler for those events on the client side I receive exception. My code looks like: //In common library class ...
1
vote
3answers
98 views

In C# how do I reference the port number configured in app.exe.config?

In our server, we configure the port in app.config as follows: <configuration> <system.runtime.remoting> <application> <channels> <channel ...
1
vote
0answers
107 views

.Net Remoting and Unable to connect to the remote server in client

I created a Window Service and register my ServerRemoteObject on it in a local computer,my client application is on other computer connecting to sSrverRemoteObject and runs fine in localhost(my ...
1
vote
1answer
32 views

Contact a windows app / service from asp.net

I've got a windows application that is multi threaded and processes jobs for me. I want to call this application from asp.net / c# in the code behind and wait for a response. Could you advise what the ...
1
vote
1answer
56 views

Terminate .NET remoting async service call from client side

There is a .NET remoting service that usually takes a longer time. When a client makes an async request to the service and when client times out, I need to terminate the execution of server call. How ...
1
vote
0answers
71 views

How to Inject a Client Channel Sink when using Cross-App-Domain remoting (or otherwise fix my problem)

In a previous post, I had problems with LogicalCallContext data that was not and should not be serializable and which was wreaking havoc with remoting calls. I solve the problem by implementing a ...
1
vote
1answer
122 views

How to catch “RemotingException”?

I'm using native pinvoke calls in my app and external assemblies in dlls. Everything is working fine, until part of the program stops working and I get: "A first chance exception of type ...
1
vote
1answer
50 views

Remoting post-build script to check if remoting object are actually build

We're running with a remoting setup that uses the following config file. <application> <service> <wellknown mode="Singleton" ...
1
vote
3answers
304 views

.NET Remoting with Reflection

I need to dynamically load an interface assembly that I use on client-side remoting. Something like this. static void Main(string[] args) { TcpClientChannel clientChannel = new TcpClientChannel(); ...
1
vote
0answers
96 views

Missing channel sink

Hello I am writing a project, which uses .NET Remoting and Observer pattern. Server: BinaryClientFormatterSinkProvider clientProv = new BinaryClientFormatterSinkProvider(); ...
1
vote
1answer
284 views

Custom RPC vs WCF vs .NET Remoting

I have written a simple RPC class that lets me serialize and send binary data between a .net desktop app and a .net server app. In a nutshell, a client could send: Dim Message as new TCPMessage ...
1
vote
0answers
124 views

Custom main loop in C# Remoting

I'm using IIOP.NET to communicate with C++ in C#. Currently C++ calls can happen anytime, since C# Remoting Framework uses its own thread. I don't want that. Some other middleware gives me a ...
1
vote
1answer
158 views

.NET Remoting object Lifetime

I wrote this code: public class Message : MarshalByRefObject, IMessage { ... public override object InitializeLifetimeService() { ILease leas = (ILease) ...
1
vote
2answers
319 views

Calling a .NET 4.0 component by .NET 1.1

I work at a financial institution, in a team whick takes care of a "home-made" corporate component. This component was built using .NET 1.1, and the other teams use it a lot, specially along with the ...
1
vote
0answers
159 views

c# remote events

I'm trying to do a server client application to learn more about remote programs using c#. The structure is quite simple. I have a server which triggers an event when the function updateInventory is ...
1
vote
2answers
308 views

Method call on remote object never returns (.NET Remoting)

The problem arises after I restart the remoting server. Client, server register their channels successfully Client successfully calls method on remote object I manually restart the server Client ...

1 2 3