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 are the situations you will use a Web Service and Remoting in projects
What are the situations you will use a Web Service and Remoting in projects?
✍: Guest
Well “Web services” uses “remoting” concepts internally. But the major difference between “web service” and “remoting” is that “web service” can be consumed by clients who are not .NET platform. While remoting you need the client to be .NET compliant. Regarding the speed issue “Remoting” is faster than “Web Services”. So I think when deciding the architecture side of choosing between “Web services” and “Remoting” keep the cross platform issue and the speed issue in mind.
2007-10-24, 4598👍, 0💬
Popular Posts:
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
What is triple constraint triangle in project management ? Project Management triangle is depicted a...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...