all groups > dotnet remoting > august 2004 > threads for august 8 - 14, 2004
Filter by week: 1 2 3 4 5
return time when error in remoting call
Posted by dxslyz NO[at]SPAM lycos.de at 8/14/2004 4:23:18 AM
Hi, there,
is there some methode to cut the time of response time when the remote
server is down ? I mean, when the client called a downed remote
server, it takes more than 10 seconds to return with error code, or
the error to be caught.
I have an application which should respond in 2-3 sec... more >>
cast succeeds on proxied object when it shouldn't
Posted by frank.colbert NO[at]SPAM timberline.com at 8/13/2004 3:09:46 PM
I have a curious case where the "is" keyword seems to be incorrectly
succeeding on a remote object (TransparentProxy). I am wondering if
this is a known issue? Here is my scenario:
I create a SAO (singleton) via the Activator object. This is working
correctly as I am able to cast the object... more >>
Accessing "Server" Win Forms Application from Server Class
Posted by Alex Maghen at 8/13/2004 11:07:01 AM
Hi. I've built the exact example given in the KB-307445 and related articles
(Creating a remote server in C#.NET). Everything works great. Now here's
where I need some help:
In the examples, they say to build a DLL which contains the "ServerClass"
(that which will be accessed by the client ... more >>
Remote connection error after a client crash
Posted by le_khan NO[at]SPAM yahoo.fr at 8/13/2004 3:21:31 AM
Hi NG
I'm using .net remoting in my server / clients app.
It works quite well.
But...
When a client crashes (still some bugs in my code...), the connection
is lost for the other clients too.
I mean that some remote objects on the server are not available
anymore
I don't understand how ... more >>
Accessing server resources from remotable object
Posted by sprungli at 8/11/2004 11:37:39 PM
In a remotable class I have to persist the content of a DataSet to a disk
file. The file resides in the remoting host, a web application in IIS.
However, the WriteXml method of the DataSet does not support URI formats, so
I cannot use something like:
ds.WriteXml(@"http://MyServer/MyHost/MyFile.x... more >>
Remoting and EventArgs (not a MarshalByRefObject)
Posted by Phil Jones at 8/11/2004 2:17:30 PM
I'm attaching to an event on a remote object. The problem is, if I declare
the event in a manner consistent with the .NET framework design guidelines
it's got to have the "e" parameter derive from [System.EventArgs]
But the [EventArgs] doesn't inherit from [MarshalByRefObject] and causes a
se... more >>
The channel tcp is already registered
Posted by raagzcd NO[at]SPAM yahoo.com at 8/11/2004 4:01:43 AM
Hi ,
I have a remoting host running as an windows service.
The remoting host is listening on port 8001
and on the client code i have the following lines of code.
TcpChannel channel = new TcpChannel(8002);
ChannelServices.RegisterChannel (channel);
when i run my application i get... more >>
Client To Client ?
Posted by Tiraman :-) at 8/10/2004 9:00:01 PM
Hi,
how can I send message from one client to another without sending the
message first to the server ?
Thanks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
HTTP with binary
Posted by Alok at 8/10/2004 7:23:53 PM
Hi,
Can somebody tell me how to configure the Activator.GetObject() for an Http
Channel with binary formatter.
I am not sure what value are to be passed.
TIA :)
... more >>
.net remoting Performance Issue (Urgent)
Posted by Yirong at 8/10/2004 7:01:02 PM
Hi,
I developed a windows service as host program. The client application
triggers remotable object. (.net remoting architechture) The remotable DLL
calls another COM DLL which calls a DLL to do much calculation (on the server
side). The calculation speed is dead slow (40s). If I use local pr... more >>
remoting & security.
Posted by r at 8/10/2004 6:41:01 PM
I have a client proxy which accesses a remote server object, both on the same
network domain. How would i get details of the client authentication
information (login/role) at the server ??
Would this be passed across with the remote call or i need to explicitly
send it across & extract ???
... more >>
Connect to server throught firewall Problem
Posted by Geni at 8/10/2004 4:59:14 PM
Hi, All
I has write client/server application using Net Remoting.
I use remote objects based on factory.
I have a firewall.
When a client from internet is connecting to server, It take a remote object
with _channelUri == local IP addres on my server, not IP on my firewall.
Is there a kind... more >>
No receiver registered
Posted by Sylvain Ross at 8/10/2004 4:35:21 PM
Hi,
I'm having a weird problem here.
Here it is :
I got a kind of master/slave system.
My master class publish it self with the folowing :
RemotingServices.Marshal(Me, "UplanPowerstackServer", Me.GetType())
My slave class publish it self like this :
RemotingServices.Marshal(Me, "U... more >>
Raise event For all clients
Posted by JAS at 8/10/2004 2:25:24 PM
What is simplest way to raise event for all client i n s t a n c e s?
Is Remoting the right way to happiness ; )
eg.
'Dll Events
Public Event onMessageReceived(strMessage as string)
'Dll methods
SendMessageForAllClientInstances(ByVal strMessage as string)
RaiseEvent(onMessageReceiv... more >>
Advice wanted: Suitability Of Remoting For Implementing Windows Service Admin
Posted by ian.taite NO[at]SPAM zen.co.uk at 8/10/2004 7:54:07 AM
Hi,
I need to provide an admin interface to a Windows Service and I am
considering hosting a .NET Remoting component in a separate thread of
the Service for this purpose, with the intention that a client could
make calls on the Remotable object to observe and control the service.
I imagine I'... more >>
Send event to specific client
Posted by John at 8/9/2004 10:37:28 PM
is there a way to send event from the server to specific client? i expose
remote methods using interface. thanks
... more >>
Problem adding to remoted object.
Posted by Carl Gilbert at 8/8/2004 11:59:44 PM
Hi
I have a remoted object and I am trying to add to a hash table on the
object.
I have set up a temporary hash table to which I am adding items, however
when I try to add to the remoted object, its seems to fail somehow. The
following code show what happens.
debug.writeline(tmpHash.cou... more >>
Client/Server Interaction - works fine on one PC, but on two PC's it dies
Posted by Phil Jones at 8/8/2004 5:10:57 PM
I think this problem is related to my last post [Concept Clarification :
Registering Client on Different Port] - here's happening:
I have an app (based on Sunny's EventWrapper sample) that listens for events
raised by the server. This works fine on one machine - but when I have the
server on ... more >>
Concept Clarification : Registering Client on Different Port
Posted by Phil Jones at 8/8/2004 4:01:48 PM
After doing battle with remoting events, and working through Sunny's "Event
Wrapper" sample I pretty much found the thing which was causing me grief.
That is - the server's channel is registered on one port, and the client
registers a channel on a different port. If this doesn't happen I get o... more >>
Remoting Server does not respond when more than one client connected
Posted by ahmed NO[at]SPAM cuic.ca at 8/8/2004 2:27:25 PM
I have a Remoting server i set up with TCP which works great but when
i leave it running for over 5 minutes it seems to just hang. The
workstation queries the server every 8 seconds. I tried to catch the
exception handlers but unfortunatly none were raised.
Am i flooding the server with too mu... more >>
|