We are setting up our Adobe Update Server in a Windows Server 2003 R2 32 bit environment. I’ve followed the Adobe tech notes on setting up the server with IIS 6. I’ve modified the settings in IIS, including adding the .xml definitions to the asp.net web.config file located in C:\windows\Microsoft.NET\Framework\v2.0.50727\CONFIG.
The issue we are having is this: I am attempting to verify the updaterfeed.xml file as per the documentation, but it is not displaying. I have enabled directory browsing, which allows me to click through every folder until I get up to the following path:
http://ourserver/updates/Adobe/CS/webfeed/oobe/aam10/win/updaterfeed.x ml
None of the xml files are displaying. I’ve verified the MIME type for XML as:
text/xml
These are the lines I’ve added to the asp.net web config:
<add path="*.zip" verb="*" type="System.Web.StaticFileHandler" />
<add path="*.xml" verb="*" type="System.Web.StaticFileHandler" />
<add path="*.dmg" verb="*" type="System.Web.StaticFileHandler" />
<add path="*.crl" verb="*" type="System.Web.StaticFileHandler" />
<add path="*.sig" verb="*" type="System.Web.StaticFileHandler" />
Also, according to the Adobe tech note for setting up AUSST states the following:
As a simple test to check that the web server is running correctly, check that the updaterfeed.xml files on
the update server can be accessed from browsers on the client machines. Essentially, you need to ensure
that the web server is working, independent of the Adobe Update Server Setup Tool.
Can you tell me what I may be missing, or point me in the right direction? There are no ASP.net errors in the event viewer.