remoting Questions

7

Solved

Hi I have RMI application and now I try to invoke some methods at server from my client. I have following code: public static void main(final String[] args) { try { //Setting the security manage...
Trigonal asked 12/6, 2011 at 13:7

3

I am trying to use PowerShell Remoting to check some disk sizes from a Server in a remote domain, but the commands I am running are failing to work. The situation is like this: Source Server is ...
Habiliment asked 2/1, 2013 at 18:14

10

Solved

I successfully enabled PSRemoting on my Server 2008 R2. I'm able to do a remote-pssession from within the same network using the hostname as target. I'm failing when I try to use the IP-Address as...
Optometer asked 5/7, 2011 at 18:50

6

Solved

This New-PSDrive command New-PSDrive -Name Z -PSProvider FileSystem -Root \\$j\share -Credential $credentials -ErrorAction Stop Causes the error New-PSDrive : Multiple connections to a server...
Dola asked 23/9, 2014 at 13:3

3

Solved

I have googled a little to find a good explanation of the difference between the above two remoting strategies, i.e. transparent remoting and location transparency. As far as I know, the former is...
Garvy asked 5/5, 2016 at 5:46

7

Solved

For some reason, I've been unable to connect remotely to my MySQL server. I've tried everything and I'm still getting errors. root@server1:/home/administrator# mysql -u monty -p -h www.ganganadore...
Brahear asked 27/3, 2013 at 15:41

10

When a MarshalByRef object is passed from an AppDomain (1) to another (2), if you wait 6 mins before calling a method on it in the second AppDomain (2) you will get a RemotingException : System....
Gaddy asked 9/3, 2010 at 15:36

7

I can not remote into any machine to save my life! I have tried everything I can find. If anyone could troubleshoot or guide me, I'd appreciate it as this would be a great tool to add on my domain....
Condescend asked 17/4, 2013 at 13:55

5

Solved

Everyone is saying how .NET Remoting is being replaced by WCF, but I'm wondering just how accurate that is. I haven't seen any official word that Remoting is being deprecated, and it seems to me th...
Ers asked 18/8, 2009 at 15:8

2

Solved

We have a legacy .NET Remoting-based app. Our client client libary currently supports only synchronous operations. I would like to add asynchronous operations with TPL-based async Task<> meth...
Brucite asked 5/11, 2018 at 12:45

1

Let's say I have an generic interface IService<T> and a class implementing it Service : IService<Bar> I create a proxy of that interface : var proxy = new DynamicProxy<IService<B...
Disseminule asked 10/10, 2018 at 7:30

4

Solved

I'm trying to create an object in an appdomain: var type = typeof (CompiledTemplate); var obj = (CompiledTemplate) domain.CreateInstanceAndUnwrap ( type.Assembly.FullName, type.FullName); Howev...
Chappelka asked 7/9, 2010 at 3:7

1

Solved

Goal I have a couple of interfaces and some dlls that provide implementations for these interfaces. I want to load the implementation into a new AppDomain (so I can unload the dll later) and insta...
Vanatta asked 30/7, 2018 at 14:36

6

Solved

I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have also noticed that there a...
Infirmity asked 24/11, 2008 at 14:26

5

Solved

What is the most important use of AppDomains in C#?
Augustaugusta asked 20/3, 2009 at 10:52

3

Solved

I'm having the problem described in this message board post. I have an object that is hosted in its own AppDomain. public class MyObject : MarshalByRefObject { public event EventHandler TheEve...
Cran asked 7/9, 2009 at 18:46

1

Solved

This was originally a much more lengthy question, but now I have constructed a smaller usable example code, so the original text is no longer relevant. I have two projects, one containing a single...
Gefen asked 12/8, 2017 at 1:25

3

Solved

I have a .NET application in which assemblies in separate AppDomains must share serialized objects that are passed by value. Both assemblies reference a shared assembly that defines the base class...
Lather asked 15/11, 2010 at 15:21

3

Solved

I am unable to access the UNC paths on my servers in a Powershell remote session from my local machine. I am able to use them from Servers Cmd prompt directly. Actually, I have logged into the ser...
Ampereturn asked 23/7, 2013 at 14:24

2

Solved

I have a DCOM client and server applications which use OLE automation marshaller. They work fine when run on the same PC but when the server is on a different PC not in the same domain I get E_ACCE...
Paving asked 25/5, 2011 at 10:52

5

this is a last resort after many days googling to try to find a definitive answer to my question. I have created a Windows service, a Windows form, and a Remoting object (all in C#). I am using th...
Daydream asked 26/5, 2011 at 2:35

2

I've got an app which creates several AppDomains in a single process and communicates between them via remoting. I create sponsors for all objects to prevent them from being GCed. But, some ended ...
Vinosity asked 8/9, 2013 at 5:16

6

Solved

Is there a way to test an application where you simulate a hundred different clients connecting to a IIS server and asking the same data? At the customer where our project is running they have 400 ...
Digitate asked 18/11, 2008 at 17:41

1

Solved

My class has no default parameterless constructor. It has such a constructor instead: public Section(string fileName) {...} I am to create an instance of my class inside of some AppDomain. If my...
Elbertine asked 26/10, 2016 at 13:56

3

I ran into a remoting exception: "This remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or this application has no suitable cl...
Slang asked 1/11, 2009 at 18:13

© 2022 - 2024 — McMap. All rights reserved.