| Thread | Last Post | Replies |
|
| Multiple Remote Objects | 21 Jul 2004 16:31 GMT | 2 |
Tue. July 20, 2004 10:30 PM PT Is it possible to host more than one remote object on one server? On one channel, but with different URI. Appreciate your answer.
|
| can a remotable object call the methods of the host? | 21 Jul 2004 16:04 GMT | 1 |
For example, I have Windows Form application hosting a remotable object. And I want the hosted remoted call a function after the remote client called the it.
|
| Bug in IIS hosting of Remote Objects? | 21 Jul 2004 15:26 GMT | 4 |
I have a Singleton Remoting Object hosted inside IIS. It has a sponsor in a Windows Service that renews the lease. So as long as the Windows Service is running I expect the remoting object to stay within scope. However I find that it is not the case. The Singleton object goes out
|
| SAO objects (single call) hosted in IIS 6 seem to "die" after a while? | 21 Jul 2004 08:08 GMT | 3 |
I have a set of SAO (single call) objects hosted in IIS 6 on 2k3, communicating over an HTTP channel from the client. The application runs really well as long as I keep the application "busy" on a regular basis. That is, it runs well as long as I click on something that requires a ...
|
| The channel tcp is already registered... error | 21 Jul 2004 06:48 GMT | 1 |
I get this error: "The channel tcp is already registered" when trying to do the following: _chanTCPOut1 = new TcpChannel(7001); ChannelServices.RegisterChannel(_chanTCPOut1);
|
| 6 steps to .NET remoting | 20 Jul 2004 13:09 GMT | 5 |
Well its been two weeks and I now have my .NET remoting prototype working completely. Along the way I was able to codify the 6 steps necessary for getting a .NET remoting project to completion. 1. Enthusiasm
|
| Getting an object reference from the Server ON THE SERVER??? | 20 Jul 2004 00:04 GMT | 5 |
I'm starting to think this is not possible.... I've got a Singleton remote object created/registered. I can access the object, modify data, etc., to my hearts content, just as long as I access it from a remote machine.....THIS MAKES REMOTING relatively useless for me.
|
| another remoting issue | 19 Jul 2004 22:18 GMT | 1 |
Suppose I have a class from a class library that opens a database connection. I reference this class in both my server code and my client code although it is only called within the server code. For some reason, my client seems to want to open the database
|
| firewall problems....I think? | 19 Jul 2004 19:33 GMT | 4 |
Okay, I'm trying to get a simple remoting example application working. I have two computers hooked up to a router/firewall and I'm testing out remoting between the two. The server code looks like the following: Imports System.Runtime.Remoting
|
| system messaging at Receiver end | 19 Jul 2004 15:56 GMT | 1 |
Dim ds1 As DataSet Dim myMessage As Message Try myMessage = msgQ.Receive()
|
| Configuration File and CPU usage | 19 Jul 2004 15:52 GMT | 1 |
Sat. July 17, 2004 10:15 PM PT I am using a COM+ object, which returns just a DataSet, a very common scenario, ahha! I host this object into the Remoting server, works fine, but when I use Configuration file, on Server side, then my CPU usage is 100%,
|
| MsWord VBA Client To Com Server To .Net Remoting - UnFamiliarType err | 19 Jul 2004 15:49 GMT | 1 |
we have Ms Word XP, we have to automate word to start a C# application. we coded a C# dll as a COM server and the COM Server calls to the server application .Net written with remoting over tcp.
|
| Interoperability | 19 Jul 2004 15:37 GMT | 2 |
I keep seeing that a SoapFormatter is ideal for communication between applications that use incompatible architecture, whereas BinaryFormatter can only be understood by .NET applications. How exactly does the SoapFormatter provide interoperability when it is a
|
| run batch file | 19 Jul 2004 15:37 GMT | 1 |
In Web Application coded with C# I need to run batch file that stored on remote machine. There is the client uses the application from one machine,web application stored in second machine and batch file that I need to run is stored on
|
| Can I pass a CAO to an SAO? | 19 Jul 2004 15:33 GMT | 4 |
Is it possible to pass on ObjRef that I have obtained for a CAO to an SAO to use as a parameter in a procedure or function? Do I have to control the marshaling of this parameter or will .NET be able to handle it? Thanks, Sam
|