.net-remoting Questions
1
Background:
We are in the process of migrating .Net application to .Net Core.
As a strategy, we would like to keep the existing functionality intact on Full framework while migrating portion of the...
Berget asked 7/6, 2018 at 19:26
4
Solved
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;
}
...
Filippa asked 29/6, 2011 at 8:26
2
Solved
I am writing a game which supports mods, for safety I am sandboxing the mods into a separate AppDomain from the game engine (so I can restrict the capabilities of mods separately from the engine). ...
Incautious asked 24/3, 2014 at 18:16
3
We have a server which we connect with .Net remoting.
The server is on two network, the client is on two network. The client and the server have only one network in common:
Using discovery, we f...
Cymatium asked 19/10, 2015 at 10:55
4
Solved
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 ...
Trescott asked 8/11, 2011 at 18:47
2
Solved
I am wondering that I can do same thing from both .net remoting and WCF, then why WCF is more preferred over .Net remoting. Where can I choose (or in which situation) .Net remoting or WCF?
Littman asked 8/10, 2013 at 16:4
2
Solved
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 ...
Mattias asked 13/12, 2012 at 17:31
1
Solved
I've tried to find a solution at stackoverflow but can't seem to find one quite like mine so here it goes. I have a computer in the lab that is connected to various devices like pan/tilt units, cam...
Infante asked 2/3, 2015 at 7:1
2
Solved
Is there any way to determine in which AppDomain was an object or ObjectHandle instance created?
Costermonger asked 29/5, 2012 at 17:12
2
Solved
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 ...
Apiculate asked 6/9, 2012 at 18:47
2
Solved
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 thre...
Huda asked 30/8, 2010 at 19:10
2
Solved
I'm trying to make my client subscribe to events that happen on my server.
I have an interface that looks like this:
public delegate void RemoteEventHandler(object sender, ClientEventArgs args);
...
Imperturbation asked 17/4, 2014 at 13:49
2
Solved
I am very confused with [Serializable] and :MarshalByRefObject attribute in .NET Remoting .However i read many article on that. If i am using [Serializable] attribute then all methods are executed ...
Naphthalene asked 11/10, 2013 at 10:22
1
Solved
I have a Python script that handles aynchronous callbacks from .NET Remoting. These callbacks execute in a dummy (worker) thread. From inside my callback handler, I need to call a function I've def...
Nozicka asked 24/9, 2013 at 18:38
1
In order to tell whether my project should migrate from .net remoting to WCF, I extracted its network communication part and implemented it by WCF. I run the remoting version and wcf version and ev...
Picasso asked 10/2, 2012 at 9:45
1
Solved
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 b...
Placida asked 16/5, 2013 at 13:1
0
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 serve...
Roxannroxanna asked 11/4, 2013 at 13:31
1
Solved
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 ...
Phillada asked 17/10, 2012 at 14:32
4
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 un...
Shechem asked 28/9, 2012 at 7:18
7
Solved
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 re...
Damning asked 15/9, 2009 at 9:59
1
Solved
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?
Than...
Oklahoma asked 28/4, 2011 at 11:10
2
Solved
I got a MarshalByRefObject named "DefaultMeasurement", which contains a List of IPoint-objects.
public class DefaultMeasurement : MarshalByRefObject, IMeasurement
{
private List<IPoint> iPo...
Radom asked 6/5, 2011 at 3:37
3
Solved
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 r...
Ruffin asked 6/8, 2010 at 19:4
5
Solved
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...
Linebreeding asked 12/11, 2010 at 10:19
1
Solved
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 t...
Exostosis asked 2/7, 2010 at 7:45
1 Next >
© 2022 - 2024 — McMap. All rights reserved.