ユーザー名/パスワードで xml ファイルを保護したい (www.domain.com/dir1/file.xml) www.domain.com/dir2/file.xml に別の資格情報などがある場合もあります。
asp.net 4.0 c# を使用しています。
WebClient などを使用してダウンロードできる必要があります。
public static string DownloadString(string address)
{
string text;
using (var client = new WebClient())
{
text = client.DownloadString(address);
}
return text;
}
ディレクトリに資格情報を設定し、web.config で認証を組み合わせますか、それともより良い方法がありますか?