a problem about read and write the xml files
There is a asp.net web app,and I set the web.config with the code
like this:
<authentication mode="Windows" />
<identity impersonate = "true"/>
<authorization>
<deny users = "?"/>
</authorization>
which means every one can run the server except the anonymous user ,so I can read and write the xml files in the asp.net web app;
in the client,I create a windows form ,I want to read data from the xml to the windows form ,but in the codes of the client
I coudn't read the data in the xml,It show the error messages
like this :
"The request failed with HTTP status 401:unauthorized"
I don't know why,I think I set the web.config files and I should read the xml,any body can help me?
|