私は、SUN One (以前は Chillisoft と呼ばれていた) サーバーを使用してホストされている ASP サイトで作業しています。XML ファイルの読み込みに問題があります。使用しているコードは以下のとおりです。
dim directory
set directory = Server.CreateObject("MSXML2.DOMDocument")
if(directory.load(Server.MapPath("directory.xml"))) then
Response.Write("Loaded")
else
Response.Write("NotLoaded")
If directory.parseError.errorCode Then
Response.Write( "Parse error" )
end if
end if
私のaspページとdirectory.xmlは両方とも同じフォルダー「/public_html/」にあります。
この問題は、ファイルが見つからない mappath に関係しているのではないかと思いますが、エラーが返されないため、どうすればよいかわかりません。
ありがとう