Ask a Question related to ASP.NET Web Services, Design and Development.
-
Marco #1
windows authentication (webservice security)
I'm using a lan with domain server under win200, and, in the same network,
but in an other machine, i've installed a webservice.
This second server is under win2003.
I need to allow access to the webservice ONLY for authenticated user (user
in the main domain), i've configureted the file web.config, but the server
doesn't recognize the user as connected into the domain, and so it doesn't
grant access to the webservice to anyone.
I suppose the problem is due to the windows authentication, in fact if i try
to open the .asmx page from the browser, it asks userid and password,
instead of using windows integreted authentication.
The service I need is for use only in the private lan and it should be
launched by an executable in local machines (not with browser)
Does anyone can help me??
Thanks
Marco
PS. Sorry for my english!!!!
Marco Guest
-
WebService Authentication
Hi Experts, I have a ASP.Net application which consumes a ASP.Net WebService. In both these applications I have enabled Anonymous access and... -
ASP.NET Site/Webservice and Windows/Form authentication
Hi All I have an ASP.NET site which runs using Windows(NTLM) authentication over SSL. I have a webservice where a vendor is only able to call... -
problem accessing webservice if enabling windows integrated authentication
Hi,all webservice experts Here is my problem: when I try to call a webservice from my web application, I got access denied 401 error Here is... -
Forms authentication with Windows authentication
Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication... -
Basic Authentication, WebService
I did the following to add http basic authentication for calling a webservice: chz11086.HelloAuthTestService service = new... -
Dilip Krishnan #2
Re: windows authentication (webservice security)
Hello Marco,
You need to set the Default credentials to the web service proxy.
something like...
proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
[url]http://www.geniant.com[/url]
> I'm using a lan with domain server under win200, and, in the same
> network,
> but in an other machine, i've installed a webservice.
> This second server is under win2003.
> I need to allow access to the webservice ONLY for authenticated user
> (user
> in the main domain), i've configureted the file web.config, but the
> server
> doesn't recognize the user as connected into the domain, and so it
> doesn't
> grant access to the webservice to anyone.
> I suppose the problem is due to the windows authentication, in fact if
> i try
> to open the .asmx page from the browser, it asks userid and password,
> instead of using windows integreted authentication.
> The service I need is for use only in the private lan and it should be
> launched by an executable in local machines (not with browser)
> Does anyone can help me??
>
> Thanks
>
> Marco
>
> PS. Sorry for my english!!!!
>
Dilip Krishnan Guest



Reply With Quote

