.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)

0
votes
1answer
11 views

COM Interop, RPC server is unavailable in c#

I am using a COM Interop and i am instantiating the COM class object from the interop dll So, few times the object is instantiated successfully and make remote procedure calls without any problem but ...
1
vote
0answers
50 views

Checking if an object exists after calling Activator.GetObject

I'm developing a project with passive replication where servers exchange messages among themselves. The locations of each server are well-known by every other server. So, it may happen that when a ...
0
votes
0answers
24 views

Communicate WCF RESTFUL Service hosted in IIS 6 to .NET MarshalbyRef Object in a remote server

I am newbie to .NET Remoting and WCF. I am trying to create an application where I have a .Net Remote Object and a wcf service running as windows service in remote servers. Each server has a ...
0
votes
0answers
17 views

Ajax Call + ASP.NET + .NET Remoting

So, I have a strange situation occurring in my web system. I have a implementation of a Windows Service, that starts a .Net Remoting Server and stay waiting for calls of various clients. At other ...
0
votes
1answer
74 views

Object reference not set to an instance of an object on build web site

I have a web site that is just serving as a Remoting Server and has remoting configuration inside its web.config file. <system.runtime.remoting> <application> <service> ...
0
votes
0answers
75 views

what is the best Course or Tutorial to learn WCF and .Net Remoting? [closed]

I want to learn WCF & .Net Remoting from reliable sources contains a complete examples help me to develop myself in WCF & .Net Remoting from beginner to professional.
1
vote
1answer
51 views

.Net remoting: Know in a service if the call have been made locally or remotely?

I currently have a .Net remoting service that can be accessed by different ways: Locally through an IPC channel Remotely through a TCP channel Locally through a TCP channel I need to known, in ...
0
votes
1answer
144 views

The input stream is not a valid binary format. The starting contents (in bytes) are: 53-79-73-74-65-6D-2E-52-75-6E-74-69-6D-65-2E-52-65

