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
-1
votes
2 answers

.NET Remoting client.exe needs server.exe

I have a working distributed application that has a rather big blemish. The client.exe needs the server.exe to work. The reason for this is that the client and server use a MarshalByRef Class (which exists on both sides in the form of a .DLL) which…
c_uld
  • 81
  • 1
  • 9
-1
votes
1 answer

Passing large strings in .Net Remoting

I have a .Net Remoting service that will return a class to the client application. That class has a string property where the string can range from 1kb to 400kb worth of data. I tried passing 256kb worth of string from server to client and the…
Jan Navarro
  • 327
  • 4
  • 16
-1
votes
2 answers

Flex Blazeds Java NoSuchMethodException

We have a Flex-BlazeDS-Spring-JMS application. The issue is sometimes we get a Blazeds error: NoSuchMethodException. It is not able to find the Java service. The weird issue with this it does not happen all the item...1 time it goes through and…
Harry
  • 546
  • 6
  • 22
  • 50
-1
votes
2 answers

Permission denied: cannot call non-public or static methods remotely

Ok I've found a solution to this particular error message on here already. But my case is slightly different. There are no "non-public" or "static" methods in my code. All are public. What I'm trying to do is pass a FrameworkElement (more…
rstat1
  • 158
  • 2
  • 14
-1
votes
1 answer

Sending a message through a particular client port in remoting

I am doing applications in .net remoting.actually we register a channel in the server side and connect the client using the iP and port of the server,but i want to send my messages from client through a specific port for ex: 8085 or 8086.how to…
karthik
  • 4,485
  • 8
  • 30
  • 45
-1
votes
1 answer

C# Singleton Initialisation

I've created a simple C# remoting server/client with the view of replicating an existing VB6 ActiveX exe. The client creates a server activated singleton object correctly. The object is only very simple having the one property - a Count. Each client…
Muckers Mate
  • 399
  • 8
  • 23
-1
votes
1 answer

How can i use .net Remoting over internet

I have two application on different computers than connect to each other by Remoting Channel. I want to control server from client on different network (over Internet). How i can do that? Is it possible to configure Remoting to bypass/punch holes…
user2880188
  • 33
  • 1
  • 7
-1
votes
1 answer

Singleton or SingleCall .Net Remoting

I know there are many questions on SO explaining many such comparison but I am in stuck into something else. I have a class DataAccess(configured to remote proxy) that executes DAL methods, for doing so it holds connectionstring. So far is good. Now…
Vinay Pandey
  • 8,589
  • 9
  • 36
  • 54
-1
votes
1 answer

.NET Remoting Binary Formatter Deserialization throws "Index was out of bounds of array"

This is the code: Dim serverProv As New System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider serverProv.TypeFilterLevel = System.Runtime.Serialization.Formatters.TypeFilterLevel.Full Dim clientProv As New…
-1
votes
2 answers

developer friendly IPC in Java

I need to send an instance of an object from one process to another (both Java) and get the changed version back. There are gonna be lots of this remote functions. (actually, one of the processes is something like DataBase wrapper) What is the most…
MBZ
  • 26,084
  • 47
  • 114
  • 191
-2
votes
1 answer

C# ; How to implement event and delegates in Remoting

How to implement the user-defined events in Remoting.net ? I tried it but ide errors.
trinvh
  • 30
  • 1
  • 4
-2
votes
1 answer

Acessing files from a Server remotely

As the title says, I need to access files from a server remotely. After doing this, I need to show the files in a windows file/folder Dialog style. I need this using Remoting. It's not that simple since I have some problems: I don't have access to…
Leonardo
  • 3,141
  • 3
  • 31
  • 60
1 2 3
76
77