Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet remoting > august 2003 > threads for august 15 - 21, 2003

Filter by week: 1 2 3 4 5

Exception when trying to connect
Posted by Fabrício de Novaes Kucinskis at 8/21/2003 2:33:01 PM
Hi all, I have a load balancing app (isn't to a WebSite or WebFarm). In this application, all computer can be a client from, or a server to, another computer in the network. This app has a sort of different objects to manage. Each object provides a service to clients. These objects are...more >>

Change remoting settings without application restart.
Posted by Artem Kliatchkine at 8/21/2003 11:01:29 AM
Hi All, I my client application I register HttpChannel and well known client type. If application settings are changed I need to change connection settings for the channel and a url for the client type. So, I unregister the channel (ChannelServices.UnregisterChannel) and then register it aga...more >>

One channel that listens on mulitple ports
Posted by Raghu Rudra at 8/21/2003 11:00:14 AM
The following article: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/hawkremoting.asp says in the Channels section that: "You can register the same channel listening on two different ports." (Third bullet point) However none of the constructors of either...more >>

Remoted Object Creation Detection?
Posted by Jonathan Hughey at 8/20/2003 9:51:27 PM
Is there any way to tell from the server side when a registered Single Call object is created? I needed to know this for performance tracking of my remoting application. Thank you. ...more >>

remote object being locally instanced instead (behavioral error)
Posted by SEWilson at 8/20/2003 6:02:03 PM
the app config for the service process has: <activated type="DAL.Query.Data.Remote, DAL.Query" /> A client application is creating an instance of this object using either one of the following: Remote remote = (Remote)Activator.CreateInstance(typeof (DAL.Query.Data.Remote)); Remote rem...more >>

Error whit Remoting Events and delegate
Posted by Diego Molina at 8/20/2003 3:20:21 PM
HI all: I have some strange error (use remote events) when register the event: An unhandled exception of type 'System.Runtime.Serialization.SerializationException' occurred in mscorlib.dll Additional information: Cannot find the assembly WinCliente, Version=1.0.1327.20096, Culture=n...more >>

Multiple Servers, One Client and Remoting Events
Posted by sharipastore NO[at]SPAM yahoo.com at 8/20/2003 12:40:46 PM
The goal is to have the identical servers running on several different machines while sending events to one client located on one of the machines. I can get remoting events to work for each server individually, but I'm not sure how to register multiple URLs for each server. I've tried using th...more >>

IIS HTTPchannel + Binary formatter and SOAPSuds.exe client proxy throws type cast error
Posted by Bogdan CIRLIG at 8/20/2003 12:25:32 PM
Hi all, I have some strange cast error (from the same type to the same type) when trying the following: - IIS Hosted remoting app configured as following: ---------------------------------------------------- <system.runtime.remoting> <application> <service> <wellknown mode="SingleCall" t...more >>



Passing Types without dll
Posted by James Hancock at 8/20/2003 11:46:03 AM
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, James Hancock ...more >>

clinet 1.0 <-> server 1.1
Posted by IGor at 8/20/2003 11:02:23 AM
I'm trying to use .net framework 1.1 server with framer 1.0 clients and have some problems. Need to change server to 1.1 (because of some memory problems in 1.0), but changing clients to 1.0 is not an option for a few months at least (too many clients on many locations ~200). Short description...more >>

newbie: Is is possible to implement Remoting through ASP.NET
Posted by ahakim99 NO[at]SPAM yahoo.com at 8/19/2003 4:34:05 AM
Hi Is it possible to implement Remoting through ASP.NET, in particular I would like a remote object to be available to another client (not a web page) when a web page is downloaded. Thus when page.aspx is downloaded I want a remote server object to be created as well as the host. If so how can ...more >>

HttpChannels registering different ports are conflicting in the same app
Posted by Vineet Singla at 8/18/2003 1:27:46 PM
Hi, I am registering 2 HttpChannels in the same app, one without a custom provider and one with. The first channel that has no custom provider overrides the second one and does not let the custom sink be part of the second channel. They are both registering different ports in the same applicati...more >>

Using remoting on a single machine
Posted by Chris.Hughes NO[at]SPAM managesoft.com at 8/17/2003 6:25:25 PM
I wish to expose an interface that multiple processes can call to massage some data into a database. For performance reasons, I wish to preserve LDAP and DB connections across multiple client processes. All calling processes will be running on the same machine as the callee. I considered writi...more >>

Channel problem with framework 1.1
Posted by Ladislav Prosek at 8/16/2003 11:52:45 PM
Hello, I wrote a remoting channel that worked perfectly with framework 1.0. When I switched to framework 1.1, I started to have the following problem. During a remote call when the server throws an exception, no matter what exception it is, on the client side "RemotingException: Server encount...more >>

How to build a simple "push" technology
Posted by Carl Klouda at 8/15/2003 9:42:45 AM
I am struggling to get a couple patches out to some PCs on my network. Basically, this is what I want to do: 1. Push the 2 patches to the machines from my PC (presumably using the Admin$ share on the machines) 2. Install the patches on the remote systems from my PC. Basically... a ru...more >>

Two objectUri's sharing one port
Posted by cgray2 NO[at]SPAM hotmail.com at 8/15/2003 7:37:36 AM
I have a .config file that looks like the following: <system.runtime.remoting> <application> <channels> <channel ref="tcp" port="9999" /> </channels> <service> <wellknown mode="Singleton" type="RemotingHostProcess, RemotingHostService" objectUri="RemotingServiceConfigu...more >>


DevelopmentNow Blog