How to authenticate web service? When you enter the web
service url in browser it should ask username and password.
After entering the un&pwd we have to show its methods and
service description(wsdl).
Answer Posted / gp_bellamkonda
If external clients want to access our webservices,We can
declare and use our own keys like userid,password and
domain in web.config.
TYPE IN WEB.CONFIG
=============
<appSettings>
<add key ="UserID" value ="User123"/>
<add key ="Password" value="Pwd@123"/>
<add key="Domain" value ="ABC"/>
</appSettings>
and
IN CODE
=======
try
{
ISAuthenticatedUser = new AuthenticateUsers
().Authenticate(LoginUserId, LoginPassword, "DEVDCDOM");
if (ISAuthenticatedUser == "Error")
returnMSg = "Application error has
occured.Please check log files for details.";
else if (ISAuthenticatedUser
== "Authentication Failed")
returnMSg = "USer not Authorized.";
}
catch (Exception ex)
{
throw ex;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Describe the types of comments in c#?
Can struct inherit from class c#?
Why do we use interfaces in c#?
Explain what is the smallest unit of execution in .net?
Explain About remoting and web services. Difference between them
What is overloading in c#?
What does exclamation mark mean in access query?
Define boxing and unboxing in c#?
Why do we need to call CG.SupressFinalize?
Is int an object in c#?
Classes and structs can be declared as static, is this statement true or false?
What is primitive types in c#?
What is action in c# 3.5?
List the differences between method overriding and method overloading?
What is the difference between arraylist and list in c#?