all groups > dotnet remoting > august 2006 > threads for august 1 - 7, 2006
Filter by week: 1 2 3 4 5
MemberwiseClone of a MarshalByRefObject
Posted by Robert Ludig at 8/4/2006 7:08:51 AM
When I call MemberwiseClone on an object that is a MarshalByRefObject
that is currently marshalled I do not get a a "true" copy of that
object but instead I get an object with the exact same proxy so the
"clone" will share its identity with the original object and remote
calls on a proxy to the ... more >>
How to use event in Remoting (VB2005)?
Posted by Eternal Snow at 8/4/2006 12:00:00 AM
I wanna create a remoting solution to transfer a event from server to
client. My code are below:
////// Interface /////
Public Interface ISample
Event result(ByVal sum As Integer)
Sub sum(ByVal a As Integer, ByVal b As Integer)
End Interface
///// Interface End ///
///// Ser... more >>
Fast streaming via Remoting
Posted by victor at 8/4/2006 12:00:00 AM
Hi,
Is it possible to do fast data streaming, for example displaying
images with a pace of 15 or 30 frames per second, thru a
Remoting-TCPIP channel?
(Images can be 512x512 or 1Kx1K).
Thanks, victor... more >>
Object references in a Mashal-by-Value object
Posted by Matthias Heise at 8/3/2006 3:33:02 AM
Hello,
I discovered some problems if I want to serialize and transfer an object
hierarchy existing of next and child pointers.
Doing this I had to implement the ISerializable interface. Lets say I have
the following class:
public class Test : ISerializable
{
[NonSeri... more >>
Some methods hang on certain setups.
Posted by Michael Maes at 8/3/2006 12:16:02 AM
Hi,
We have a windows service passing objects to a client application by
remoting.
The windows service is started and running successfully.
* When the client app is running on the same machine as the windows service
(W2K3) every method gets executed successfully.
* When the client app ... more >>
What is wrong about RemotingException
Posted by Günter Prossliner at 8/2/2006 5:29:31 PM
Hi!
Why does MS make it impossible to handle RemotingExceptions? I use a
IpcChannel for IPC Communication. On the server side I want to know when a
client has been "hard" disconnected (e.g. Process has been killed). Because
I use two way communication, it is no problem.
example:
try{
... more >>
TcpChannel secure mode
Posted by Daren Terry at 8/2/2006 3:06:35 PM
I am trying to find out the secure option in the TcpChannel works. I have
read that it can provide encryption of the data. If so what algorithm does
it use?
Cheers
... more >>
Remoting & DataReader
Posted by Isabel_ve at 8/2/2006 7:47:02 AM
Hi,
I've written a windows-service and a client-application. Via Remoting I'm
executing some methods of the remote-object.
Some methods are using a DataReader (Odbc), to read data from a system
dsn-connection.
Some remoting specifications:
Client and Server Channel are both Tcp
ServerC... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Remoting, SOAs and HTTP Keep-Alives
Posted by Oisin at 8/1/2006 2:59:37 PM
Can anyone in MS tell me (and no doubt many others on this newsgroup)
why Microsoft's implementation of the HttpClientChannel doesn't allow
you to enable/disable Http KeepAlives via the client side ('connection:
close' header)?
1.0, 1.1 and 2.0 's internal HttpClientChannelSink class's const... more >>
|