Remoting Question
-
Is there anyway for me to update a client app about how fast the download is going, how far along it is, using .Net remoting. I know when i used sockets, i could detect how large the file wise and divide by the currently downloaded bytes *to get the current download percent* is there a way to do this in Remoting, since the bytes and underlying information is *seemingly* hidden. Thanks you. Jesse The Code Project Is Your Friend...
-
Is there anyway for me to update a client app about how fast the download is going, how far along it is, using .Net remoting. I know when i used sockets, i could detect how large the file wise and divide by the currently downloaded bytes *to get the current download percent* is there a way to do this in Remoting, since the bytes and underlying information is *seemingly* hidden. Thanks you. Jesse The Code Project Is Your Friend...
Jesse, Remoting is intended to be a replacement for DCOM. As such it supports remote method calls but it is not intended for downloading files. That is why the data is 'seemingly hidden'. Michael This signature left intentionally blank