Re: Connection(less) to a remoting server
- From: "John Timney \(ASP.NET MVP\)" <timneyj@xxxxxxxxxxxxx>
- Date: Sat, 2 Jul 2005 22:13:26 +0100
> So, when I declare a Remoting server as below, is that then similar to a
> web server?
Technically - yes, in that it binds to a port and listens for traffic on
that port
> So, it's running a disconnected protocol, http?
no, http traffic negotiates a connection before submission occurs, it is
therefore a connected protocol - udp would use disconnected. The protocol
negotiates between your client to the remoting server - thats why http over
tcp is slow and reliable and udp is fast and unreliable. It is disconnected
in that no permanent connection (like a mapped drive type of connection) is
put in place - only that neccesary to handle the traffic between the two
components for the duration of that request and response.
>
> And when I remotely raise an event on the client -- is that message sent
> with http?
>
> <channel
> ref="http"
> port="8080"
> machineName="192.168.1.172"
>
yes
Regards
John Timney
ASP.NET MVP
Microsoft Regional Director
.
- Prev by Date: Re: CanDeserialize() implementation details
- Next by Date: Re: Remoted object reference dies unexpectedly
- Previous by thread: Static Sink to Concrete Instance ? ? ?
- Next by thread: Re: Remoted object reference dies unexpectedly
- Index(es):
Relevant Pages
|