i am using windows authentication for c#.net remoting with
iis.I uncheck the anonymous access option in directory
security.when my client requests the server it returns
401:unauthorized error.How can I resolve the exception ?
Please send me the reply as early as possible.



i am using windows authentication for c#.net remoting with iis.I uncheck the anonymous access opti..

Answer / ajay

just you have to checked the anonymous access option in
directory
security

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is dataset c#?

0 Answers  


What is use of abstract class in c#?

0 Answers  


What is the functionality of break and continue in Visual Studio?

2 Answers   JPMorgan Chase,


What is disconnected data architecture in c#?

0 Answers  


Explain the difference between object type and dynamic type variables in c#?

0 Answers  






What is interface c#?

0 Answers  


What are the new features in c# 2.0?

0 Answers  


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


What is deadly diamond problem?

0 Answers  


difference between keyword internal and protected?

5 Answers   HCL,


Which is faster dictionary or hashtable?

0 Answers  


Where is the output of TextWriterTraceListener redirected?

1 Answers  


Categories