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

Remoting with AIR

Hi I am trying to set up remoting in an AIR app. Does anyone know if I need to define a context-root in the compiler settings. Can't seem to find any articles about setting it up, only in flex. Thanks
Chin
  • 12,582
  • 38
  • 102
  • 152
0
votes
0 answers

Boolean members having true value by default in .NET remoting

I am using .NET Remoting. I have a class which has some pubilc boolean members and set them to false at the time of declaration itself. This class inherits from MarshalByRefObject class. When I access this class object in the client app, all these…
Brij
  • 11,731
  • 22
  • 78
  • 116
0
votes
1 answer

Singleton Class in Assembly Help using Remoting

I have a class in an assembly that I wish to be a singleton. I want it to be created by my Server application then allow Another application on the same machine to access this class instance. I am using this lazy loading implementation to ensure…
Matt Wilko
  • 26,994
  • 10
  • 93
  • 143
0
votes
2 answers

Error Access denied when execute Get-WSManCredSSP command using Remote PSSession

I have Windows XP x86, and Powershell 2.0. I open Powershell Console, and I execute Enter-PSSession command to connect Windows 2008 Server. I want execute Get-WSManCredSSP command remotely, but I get error Access is denied. PS C:\Documents and…
Kiquenet
  • 14,494
  • 35
  • 148
  • 243
0
votes
1 answer

Invoke-command and machine not reachable exception

I am still trying to adjust to powershell after a couple of days playing around with it. I have the following question regarding invoke-command. My scenario is this: I am trying to make use of the invoke-command and its ability to "thread" to…
user79089
  • 23
  • 2
  • 4
0
votes
2 answers

Value of property is not changed after .net remoting call

Possible Duplicate: How do the In and Out attributes work in .NET? I'm using .Net Remoting (yeah I know... that's old) to implement some service class hosted in a Windows Service. I call a method DoOperation(Person[] people) on the service to…
Marcelo de Aguiar
  • 1,432
  • 12
  • 31
0
votes
1 answer

in .NET remoting how do you call a method on a Client Activated remotable object?

I can establish remote communication betweeen client and server but every time the client calls a method on the Client Activated remotable object I get a System.Net.WebException: {"The underlying connection was closed: An unexpected error occurred…
John Smith
  • 4,416
  • 7
  • 41
  • 56
0
votes
2 answers

Flex Remoting or Flash Remoting

Can you suggest which Remoting service is good either flash or flex. Thank you
None
0
votes
1 answer

Remote WMI as Administrator on Windows 8

I am trying to connect to a remote machine and run a script that gets me the OS-es from that machine. To do this I connect through WMI, run cmd /c bcdedit -v > bcd.txt. For some reason I keep getting access denied, the same thing as running bcdedit…
Cristi M
  • 446
  • 4
  • 13
0
votes
1 answer

WellKnownServiceTypeEntry's ObjectType is null

I have a .NET remoting server which has multiple registered well known types:
Ville Salonen
  • 2,654
  • 4
  • 29
  • 34
0
votes
2 answers

Redirect Traffic from NIC to Another NIC On Separate Networks While Using Remoting

The project I'm working on is to handle data capture from scan guns (Pocket PC 2003) and process this data on a host (Win XP) then into our inventory database on a separate server (Win 2000). This is all driven by the Remoting framework provided by…
Stevoni
  • 341
  • 7
  • 18
0
votes
1 answer

how to reference dll in GAC in a remote machine in 3 tier structure

I have a 3 tier structure in my office and my dll (in GAC) in business tier is already installed in my business component server . Method 1: Remote GAC I'm trying to build a light-weight application and the application will reference the dll in…
Hami
  • 335
  • 1
  • 7
  • 22
0
votes
2 answers

Powershell Invoke-Command with-FilePath Gives ItemNotFoundException

I establish a persistent session then attempt to execute a script remotely using the following line: Invoke-Command -Session $Session -FilePath "FullStopBizTalkApp.ps1" -argumentlist $BizTalkMgmtDBConString, $ApplicationNameInBizTalk If I then…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

Method Calls on BlazeDS using Java

I have an application that makes to remote method calls to a BlaseDS server that uses Java to connect to a 3rd party data system. It needs to make 2 remote method calls method_A() and method_B(). java method_A() is called on a timer of 5 seconds.…
Russell Milburn
  • 109
  • 2
  • 9
0
votes
5 answers

ASP.NET and Remoting

I have a .net application running on server. Now I want to comunicate between my ASp.NET website and the server application. Currently I use database, server writes info to the db and site uses it etc. However adding new fields to echange and…
Niran
  • 1,106
  • 1
  • 8
  • 10