all groups > dotnet remoting > july 2003 > threads for july 22 - 28, 2003
Filter by week: 1 2 3 4 5
Problem with simple remoting example
Posted by Volkan Arslan at 7/28/2003 5:59:27 PM
I am trying the sample remoting application "hello" from the quickstart
"Microsoft Visual Studio .NET
2003\SDK\v1.1\QuickStart\howto\samples\remoting\hello" under Windows XP
and .NET 1.1. The applications (server.exe and client.exe) work fine on
same machine, but when I put the server.exe on ano... more >>
IIS acting as client - can't get configuration to work
Posted by Thomas N. Sørensen at 7/27/2003 10:55:22 AM
Hi,
I have built a broadcasting example (based on the Broadcasting example in
Ingo Rammer's book "Advanced .Net Remoting").
I can get everything to work, when the listeners receiving message events
are Console applications, but when I'm trying to let an IIS site register as
listener it fails.... more >>
Proxy question
Posted by Ron Bullman at 7/27/2003 1:27:15 AM
Hi,
Consider following scenario:
I have a host.exe-assembly (host), functionality.dll-assembyly
(functionality), and a client.dll-assembly (client). Host and client
"imports" statically functionality. (But host doesen't "import" client).
From the host I'm dynamically loading the client to oth... more >>
Accessing 'subclasses' with remoting
Posted by jeff at 7/24/2003 3:37:47 PM
I am trying to set up a server to an existing C# program
using remoting. The program has a top level class and with
subclasses, and when I instatiate an object of the top
level class, call it MyClass, it caches about 200megs of
data. Much of the functionality I need at the client side
involves ... more >>
MarshalByRefObject superclass
Posted by bodegax NO[at]SPAM yahoo.com at 7/24/2003 1:34:34 PM
I have a question about whether it is possible for .net remoting to
distinguish between two subclasses that are both dervied off a
superclass that is derived off a MarshalByRefObject. For example, I
have the following classes:
Object2 : Object1
Object3 : Object1
Object1 : MarshalByRefObject... more >>
Is anybody using Genuine Channels?
Posted by sfarley NO[at]SPAM objectvideo.com at 7/23/2003 8:06:14 PM
Hello,
Is anybody using the Genuine Channels product that has been
recommended on this newsgroup by its author? If so, does it work as
advertised without requiring source code modification? Did it solve
your problem?
I am interesting in using .NET event callbacks from server to client
an... more >>
Is it possible to host several remote objects using one host?
Posted by Konstantin Vyaznikov at 7/23/2003 2:51:46 PM
Hi,
I cannot find information of how to host several remote objects (assemblies)
by one host application
(let's say by Windows service)?
Is it possible at all? Or I should have separate host application for every
object?
Thanks,
Konstantin Vyaznikov.
... more >>
The Stability of events across machines
Posted by Roger Rong at 7/23/2003 8:46:48 AM
After reading Ingo Rammer's article about the remoting best practice
(http://www.ingorammer.com/RemotingFAQ/RemotingUseCases.html), I am a little
bit worried about what I'm doing with one the remoting apps, because it will
break more than one these rules, especially about using events/call back
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Ingos CompressionSink and .Net 1.1
Posted by Martin Klauck at 7/23/2003 7:28:09 AM
Hi NG,
I tried to implement the compressionsink-example of Ingo Rammer.
the client-app.config-file looks like that
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="soap" typeFilterLevel="Full" />
<formatter ref="binary" typeFilterLevel="F... more >>
Notifying Clients - Events or Observers?
Posted by mcurry NO[at]SPAM lortsmith.com at 7/22/2003 5:52:33 PM
Hi,
Am getting very confused with remoting. We are building a large data
management application which uses a Server application to load light,
serialized objects on a client. eg:
Dim myPerson as Person
iPersonID = 1
myPerson = PersonFactory.Load(iPersonID)
myPerson.Name = "Fred Jones"
Pe... more >>
Maximum connections to http server
Posted by Raghu Rudra at 7/22/2003 4:49:06 PM
By default, the machine.config contains following information:
<system.net>
.......
<connectionManagement>
<add address="*" maxconnection="2"/>
</connectionManagement>
</system.net>
This limits the number of connections to web server to 2. For e... more >>
Problem returning array of COMTI structures from remoting server to client
Posted by mcinerneyed NO[at]SPAM russellcorp.com at 7/22/2003 12:54:19 PM
Computer gods,
My direct problem is that I'm getting this error message back from my
remoting client, indicating the an error on the remoting server:
-----
System.Runtime.Remoting.RemotingException: Server encountered an
internal error. For more information, turn on customErrors in the
se... more >>
|