Questions tagged [remoting]

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

.NET remoting enables you to build widely distributed applications easily, whether the application components are all on one computer or spread out across the entire world. You can build client applications that use objects in other processes on the same computer or on any other computer that is reachable over its network. You can also use .NET remoting to communicate with other application domains in the same process.

Note: As of version 3 of the .NET framework, remoting is considered a legacy technology that is retained for backward compatibility with existing applications and is not recommended for new development. Instead of remoting, it is now recommended to develop distributed applications using the Windows Communication Foundation (WCF).

1152 questions
0
votes
1 answer

.NET Remoting convention

I have a server-side code using .NET Remoting to establish the connection with client. Normally, I understand that using interfaces with objects passed between the client and server is the norm and is a safer alternative, but for the simple…
TtT23
  • 6,876
  • 34
  • 103
  • 174
0
votes
0 answers

Remoting identifying ip address

Is there is any way in Remoting through which we can identify ip address of an incoming request. Please note I am using .Net Framework 1.1
Deepesh
  • 5,346
  • 6
  • 30
  • 45
0
votes
1 answer

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 [System.Reflection.TargetInvocationException] = {"Exception…
Techy
  • 315
  • 1
  • 5
  • 14
0
votes
2 answers

Serializing Form in C# using Remoting

Well, first of all, I've been looking at the internet for over 2 hours now but I couldn't really find any useful answer to my problem. Well, its quite simple: I have a Client-Server program which I need to list the files in a server using Remoting…
Leonardo
  • 3,141
  • 3
  • 31
  • 60
0
votes
1 answer

CruiseControl.net Remoting - ForceBuild with reason

CruiseControl.net ships with the ability to connect to a CruiseControl.net server using .net remoting. I've been able to connect and achieve all we need - a much more advanced version of the CCtray. However, a project can be configured to ask for a…
Simon Laing
  • 1,194
  • 7
  • 18
0
votes
3 answers

Why does a tcp remoting client needs to listen?

When a remoting client creates a TcpClientChannel object, it listens on an (unspecified) port. What for? A single tcp connection to the server is already a full duplex, so why listen?
Sause
0
votes
1 answer

Reflecting private Remoted Objects

I want to return a private field from a remoted object but i get the exception: RemotingException was caught Remoting cannot find field 'connectionString' on type 'DBGeneral'. I DO get the Private field's FieldInfo object when executing the…
johnDisplayClass
  • 269
  • 3
  • 11
0
votes
0 answers

.NET remoting server and client within the same process/app domain?

I have a process (B) that I wish to act as both a .NET remoting client and server. In other words, this process will connect via .NET remoting to a server (C), as well as expose itself via .NET remoting to clients (A). For example: A --> B -->…
Dan
  • 1,215
  • 1
  • 10
  • 22
0
votes
1 answer

If I wanted to authorize connections between my client apps.. how would i?

I am trying to figure out how to handle authentication and data for client applications who will connect to eachother. In other words, each client app would authenticate to.. and use a central service to find out info about the other client so that…
Krevin
  • 267
  • 1
  • 5
0
votes
1 answer

how to execute any method in any dll over entry Dll using appdomain?

this is a strange question. i can load 15 Dll's from plugins directory. But i have basePluginToRunothers.DLL which task execute other 14 dlls. My Starter dll is basePluginToRunothers.DLL. How to run other dlls by using basePluginToRunothers.DLL in…
loki
  • 2,926
  • 8
  • 62
  • 115
0
votes
1 answer

.NET Remoting giving a KRB_AP_ERR_MODIFIED Error

We have an error in our application, I hope someone can help. Here's a summary of what is happening: 1) Our application has a 3-tier architecture – a Silverlight application, a web tier and a backend business logic tier. The business logic tier…
0
votes
2 answers

How Proxy gets created for SAO when client and server share same interface in Remoting

I have doubt realted to SAO object. Fo eg. I have Interface ITest which is in ITestObj.dll and RemoteObject(which is registered as SAO) Test which implements ITest in a server called RemoteObject.dll. Now my client just uses ITestObj.dll and try to…
Punit Singhi
0
votes
1 answer

how to transmit updates for network clients

I have an application in C# and using forms, I am placing a label each time I right click on the form. This label can be moved around, re-sized and modified its color. So far so good, but I want to make a server that will receive everything I do…
Carmichael
  • 467
  • 1
  • 8
  • 21
-1
votes
1 answer

Getting ip address from user name in VB.net

I am working on a windows service. I need to transfer files over network using TCP/IP. Now the problem is I have only network username to connect. Is there any way I can find the ip address of a user using its network username.
Harsh
  • 3,683
  • 2
  • 25
  • 41
-1
votes
1 answer

Unregister remoting type?

I want to be able to connect to a function in an assemly from my desctop on different servers. Say I have function foo() in x.dll. I want to call foo on server 1, then call foo on server 2 etc. How can I do this? I prefer to do in remoting. If not…
jivangilad
  • 469
  • 10
  • 21
1 2 3
76
77