all groups > dotnet remoting > march 2006 > threads for march 22 - 28, 2006
Filter by week: 1 2 3 4 5
Configuring Multiple Clients of the Same Remote Object Type with Different URL Locations
Posted by jasonjoely NO[at]SPAM gmail.com at 3/28/2006 1:56:58 PM
Hey,
Is it possible to have multiple clients of the same remote object type
but with different url locations? If so, how can this be setup?
I'm trying to use .net remoting for a current project of mine. Here's
a brief background:
The project will have a machine (which I'll refer to as the... more >>
Security level exception under Framework 2.0
Posted by Lonifasiko at 3/28/2006 5:04:41 AM
Hi,
It's my first remoting question so be patient if you do not understand
me at a first glance.
Well, I have inherited a .NET application that was built with Visual
Studio 2002. The application runs services/agents and talks to
different numeric control devices. These services are listenin... more >>
Security and Remoting Problem
Posted by David White at 3/27/2006 4:27:29 PM
Thanks in advance for any pointers or help you can provide...
I am rather new to all this so forgive any newbie mistakes...
I have a WinNT Service written in C#. Once it starts up, it exports an
IPC-based remote object interface to permit another component of my application
(a C# Windows F... more >>
Activator.GetObject on a factory that returns interface
Posted by ben NO[at]SPAM peikes.com at 3/27/2006 1:37:00 PM
This is our current setup. Server has a singleton factory which is
setup using the System.Runtime.Remoting.RemotingServices.Marshal call.
This object implements ICalcFactory which has one method GetFactory
which returns ICalculator.
There is one shared assembly which has ICalcFactory and ICalc... more >>
Returning large Dataset is throwing System.OutOfMemoryException
Posted by Oldman at 3/24/2006 11:45:29 AM
I get the following exception attempting to return a very large dataset (50
MB):
Exception of type 'System.OutOfMemoryException' was thrown.
Server stack trace:
at System.String.GetStringForStringBuilder(String value, Int32
startIndex, Int32 length, Int32 capacity)
at System.Text.... more >>
Remoting VS2005 - server vs2005 - client vs2003
Posted by James at 3/23/2006 3:24:53 PM
I am new to remoting... I am wondering if someone know how remoting works
between a server developed in vs2005 and client developed in vs2003, can
they speak with each other without problems??
Thanks for all your help
-James A Taber
... more >>
Port to use for remoting
Posted by Nadanasabapathy I at 3/23/2006 6:28:26 AM
Hi
What is the recommended range of TCP Port numbers that can be used while
using .NET remoting.... more >>
Problem in using Windows Service as remoting server
Posted by Nadanasabapathy I at 3/23/2006 6:26:47 AM
Hi,
I am having a Windows Service named "DataCollectionService" with the process
DataCollectionService.exe. The Sevice hosts a singleton remoting object for
the clients to use. The service start I have given as manual start.
When I reboot my machine, the DataCollectionService.exe starts
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Access to client IP in MarshalByRefObject on server side?
Posted by Arndt at 3/22/2006 12:15:29 PM
Hi there,
has anyone any clue on how one can obtain the IP-Address of the client in a
remotin object on the server side?
E.G.
class RemoteClass : MarshalByRefObject {
public object myRemoteMethod(some param) {
this.i_want_to_know_which_IP_called_me();
}
}
Any hing would ... more >>
Socket error in windows service
Posted by mais at 3/22/2006 6:44:41 AM
Hi.
I got the error 10061 trying accessing my remote windows service object
dynamically published.
Thisi sthe code in the Main of MyService.cs:
MyService Console = new MyService();
ServiceBase[] ServicesToRun = { Console };
ServiceBase.Run(ServicesToRun);
TcpChannel channel = new TcpCha... more >>
|