Tagged Questions

0
votes
1answer
25 views

.NET IE BHO Remoting

I have a IE Browser Helper Object, which is a Toolbar addin for IE 8. I have another .NET .EXE application (Remoting Client) that connects to this BHO (Remoting Server) using remoting via common …
1
vote
2answers
31 views

What issues should I expect when porting an application from Genuine Channels to WCF

Genuine Channels is a set of 3rd party chancels for .Net Remoting. I have been given the tasks of replace the usages of .Net Remoting in a rick client and server with WCF. I am familiar with …
2
votes
2answers
44 views

Why can I only read properties and not set properties from ASP.NET web app when using .NET remoting?

Hi everyone. I'm having an issue with attempting to set a property on a remote object hosted in a Windows Service. I'm trying to change a property of an object and it is not saving for some reason. …
0
votes
1answer
37 views

.net remoting - Problems with List<T>

I am developing a client-server application using .Net Remoting. From my server I want to return a List in response to a certain method call, however I get an exception saying that basically …
2
votes
1answer
29 views

Getting Error with .NET REMOTING C#

Here is the error I'm getting. I have a simple .Net Remoting setup. This error comes up after a few minutes of the connection being idle. Object …
0
votes
1answer
75 views

.NET Remoting - How to do a callback to all connected clients?

I'm studying .NET Remoting and I see an example on Remoting callbacks and events in .NET 2.0, A simple example. All works good. Now my problem is if I try to start another client, the server doesn't …
0
votes
1answer
20 views

MarshallByRefObject

Hi There Just a quick one for an expert in the field :) Can I use the marshallbyrefobject class to get objects to be reference across a network, rather than just across application domains? If not, …
0
votes
4answers
138 views

MTOM/XOP implementation for .net remoting

My customer asked me to implement MTOM/XOP for .NET Remoting via HTTP/SOAP for remote stream access (for example, file uploading). WCF web services in not an option. So, what I have to do is modify …
0
votes
1answer
262 views

Using System.Security.SecureString in .NET Remoting App?

I am developing a Remoting application where a client looks up store specific information to login to a web server. It sets the user name and passwords in a class that stores the properties as …