all groups > dotnet remoting > january 2006 > threads for january 8 - 14, 2006
Filter by week: 1 2 3 4 5
Form as remote object?
Posted by kcamhi at 1/14/2006 2:40:03 PM
Can a form not be a remote object?
If not, is there any work around... basically I want a central computer to
be controlling forms on several computers on a network?
When I try to add Inherits MarshallByRefObject to a Windows Form class, I
get the error: Base class 'System.MarshalByRefObj... more >>
Access to and from remoted objects
Posted by LEFritz at 1/12/2006 4:20:45 AM
Hi,
I created a simple WindowsForms application (basically a form with a
listbox on it) and registered an object for remote access:
RemotingConfiguration.RegisterWellKnownServiceType(
typeof(CMyClass), "MyClass.rem",
WellKnownObjectMode.Singleton);
So far that works fine ... more >>
Prevent service from stopping
Posted by ThunderMusic at 1/11/2006 4:20:03 PM
Hi,
I have a service which is only a server for some objects the user can
instanciate and call.
Right now, the service starts and then stops automaticaly. The only line of
code I added is in the OnStart event and is
"RemotingConfiguration.Configure(configfile)". So I guess the service ... more >>
exception when using remoting
Posted by ThunderMusic at 1/11/2006 4:01:31 PM
Hi,
I'm using remoting in my app and when I call a method from my objects, I
receive the following exception :
/* **** Beginning of the stack trace ****
"No connection could be made because the target machine actively refused it"
Server stack trace:
at System.Net.Sockets.Socket.Connect(En... more >>
.NET Remoting within a web page
Posted by ThunderMusic at 1/11/2006 10:55:38 AM
Hi,
I have to use .NET remoting in my web application. I'm not familiar at all
with this in a web page. I've used it a lot in Windows Applications
thought... What I would like to know is : Where do I put my
"RemotingConfiguration.Configure("client.config")" line? is putting it in
the Form_Load... more >>
Remoting 2.0 encryption options
Posted by Ken Ross at 1/11/2006 9:11:01 AM
I had read in the early Whidbey press that remoting in the 2.0 framework
would support SSL "natively" but since the release I've not been able to
find any mention of this. Everything I can find seems to point at using a
custom channel link with "home rolled" SSL or other encryption.
In my c... more >>
Serializing problem
Posted by Vitali Z at 1/10/2006 7:23:39 PM
Hi,
I have a problem with serializing class in .NET Framework 1.1. During a call
to remoting object with serialized parameter, I catch the error message:
"Because of security restrictions, the type
ContactCenter.ExceptionsServices.ExceptionMessages cannot be accessed"
The class ContactCenter.... more >>
COM+ or Web Service?
Posted by ThunderMusic at 1/10/2006 4:52:59 PM
Hi,
I have to connect to a distant DLL (.NET DLL) and I would like to know
which of the COM+ or Web service is the best... What are their pros and
cons? I absolutely don't know how COM+ works, so that's why I can't really
compare.
I've seen on the web many people are having trouble us... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Still don't understand remoting.
Posted by UJ at 1/9/2006 1:41:18 PM
I've posted a couple of messages asking how remoting works in that I have a
client that I want to send a message to a server saying 'Go ahead and access
the file.'
Would a named pipe work just as well? All I need to do is send a message
saying - Go for it!
I haven't been able to get a cl... more >>
Unknown clients
Posted by Ryan at 1/9/2006 1:56:50 AM
I'm creating a C# 2.0 client-server app that will have clients running on
unknown machines.
I'm sure it's possible, but I have yet to see an example of using an
encrypted tcp remoting channel in such a situation.
Would someone please be as kind as to point me to some code for both the
cli... more >>
|