all groups > dotnet remoting > september 2005 > threads for september 15 - 21, 2005
Filter by week: 1 2 3 4 5
problem with RemotingConfiguration.Configure
Posted by Morix at 9/21/2005 12:00:00 AM
I all.
Here's my code:
---
RemotingConfiguration.Configure("myapp.exe.config");
---
The file myapp.exe.config resides in the same directory of myapp
executable and is as follows:
---
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<application n... more >>
Timeout Problem
Posted by Hakan Cicek at 9/20/2005 5:33:06 AM
When the target machine is shut down or network cable is plugged off the
timeout duration is very long..it takes too much time to application
understand the host is unreachable.Are there any way to shorten this time.... more >>
Exceptions Being Masked
Posted by Brad Quinn at 9/19/2005 1:29:03 PM
I asked this question in dotnet.framework.aspnet, but I guess it's really a
remoting question.
My web application communicates with my application layer using tcp/binary
remoting.
I've just started testing in a new datacenter. The network infrastructure
is completely new, or at least ... more >>
strange... Singleton object, but 2 different fields
Posted by David Krmpotic at 9/17/2005 12:00:00 AM
Hello,
I have a simple app with server (a bunch of singletons) and clients that
connect to it.
Each client gets a unique ID (some integer) upon connection and then pings
the server regularily with it.
if there is no ping for some time, server concludes that client has died
(freeze, reboot) a... more >>
When does IIS instantiate a remoting singleton?
Posted by Microsoft at 9/17/2005 12:00:00 AM
Hello,
I need a server process that does stuff continually in the background. It
also needs to allow some of it's methods to be called remotely. I tried
writing a remotable object and hosting it in IIS. The object starts a
background thread to do the background stuff. Everything seems t... more >>
How does a tcp channel get it's ChannelName property set?
Posted by RJ at 9/16/2005 4:11:34 PM
I do RegisteredChannels and diplays the ChannelName of the only IChannel
object returned. The name is "tcp"? This doesn't seem to uniquely define
one channel. How can you detect if a specific channel ( by name or by port)
is already registered?
TIA RJ
... more >>
How to find a list of appdomains in the main process domain
Posted by Hank at 9/16/2005 3:43:23 PM
Hi,
I have client and server.
First client calls server, server uses the factory pattern to create a new
domain "newDomain" and object from the domain "newObject".
At certain point, after using the newObject, client need to call server to
dispose the newObject and unload the newDomain.
I tri... more >>
Return Object Twice from a Remote Call.. Possible ?
Posted by ShiTvm at 9/16/2005 12:00:00 AM
Hi Group,
I have situation where a call from client retrieves an object from remote
server which contains a collection of child class. Some times the child
class collection will grow to tens of thousands.
When the child collection grows, the client need to wait for a longer time,
inorder to... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problem Destroying and Recreating Remoting Object
Posted by raedwa01 NO[at]SPAM gmail.com at 9/15/2005 12:09:06 PM
I have created an object that inherits MarshalByRefObject and
implements IObjectHandle for remoting purposes. I wrote a client that
connects using code like this:
Dim myRemObj as IObjectHandle
RemotingConfiguration.Configure(AppDomain.CurrentDomain.BaseDirectory +
AppDomain.CurrentDomain.Fri... more >>
How to pass a MarshalByRef object as a parameter in a remote metho
Posted by Romain at 9/15/2005 11:44:05 AM
Hi,
I want to write a method of a remote object that expects another type of
MarshalByRef object as a parameter. When I run it, I get a SecurityException,
but I don't undestand why.
Let's say the AvSession object is registered as a client-activated object.
It has the following method: Av... more >>
Lease renewal requests stop after several (maybe 5) minutes
Posted by Bob L. at 9/15/2005 10:09:39 AM
Hi everyone,
I have created a CAO (VS2003) and I am overriding the
InitializeLifetimeService method to set the InitialLeaseTime. On the client
side I register a sponsor and again set the renewal time to the same time as
the object. If I set the lease/renewal time to 6 minutes, I never get a
r... more >>
Need ref. to mobile code
Posted by Anders Jacobsen at 9/15/2005 9:50:22 AM
Hey
Within the next months i am to determine my research topic. I know i want to
look into mobile code. With mobile code iImean code that can travel between
computers over a network. Not PDA applications and soforth.
My general idea is to some how serialize the call stack and send this and... more >>
Remoting - Attempted call method declared on object exposes...
Posted by Ken Beard at 9/15/2005 4:27:06 AM
Here is the message I'm getting...
"Attempted to call a method declared on type AttachmentClass.Attachment on
an object which exposes AttachmentClass.AttachmentFactory."
Now some back ground...
I have one application deployed using the AttachmentClass.Attachment Remotly
but I didn't use i... more >>
|