What is fundamental of published or precreated objects in Remoting

Q

What is fundamental of published or precreated objects in Remoting ?

✍: Guest

A

In scenarios of singleton or single call the objects are created dynamically. But in situations where you want to precreate object and publish it you will use published object scenarios.
Dim obj as new objRemote
obj.Initvalue = 100
RemotingServices.Marshal(obj,”RemoteObject”)

As shown in above sample following changes will be needed on server side. RemotingConfiguration.RegisterWellKnownServiceType is replaced by RemotingServices.Marshal(obj,”RemoteObject”) where “obj” is the precreated objected on the server whose value is initialized to 100.

2007-10-23, 5522👍, 0💬