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 Remoting Client ?
.NET INTERVIEW QUESTIONS - Is it a good design practice to distribute the implementation to Remoting Client ?
✍: Guest
It’s never advisable to distribute complete implementation at client, due to following reasons:-
* Any one can use ILDASM and decrypt your logic.
* It’s 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.
2009-08-26, 4151👍, 0💬
Popular Posts:
1. The basics first, please define the web in simple language? How is it connected with internet? Wh...
How To Control Vertical Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By d...
How To Run "mysql" Commands from a Batch File? - MySQL FAQs - Command-Line End User Interface mysql ...
If we have multiple AFTER Triggers on table how can we define the sequence of the triggers ? If a ta...
How To Set session.gc_maxlifetime Properly? - PHP Script Tips - Understanding and Using Sessions As ...