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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
|