| Thread | Last Post | Replies |
|
| Event when ILease expires (for a MarshalByRefObject) | 14 Feb 2005 09:04 GMT | 3 |
I had posted this earlier on C# forum. This seems like a more appropriate place for this question. ---------- I have a wellknown singleton service object, which accesses unmanaged
|
| Winforms over LAN and Internet - Best approach? (WS, Remoting, etc) | 14 Feb 2005 03:48 GMT | 11 |
I am starting a project that may be suitable for vb.net, using windows forms. I want a rich client, thus win forms vs web forms. Most users will access the app data over a LAN, but some will be remote users, accessing via vpn. I could use terminal services for this but am
|
| Factory and object reference problem | 13 Feb 2005 20:21 GMT | 2 |
After having uncomprehensible problems with remoting, I drilled down the the simple example in Ingo Rammer's Chapter3 "ClientActivatedViaFactory". My problem is still there... When I run both server and client on the same machine, everything works
|
| References to server | 12 Feb 2005 13:19 GMT | 2 |
I'm not absolutley sure how references in Remoting will persist. My server object is a singleton. Let's say I have two server methods (extremely simplified for this question):
|
| Separate AppDomain | 11 Feb 2005 22:33 GMT | 6 |
I have an SAO that hosts many CAOs running in their own AppDomain. Per client request [for a new CAO], the hosting SAO will create a new AppDomain and create the request CAO within this new AppDomain; then, return the CAO to client. I do this so I can later unload CAO's assembly ...
|
| WSH and ASP.NET | 11 Feb 2005 17:24 GMT | 1 |
I'm trying to run a remote script using WSH script. When I run the script from the command prompt, it work fine. Tracing the task manager, when the script run from the command prompt it use the my user account. I trying to run the script from an ASP.NET page using a system ...
|
| How to ensure that port is unused? | 11 Feb 2005 11:41 GMT | 3 |
How can I ensure that a port is unused? I know I could catch the exception if the port is used and try another one, but in that case how can the client know in which port Iam
|
| Common Component Deployment Options | 10 Feb 2005 20:32 GMT | 1 |
I have a common component that will be used from many applications in my organization. There are different ways to host that component, such as: (1) As COM+ application on a server (2) As a shared assembly in GAC on every machine
|
| TcpServerChannel - doesn't seem to exist? | 10 Feb 2005 00:31 GMT | 1 |
I am trying to create a simple test server activated object. In the source code I have... ChannelServices.RegisterChannel(new TcpServerChannel(8085)); But the compiler cannot find the TcpServerChannel class (nor HttpChannel). I
|
| Architectural Question on Remoting and UI Integration | 09 Feb 2005 15:42 GMT | 3 |
I have an architectural question concerning the integration of UI elements from one application domain into another. The context of the question is related to dynamically loadable/unloadable plugins which contain UI. While it is possible to load and interact with forms belonging ...
|
| Scalability of a singleton remote object | 09 Feb 2005 13:39 GMT | 2 |
My RemoteServer is a singleton remote object hosted by windows service and accessed by ASP.NET application using remoting,server activated Basically my RemoteServer need to send several email message types,and it
|
| Is there a safer way without using typeFilterLevel=Full? | 09 Feb 2005 01:57 GMT | 2 |
Is there a safer way without using "typeFilterLevel=Full" to work with events/delegates? Without this configuration as you know there are a lot of security problems arise... My question implies those cases.
|
| Singleton heartbeat monitoring | 08 Feb 2005 22:45 GMT | 5 |
i have a windows service 24/7 should be on. i want to get a heart-beat info each second from the server. server would update a singleton object's property each second to DateTime.Now. if the health-notifier client which checks the heart-beat property of the mentioned singleton ...
|
| Getting IIS Code base directory | 08 Feb 2005 21:12 GMT | 1 |
I'm in the situation where I want to get the absolute path of IIS code base directory (i.e. typically <website name>\bin ), without passing the website (virtual directory) name. As the default current directory (or working directory) for the IIS is "C:\WINNT\system32\inetsrv", ...
|
| Are Remoting and Web Services equivalent? | 08 Feb 2005 16:54 GMT | 7 |
I'm currently exposing some methods via HTTP/SOAP remoting. Someone recently asked if I could expose these methods as a "Web Service" and I wasn't sure how to answer. Is remoting using HTTP/SOAP the equivalent of a web service? If not, how do the two concepts differ?
|