What is the difference between XML Web Services using ASMX
and .NET Remoting using SOAP?
Answer / skybeaver
XML web services using ASMX conform to the WS-I basic
profile, which means that it meets certain interoperability
standards.
.NET Remoting isn't implemented with much concern for
interoperability. Services implemented using .NET
Remoting, even if they use an open standard like SOAP as
the transport layer, cannot be consumed by non-.NET clients.
| Is This Answer Correct ? | 1 Yes | 3 No |
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
How to create a comment page in C #??
What is the use of fflush(stdin) in c++?
What is a class in oop?
What exactly is polymorphism?
When is an object created and what is its lifetime?
Why we are use # in begning of programme of c++.
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort
What is the highest level of cohesion?
can we make game by using c
I am DeePu sotware engineer working with EMC corporation ,recently I had attended mcafee interview . Their questions were at heights of stupidity , I don't know what they want , I am a developer with 4 year experienced .I am listing the questions asked 1:What is the flag in g++ to avoid structure padding 2:In wht order parameters are passed to stack 3:How you will edit code segment of an exe