| Thread | Last Post | Replies |
|
| how to deal with an interrupted connection when remoting | 01 Sep 2003 00:20 GMT | 1 |
I have created a server that has an object that can be referenced via remoting. When I reference the object from the client, everything works just fine until I shut down the server. Once the server is shut down, and at the exact moment it stops listening on its port, the client ...
|
| Where is my object executing? | 01 Sep 2003 00:14 GMT | 1 |
Problem: I am serializing an object to the client, no problems there. However, during parts of the object's execution the object needs to know if it is running on the client or
|
| Copy file from server to client | 31 Aug 2003 10:34 GMT | 1 |
I want to copy a file from Server to Client . I am using .net remoting. I want to copy a .mdb file from server machine to local client machine. How can it possible . Thanks .
|
| Hooking RealProxy/Identity Creation | 30 Aug 2003 02:01 GMT | 1 |
I've got a slight problem - does anyone have any suggestions? I have a server with a few potentially long-lived clients. Each client maintains a large number of long-term
|
| Need an Example | 29 Aug 2003 21:37 GMT | 1 |
All- I've found a few .net remoting examples online (and in msdn), but they all use console apps as their example where they start the server part on the server in a console and then run the client.
|
| Remoting errors: "(405) Method Not Allowed", and "Requested service not found" | 29 Aug 2003 19:41 GMT | 2 |
I cannot get any remoting examples to work across a network (LAN intranet). If I use TCP, I keep getting "Requested service not found" error whenever accessing a method or property on the remote object. When I switch it to a HTTP on an IIS virtual directory, I keep getting
|
| Memory Grow Returnig DataSet | 29 Aug 2003 12:15 GMT | 1 |
My singleton server object has a method that creates and returns a big dataset to a client application. Although the server doesn't have any reference to dataset after returned it, the server memory grows and doesn't
|
| Are XmlDocuments Serializable??? | 28 Aug 2003 18:49 GMT | 1 |
I thought I could just return an XmlDocument from my Remote Server but I am getting an "Internal Server Error" message. I think the code is good. The only thing I can come up with is maybe XmlDocuments are not serializable.
|
| Why is Remoting better than Sockets ? | 28 Aug 2003 18:39 GMT | 1 |
Why is Remoting better than Sockets ?
|
| Remoting calback | 28 Aug 2003 18:34 GMT | 1 |
Does anybody have a simple Remoting calback sample?. Thanks.
 Signature Manuel de Jes?s Escobar D?az Laboratorio Nacional de Inform?tica Avanzada, A.C.
|
| Why client require access to remotable obj & business obj's | 28 Aug 2003 17:59 GMT | 2 |
I'm new to remoting. I have written a remotable object that makes use of a business object. What I have found is that I need to copy both the remotable object along with the business component out to the client in order for
|
| serverProviders and WSDL | 28 Aug 2003 13:28 GMT | 1 |
I've noticed something interesting: if I configure a remoting server in code like HttpChannel Channel = new HttpChannel(8088); ChannelServices.RegisterChannel(Channel);
|
| .Net Remoting vs Web services | 28 Aug 2003 03:08 GMT | 8 |
I heard from my boss: That .Net Remoting is not a recommended solution for any environment that is not high speed LAN. In other words, that any recommended remote communication for slow wan,
|
| Best way to convert byte array (from TCP socket) to C# Object? | 28 Aug 2003 01:45 GMT | 3 |
Basically my situation is this, I have a server implemented in C++, unmanaged code, using proprietery protocol over TCP/IP to communicate with the cilent(c++ also). Now, I am implementing the another client in C#. Server side can not
|
| Passing Types without dll | 27 Aug 2003 15:50 GMT | 8 |
Is there any way to do remoting and pass a type that is defined separately (but identically) in both the server and the client instead of having to have them share a dll between them? Thanks,
|