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

jboss-as-maven-plugin deploy over https

I have a working remote deploy to JBOSS AS 7.1. However, I want to send these deploys using ssl. When I add server identity tag identifying the ssl information, my jboss instance will not receive the deploy.
Eric Mayes
  • 101
  • 1
  • 1
  • 6
0
votes
1 answer

How to undo RemotingConfiguration.RegisterWellKnownServiceType()?

After registering a .net remoting Service with RemotingConfiguration.RegisterWellKnownServiceType(), is there any way to undo this so that the application does not offer this Service anymore? I checked this link but surprisingly, there doesn't seem…
marc40000
  • 3,167
  • 9
  • 41
  • 63
0
votes
2 answers

WCF, IPC Named Pipes, ASP.NET, and

We have a .NET 4.0 Windows Service that is hosting an endpoint over a Named Pipe (using IPC). This service is running under the context of User A. We have an ASP.NET-hosted client that is requesting the operation that is exposed by the…
user11937
0
votes
1 answer

BlazeDS ignoring public accessor on POJO deserialization

I have a POJO class like this: public class EsigObjectWithDisplayName { private String objectCode; private String objectDisplayName; public EsigObjectWithDisplayName(Locale loc, String objectCode, String objectLocaleCode) { …
mkvcvc
  • 1,515
  • 1
  • 18
  • 41
0
votes
2 answers

How to create an easy-to-program-for server for many clients in C#?

I suppose similar questions were already asked, but I was unable to find any. Please feel free to point me to an existing solutions. I'll explain my scenario. I'd like to create a server application. There are many clients (currently only a few…
mafu
  • 31,798
  • 42
  • 154
  • 247
0
votes
0 answers

WCF can not access remote configuration settings (ConnectionString)

My WCF service writes into a database. The configuration settings (here specifically the connectionstring) are brought from an internal application (probably over remoting). It works when I use local settings for connectionString, but fails when…
Gadam
  • 2,674
  • 8
  • 37
  • 56
0
votes
1 answer

Powershell invoking remote script to get farmload (XenApp 4.5)

qfarm /loadI have a problem with remote executing a script. The script invokes a command for cmd qfarm /load and converts the result to PSObjects. function New-qLast() { param ([String] $qName, [String] $qLoad) $qLast = New-Object PSObject …
IronGibbet
  • 45
  • 3
  • 8
0
votes
2 answers

How to use App.config in .NET3.5 when using Remoting with out adding Remoting related configuation in App.config?

I am trying to use an App.config for a Windows Service application which is hosting Remoting and is developed in .NET3.5. In that App.config, I would like to keep some values which I will be using across the solution. I am not adding Remoting…
srv
  • 435
  • 1
  • 5
  • 22
0
votes
1 answer

Connect to .NET remoting interface from Perl

I'm trying to control a mail server from Perl (ArGoSoft Mail Server .NET). All it provides for this purpose is a .NET remoting interface (read more at http://en.wikipedia.org/wiki/.NET_Remoting). I'm not very familiar with .NET and all my system is…
Francisco Zarabozo
  • 3,676
  • 2
  • 28
  • 54
0
votes
0 answers

Can't see Service Reference on server side code (WinForm)

I am working in client/server winform application that is writte in C#. If I add a Service Reference to the project (that is server side) that my code exists in. I get 'xxx could not be found (are you missing a using directive or an assembly…
John Doe
  • 3,053
  • 17
  • 48
  • 75
0
votes
2 answers

Jboss5.01GA RMI EJB3.0

I have a cloud instance where i have installed Jboss5.0.1GA server. Server instance contains a Public ip and a natted Ip Address. I have run Jboss server using -b with ip(natted) address and web url is working fine. Now i am creating Java external…
Palani
  • 1,891
  • 7
  • 31
  • 42
0
votes
1 answer

Windows messaging for interop?

Is it possible to use the windows message system as a means of interoping 2 .NET applications? How would one do this? I am looking for a way to communicate high frequency data between 2 different .NET applications. We've tried TCP/IP but found it…
Curtis White
  • 6,213
  • 12
  • 59
  • 83
0
votes
1 answer

RemotingMultiClientsHelp c# code

I am making a remote desktop application. When I connect one client I can easy remoting but I cant connect more clients. MyCode: Server void start() { try { URI = "Tcp://"+textBox1.Text+":6600/MyCaptureScreenServer"; chan =…
Star Gag
  • 1
  • 1
0
votes
5 answers

Suggestion on remoting (rpc, rmi) for Java SE client-server app?

I'm absolutely in love with the way GWT does RPC. Is there anything similar for Java SE you have experience with that: Is not spring Doesn't require a Java EE/Servlet container to run the server side Is not RMI that comes with Java SE
yanchenko
  • 56,576
  • 33
  • 147
  • 165
0
votes
1 answer

how to achieve compression with spring-rmi

I'm trying to implement custom socket factory for compression in our Spring-rmi Application. below is the rmi-server configuration :
shatk
  • 465
  • 5
  • 16