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).
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / siyaa
The webservice has to be created under windows
authentication mode and it has to be impersonated with a
username and password .
| Is This Answer Correct ? | 1 Yes | 2 No |
Which attribute adorn a test class to be picked up by the NUnit GUI in the NUnit test framework?
To compute the monthly, half-yearly and annual sales made by all the salesmen of a company.
What is difference between ienumerable and ienumerator in c#?
Can structs in c# have destructors?
How do I register my code for use by classic com clients?
Why are dynamic link library used over static one?
When would you use generics in your code c#?
Can we declare class as protected?
How to implement singleton design pattern in c#?
Why singleton pattern is used in c#?
How to call a function when a class implements 2 interfaces and function is present in both interfaces?
How does a function pointer returns a function pointer?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)