| Thread | Last Post | Replies |
|
| Shared variables and Remoting | 30 Nov 2003 15:13 GMT | 1 |
I've created a small component to exchange messages between the client and server application and one of its variables/attributes, a hashtable collection containing the message queues for the server and the clients, is shared.
|
| Spy for Remoting - how to do this without console application? | 29 Nov 2003 12:11 GMT | 2 |
I have NET Remoting solution. Application Server is simple console application. In this situation is very easy to use this code in MarhsalByRef classes: console.writeline("Object X created...") or console.writeline("Method X is
|
| Calling SAO or CAO after lease expires | 29 Nov 2003 07:12 GMT | 1 |
I'm reading Miscrosoft .NET Remoting by McLean, Naftel, and Williams. On page 36 they write: "Consider what will happen if a client attempts to make a method call on a remote object whose lease has expired.
|
| Can't catch remote event | 29 Nov 2003 07:00 GMT | 1 |
I have a singleton object that launch an event. In the server I can catch it, but in the client I can't. Server app.config already contains typeFilterLevel="Full" directive and I have copied the client.exe file in the same folder of server.exe file, so the server can find client
|
| concern distributing to client app the assembly with implementation rather than just an interface assembly | 29 Nov 2003 06:57 GMT | 1 |
A concern distributing to client app the assembly with implementation rather than just an interface assembly. The behavior I get is, I turn on the listener, then run the client, and it works fine, I get the result back. However when I turn off the listener, I
|
| COM+ vs. .Net Remoting | 27 Nov 2003 21:21 GMT | 3 |
I'm working on a real-time distributed system. I'm currently using COM+ model. The response times are a bit slower than the what I'm looking for. Is .Net remoring provides a faster solution? Regards
|
| RemotingServices.GetLifetimeService for and Interface. | 27 Nov 2003 19:27 GMT | 9 |
I'm using server activated object via interfaces: ISessionMgr sessionMgr = (ISessionMgr)Activator.GetObject( typeof(ISessionMgr), "tcp://localhost:8082/MyUri" ); ILease serverLease = (ILease)RemotingServices.GetLifetimeService(
|
| Remoting Vs WebServices | 27 Nov 2003 10:00 GMT | 2 |
There seems to be a wide difference in opinions between Remoting and WebServices. I would really appreciate some advice. For building an Enterprise wide app, deployed over the internet, consisting
|
| How much data can go into one remoting call? | 27 Nov 2003 04:47 GMT | 4 |
I have encountered a problem with a function that from the client uploads a file to the sql-server database. The problem arises when the file is a bit bigger. I have noticed that it doesn?t work with a file that is like 5 mb in size.
|
| Because of security restrictions, the type System.Runtime.Remoting.ObjRef cannot be accessed | 26 Nov 2003 15:42 GMT | 4 |
I'm trying to use Remoting to receive notifications from another .NET component. I'm successfully accessing remoted object (created by the server app), but can not pass a reference to my object as a "callback".
|
| Remoting DataSets | 26 Nov 2003 12:34 GMT | 21 |
Is it no longer possible to remote Datasets? Do I now have to use typed Datasets? I searched for articles on this and found some but the message content is no longer available.
|
| Identity when hosting in IIS | 26 Nov 2003 11:30 GMT | 1 |
I have opted to host my remoted components in IIS. I have a slight problem though and I'm not sure the best way of solving it. The problem I have is Identity. One of my server components validates a domain account name using Active
|
| System.Windows.Forms.MdiClient+ControlCollection not serializable. | 26 Nov 2003 10:07 GMT | 4 |
Scenario: --------- I have an Explorer style application. The app hosts other win forms by making them MDI children, removing border /
|
| chat rooms | 25 Nov 2003 21:25 GMT | 1 |
I have a rather stupid question about simple application architecture with remoting. I have coded a simple chat. My remote singleton instance of ChatServer class has an event NewMessageEventHandler NewMsgEvent. Whenever a client
|
| Channels.TCP "cannot found" | 25 Nov 2003 18:06 GMT | 2 |
I am using VS.NET 2003 on XP Professional. .Net Framework SP2 Imports System.Runtime.Remoting.Channels.TCP is marked as a syntax error with the tip: "Namespace or type 'TCP' cannot be found" What should I do?
|