| Thread | Last Post | Replies |
|
| Using an Interface as the argument to a method | 23 Dec 2004 20:05 GMT | 4 |
On the recommendation of this newsgroup, I'm trying to use an Interface as a value object in my remoting application. A Singleton on the server delivers a CAO - my Interface - and I then make some changes and use it in various ways before it's sent back to the server to be saved ...
|
| Asynchronous Remoting and Datasets | 23 Dec 2004 19:41 GMT | 5 |
I build an application with a Client and a Server containing business logic. So I want the client call a ServerMethod (remoting); the server selects data and put the data into a dataset which will be returned back to the client by a
|
| Page not Found in IIS (C# Component) | 23 Dec 2004 18:50 GMT | 2 |
I have a C# component that support remoting, I have everything set up and it work on an IIS server. But yesterday I copy the component to another machine with IIS just installed (all settings stay default), then when I go to
|
| Security Problem with Remoting??? | 23 Dec 2004 12:06 GMT | 3 |
I have a pair of functions that I'm calling using remoting - called readfile and writefile. The readfile works fine when called from the client PC. The writefile method returns an error:
|
| Singleton multi-client performance | 23 Dec 2004 01:32 GMT | 7 |
I have a singleton object that will potentially be accessed by many hundreds of clients. While the frequency of calls to the server won't be all that frequent, some of the calls could take some time. My question is... by default, does the server object process all of the
|
| debugging remote object | 22 Dec 2004 19:05 GMT | 1 |
I have a remoting object but can't seem to debug into the calls, I've tried with the object running in the one instance of VS with multiple start up projects, or in another instance, if I go to processes the process is already grayed out so VS has attached to it, but it still ...
|
| Why my remoting app works via local network and does not work via Internet | 22 Dec 2004 16:16 GMT | 1 |
I have a remoting application that is working normally in local network. But when i am trying to use it via Internet it does not work. When I call methods for SingleCall and Singleton objects they works normally.
|
| Can't connect to server over Internet | 22 Dec 2004 04:38 GMT | 1 |
I have a remote object that works fine on the LAN but on the WAN it doesn't connect. I tried telnet the port and it seems to connect. I'm using GetObject(typeof(myobject), http://**.**.***.**:1234/MyObject.soap);
|
| Run-time loading assembly on Server RO question | 21 Dec 2004 19:47 GMT | 9 |
I have a SAO that returns an object to remote client's call (MyFactory.GetObject(objectType)). I want to make the server part dynamic and plug-in[able], so I want to be able to load correct assembly file(s) based on the "objectType" STRING that client passes in. Hence, I read ...
|
| Obj Ref from IIS hosted Singleton | 21 Dec 2004 19:29 GMT | 4 |
I have a question regarding IIS hosted Singletons and what happens when the ASP.NET app that hosts the singletons recycles itself after limited use. Scenario I am looking at: ---------------------------
|
| ObjectType is returning null | 21 Dec 2004 18:01 GMT | 1 |
I'm a beginner in remoting, and i'm a beginner with problem !!! The WellKnownClientTypeEntry.ObjectType is always equal to null. Client : This code failed every time try
|
| Tracking Services | 21 Dec 2004 16:14 GMT | 1 |
Good evening people, Been taking my Remoting model to the next level, and have been looking into Tracking Services. Having a remoting model working now, I need to start ironing out bugs and
|
| Get Client IP when Remoting-Server is in IIS ? | 21 Dec 2004 08:41 GMT | 2 |
how do you get the (external) IP of a Client when the Remoting-Server is hosted in IIS ?
|
| Lifetime problem | 21 Dec 2004 00:00 GMT | 1 |
My problem is that my SAO lives only 5 minutes, even though I override InitializeLifetimeService. I create a 2nd AppDomain from my main one to handle remoting server stuff like this: public class MainForm : Form
|
| Re-registering WellKnownClientType objects. | 20 Dec 2004 23:07 GMT | 2 |
Is there a way to un-register a well-known client type. I've been using the [RemotingConfiguration.RegisterWellKnownClientType] to register client objects - but I'm in a situation where I need to re-register the object if the server has changed it's port number. The problem is,
|