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:
Is it a good design practice to distribute the implementation to
Is it a good design practice to distribute the implementation to Remoting Client ?
✍: Guest
Itfs never advisable to distribute complete implementation at client, due to following
reasons:-
ã Any one can use ILDASM and decrypt your logic.
ã Itfs a bad architecture move to have full implementation as client side as any
changes in implementation on server side you have to redistribute it again.
So the best way is to have a interface or SOAPSUDS generated meta-data DLL at client
side rather than having full implementation.
2007-10-23, 4734👍, 0💬
Popular Posts:
How do I use a scriptlet to initialize a newly instantiated bean? A jsp:useBean action may optionall...
How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques t...
Can you explain project life cycle ? Figure :- 12.2 Life cycle of a project There are five stages of...
How Can we change priority & what levels of priority are provided by Dot Net? Thread Priority ca...
How can we implement singleton pattern in .NET? Singleton pattern mainly focuses on having one and o...