so i have an app on a webserver, user clicks a button i send a System.net.webrequest to a webservice on a different box in the network that then sends an xml response.
problem:
works on local maching with default credentials;
works on web server if i hardcode my active directory username and password;
doesnt work on web server using default network credentials; I get am xml response from the web service of user "webServerName$" is not valid user;
if i try to use a non active directory domain username and password provided for me for the web service admin of webserviceservername/webservice, webservicepw
as the httpwebrequest credentials it works on my local but from the app web server the getresponse() to the webrequest to the web service gets a 401 error and no attempt to negiociate the authentication is made
so somehow i think even though i passed the webservice username and pass and it worked runnin ...
Go to the complete details ...