| Thread | Last Post | Replies |
|
| Is Remoting the best architectual solution for this... | 06 Jan 2004 00:01 GMT | 3 |
I have two WinForm apps foo and bar that run on the same machine. foo opens bar (via System.Diagnostics.Process.Start("bar.exe")) foo needs to pass an object (of type System.Data.DataTable) to bar. Is it best to open a remoting channel between foo and bar (with bar acting
|
| .net remoting and multi-threading | 05 Jan 2004 05:50 GMT | 7 |
Is .NET remoting inherently multi-threaded or do we need to implement multi-threading in the remote object? I need to create a dynamic number of Singleton SAOs based on an id passed from a client. Each remote server object will maintain a different list but
|
| Connection to remote COM object works in Windows Forms application but not in ASP.NET application | 02 Jan 2004 14:39 GMT | 2 |
The following code causes "Specified cast is not valid" exception when line 3 executes inside an ASP.NET application. I have tried this with several components. Exactly the same code works if
|
| architecture question | 02 Jan 2004 12:15 GMT | 1 |
I built a small app in C#. I'd like to start distributing it just for fun. I would also like to control its distribution and be able to update some of its dll's. Thus, I'd like to have some of the dll's be downloaded each time the app is run; i.e., I don't want these dll's to ever ...
|
| Remote COM Object | 02 Jan 2004 04:46 GMT | 1 |
I have a 3rd Party COM object that requires it be run remotely on Server "A"). I have a web application that will be running on Server "B" that will need to create an instance of the COM object on Server "A" and execute methods of that object etc...
|
| Multiple request on one port | 01 Jan 2004 21:52 GMT | 2 |
I am trying to get several client apps to upload files to my server app. I am using Networkstreams and Remoting. The Remoting part is working great. I am using Network streams for large binary file transfers. (Let me know if there is an easier way to transfer files in
|
| Serializing an MBV object - failing | 01 Jan 2004 17:11 GMT | 5 |
I'm using a sort of MBR method to MBV a [Serializable] object back to the client: ProductSupport.WorkOrder pswo = ps.CreateWorkOrderObject(); The creation of the object on the server is happening no problems. I can see
|