I have a VSTO Word Addin project which integrates with the Word 2007, when I click on login button on my Addin, I execute the following method: private void btnOK_Click(object sender, ...
1
vote
1answer
72 views

Is MarshalByValueComponent still used or useful?

I have been exploring reinventing the DataTable and I am wondering what the uses are for MarshalByValueComponent. I believe it is used for .NET Remoting (maybe WinForms and WebForms), but that was ...
0
votes
2answers
52 views

Implementing an internal interface over .NET Remoting

I had an internal interface that I needed to implement over .NET remoting to make sure only our assemblies ever called these members remotely (used InternalsVisibleTo to give access to friend ...
0
votes
0answers
174 views

System.Runtime.Remoting.RemotingException: Requested Service not found

I have the following code in my Web.Config in a remoting project which is having a reference to a dll of another class library. The class library has the following class inside it: public class ...
0
votes
0answers
169 views

Failed to connect to an IPC Port: The system cannot find the file specified

In my .net 2.0 application Remote object suddenly destroyed and thrown the below exception. "Failed to connect to an IPC Port: The system cannot find the file specified." I have IPC remoting server ...
0
votes
0answers
24 views

Net Remoting:remote event cannot be fired after some minutes

I try to create a client server application using Net Remoting, other programs is also made with this technology, but firing events from server to client after some minutes of client inactivity ...
1
vote
0answers
89 views

.net remoting, How to reconnect if the connect is lost?

I have this working but i don't understand how to predict when the connection has dropped and needs to reconnect to the server. what i want to do is have the client connect right away to the .net ...
0
votes
0answers
25 views

Singlecall and per call are equal?

Is Single-call in .net remoting equal to Per-call in WCF? As both of them creating instance for every method per call and destroy the instance after using them.
1
vote
1answer
294 views

C# visual studio TCP channel already registered [duplicate]

I'm creating a chat application with 2 different console application using a TCP channel connection, but when I run the client console or the server console I get "TCP is already registered" I have 4 ...
0
votes
3answers
340 views

Convert Bitmap image to String format to send over network(LAN) and vice-versa

I am basically developing a software in Visual Studio 2010 .NET 4.0 where in I capture the screenshot from a pc and send it over a network to another. Since I cannot directly send a Bitmap, I have to ...
0
votes
0answers
83 views

.NET Remoting Parse Error, no assembly associated with Xml key

First of all, I'm using .NET remoting Framework 2.0 and I can not upgrade to a newer technology. Here is my problem: I'm getting the following error "Parse Error, no assembly associated with Xml key ...
0
votes
0answers
31 views

Access channel properties from a .NET Remoting service

How do you get channel properties from a client that is connected to a .NET Remoting service?
0
votes
0answers
69 views

Mono HTTP remoting channel shuts down keep-alive connection

I'm testing a .NET remoting application using Mono. When the HTTP channel is used, the Mono HTTP remoting server shuts down the connection after responding, even though HTTP 1.1 is being used and ...
0
votes
1answer
108 views

MissingMethodException when making a .NET Remoting call over IPC

I have a service which needs to pump strings to a helper application which displays critical messages from the service to the user (Vista+ does not give services access to the GUI). Since I've used ...
1
vote
0answers
79 views

How to unsubscribe observer on server side

I have an application which uses RX via remoting with one server (observable) and many clients (observers). My problem is when a client(observer) disconnects not properly without performing ...
0
votes
1answer
443 views

The HTTP request to 'http:///xxx.svc' has exceeded the allotted timeout

I am investigating the following TimeoutException exception. Has anyone encountered this before? Can anyone suggest a solution? We have a clients that connect to a WCF service to upload a payload of ...
2
votes
1answer
56 views

What happens when a connection is terminated in the middle of a remote call on a .NET remoting server?

What is the server-side behavior of a .NET Remoting server when a connected client disconnects in the middle of a remote call? Specifically, if the client application calls myThread.Abort() while ...
0
votes
1answer
145 views

.NET remoting service seemingly crashes, and stops responding to clients

I have a .NET Remoting service which works fine most of the time. If an exception or error happens, it logs the error to a file but still continues to run. However, about once every two weeks the ...
0
votes
1answer
43 views

.net remoting - update on server causes cannot load type error

I'm working on updates to a deployed client server app that uses .net remoting over a tcp channel with the binary formatter. As the clients are geographically distributed, I need to make updates ...
1
vote
1answer
641 views

EasyHook, .NET Remoting sharing interface between both client and server?

How can both the IPC client and IPC server call the shared remoting interface (the class inheriting MarshalByRefObject) to communicate, without having to put the interface class inside in the ...
0
votes
1answer
226 views

Very strange C# RemotingException

When I compile and run my program in Debug mode, everything works as intended. However, when I compile and run in Release mode, things get a little... strange. I receive the following exception if I ...
0
votes
0answers
140 views

Use a .net remoting object from ASP Web Site

I'm trying to use a .net remoting object from an ASP Web Site. Both, dll (remotable object) and web site were builded by me. In ASP Web Site, I should include a CRUD interface for entities in my ...
8
votes
1answer
139 views

What happens under the cover when you return a Stream from a remote object via .NET Remoting

I'm returning Streams from a remote service (.NET Remoting). But Streams are also disposables which as we all know are ment to be disposed. I could call Dispose on the client side once I finished ...
1
vote
0answers
29 views

How to access version 4.0 component from version 1.1

We have an ASP.NET application which has been built up on version 1.1 Now we need to incorporate a new functionality in Version 4.0 and this includes a user control having a grid and a number of other ...
0
votes
1answer
473 views

Workaround for .NET Remoting TcpChannel Timeout Issue

Since I (and many other people on the internet) are unable to configure the client-side TcpChannel timeout when using .NET Remoting (please don't suggest proper fixes, I've literally tried everything, ...
0
votes
1answer
152 views

.Net C# Remote Method Invocation (RMI) (Client/Server communication) [duplicate]

Possible Duplicate: What the .NET standard for remote method invocation? What exactly is C# version of Java RMI? I want to invoke the methods of client from the server, ping the client ...
0
votes
1answer
160 views

Retrieve IP information of a .NET Remoting client

I need to get the IP address of the client calling a function over a .NET Remoting TcpChannel. I found this post which seems to be exactly what I need, however, I am not sure how to implement this ...
5
votes
4answers
284 views

What are the benefits of migrating our application over to WCF as opposed to continuing to use .NET Remoting?

Alright, so I've asked several questions on StackOverflow about .NET Remoting, and there is always at least one person who just has to chime in, ".NET Remoting is deprecated, use WCF instead." I ...
1
vote
1answer
60 views

Is it possible to get the assembly information of the client who connects to your .NET Remoting server?

Is it possible to get the assembly information (I'm really only interested in getting the version of the connected assembly) of a client who is connected to our.NET Remoting service? I am able to get ...
0
votes
1answer
155 views

How do the ISponsor and ILease interfaces work?

I've created a object that inherits from MarshalByRefObject and ISponsor. In my implementation of ISponsor I just return a timespan to indicate how long I want the object renewed for. When I call ...
0
votes
1answer
208 views

Configure COM+ server

There is COM+ server already running. I can see this in services. Now, I want to install/configure a new version of this component. So, I stop the service. Copy new com+ dll and exe file to the ...
0
votes
1answer
130 views

Cannot retrieve an int property over .NET remoting in C#

I am having an issue with reading a property over a .NET remoting channel. Here is the beginning of my class: [Serializable] public class MachineID { private string mySystemDeviceSerial = null; ...
0
votes
1answer
156 views

Sending DataSets from .net 4 to .net 3.5 via remoting

I have a service that uses .NET 3.5 and exposes some methods via .NET remoting. Some of those methods expect a DataSet as an argument. When the client is also running .NET 3.5 everything is fine. ...
1
vote
0answers
710 views

Getting System.Reflection.TargetInvocationException inside RemotingConfiguration.Configure(configFile);

Inside my code, I use RemotingConfiguration.Configure(configFile) Things work perfectly on a normal network. Whereas Connecting via Microsoft DirectAcess the same API throw and Exception. [Remoting ...
0
votes
0answers
173 views

Remoting exception thrown in C# server

i have this problem when running my program the server is throwing this exception This remoting proxy has no channel sink which means either the server has no registered server channels that are ...
0
votes
1answer
74 views

Sponsorship of remotely instanced objects

I have a singleton service on remote server, this has a method who returns new objects to clients: public class MySingleton : MarshalByRefObject { public override object ...
0
votes
0answers
39 views

DbDataReader inherited from MarshalByRefObject, how to use it in .net Remoting?

Such as the title: DbDataReader inherited from MarshalByRefObject, how to use it in .net Remoting?
3
votes
5answers
1k views

MVC3 webapp task scheduling with Quartz.NET

I need your advice for scheduling tasks in the MVC3 Webapp. My task is to create some generic scheduler for different services in the webapp that can be used later in development. For example we ...
0
votes
1answer
319 views

Exception while communicating with Remote Server?

I have established communication with a remote server..The remote server has exposed an event.When i try to subscribe for the event i get the exception with following stack trace ...
1
vote
0answers
131 views

Can't raise the event on client/server app

I'm implementing a multi player game with .NET Remoting. The client connect to the server, and i can play the game. There is no problem with the connection etc. however; i subscribe the event in the ...
3
votes
1answer
200 views

remoting callback object lifetime

I've wrote a piece of code similar to the example in this post: .NET Remoting callback (Pass a callback object to a remote method). As I found out, if I didn't override ...
0
votes
0answers
99 views

Unable to create multiple instances of generic types in spring dot net

Object creation of generic types in Server config file will be - <object id="myFilteredIntList" type="GenericsPlay.FilterableList&lt;int>, GenericsPlay"> <property name="Name" ...
0
votes
1answer
65 views

Writing Java server to support existing .NET clients that use remoting?

I am working on an existing system written using .NET 2.0 remoting to integrate a number of embedded clients to a central server. Due to a number of issues, it has become desirable to rewrite the ...

1 2 3 4