remoting Questions
2
Solved
I have a server and client process both running on the same machine. The client creates a CAO object and uses it for some time (<1s up to hours). It takes a lot of memory so I want to dispose of...
4
Solved
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...
9
Solved
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 diff...
Alvaroalveolar asked 19/9, 2008 at 10:32
1
Solved
In an clustered environment I have a seed node and node1 and node2.
From node1 I want to send a message to an Actor which has been created on node2. The local path to this node on node2 is akka:My...
Mushroom asked 25/2, 2016 at 17:24
1
Solved
I am using the Logical CallContext to flow information back across a series of awaits. Interestingly, in my test console app, everything works fine. However, when running my unit test in the contex...
Stealer asked 11/2, 2016 at 20:56
7
(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...
Diplomatist asked 5/9, 2008 at 17:42
2
Solved
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 obviou...
Specht asked 18/8, 2009 at 17:27
0
I discovered a strange problem while playing with .Net Remoting and Mono.
When I invoke a remote object in code executed by NUnit this exception is thrown:
System.Runtime.Remoting.RemotingExcepti...
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
3
Solved
I have been trying to get the following code to work(everything is defined in the same assembly) :
namespace SomeApp{
public class A : MarshalByRefObject
{
public byte[] GetSomeData() { // }
}
...
Agnew asked 28/5, 2010 at 20:40
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 have a WinForms Application (.net 3.5) which displays a list of processes.
I would like to be able to attach to one of those processes. I have multiple Visual Studio 2010 instances running and I...
Predesignate asked 16/7, 2010 at 20:6
1
Solved
In .NET remoting, there are two kind of proxies:
Transparent Proxies
Real Proxies
What is the difference between them?
1
Solved
I have a case where I have to use some classes across AppDomains. To make them work I have them inheriting from MarshalByRefObject. Everything with these classes work as expected. But these classes...
5
Solved
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 l...
Blau asked 16/10, 2008 at 21:55
1
Solved
I am trying to run remote actors using AKKA, on my localhost, but each time I get this error. It says dead letters encountered. I searched on internet and found out that this error comes when actor...
1
I'm working on a project requiring inter-AppDomain-intra-process and inter-process-intra-machine communication. Yes... I know... NET Remoting is widely considered a legacy technology but I'm facing...
3
Solved
I have a problem, I have a script which:
Connect with PSSession (I use PSSession with admin account)
Stop 2 process
Do change on them files
Start the 2 process (Problem here)
I want to start pr...
Pichardo asked 12/8, 2013 at 8:39
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
3
Solved
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 ...
Delsiedelsman asked 22/11, 2009 at 12:29
3
Solved
hello,
We have large environment with hundreds of virtual machines. During our services deployment we need to copy some files from build drop to all these machines.
So, we have:
User machine, w...
Amalle asked 6/3, 2013 at 8:22
5
Solved
I have a war dependency:
<dependency>
<groupId>my.package</groupId>
<artifactId>myservices</artifactId>
<version>0.3</version>
<type>war</ty...
3
Solved
It's pretty hard to find information about XMLRPC.net library used with https.
The only documentation where an "https" URL can be set is here : http://xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html#2.3 b...
2
Solved
Does .Net Remoting opens multiple connections or just one ?
let say I have a server and a client. if the client creates multiple SingleCall objects. then for every object is there going to be a ne...
Cornflakes asked 21/2, 2013 at 7:19
2
Solved
I use the following code for shutdown the own System.It was working Fine.And I need to shut down another System, which is connected in LAN Connection. I'm unable to do it with this code. How to Shu...
Fuentes asked 23/11, 2012 at 5:50
© 2022 - 2024 — McMap. All rights reserved.