Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is fundamental of published or precreated objects in Remoting
What is fundamental of published or precreated objects in Remoting ?
✍: Guest
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, 5855👍, 0💬
Popular Posts:
How To Enter Microseconds in SQL Statements? - MySQL FAQs - Introduction to SQL Date and Time Handli...
How To List All Values of Submitted Fields? - PHP Script Tips - Processing Web Forms If you want lis...
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
How can I include comments in HTML? An HTML comment begins with "<!--", ends with "-->...