I have configured HTTP access for SQL Analysis server as stated in below article, https://technet.microsoft.com/en-us/library/gg492140(v=sql.105).aspx
Finally I have configured the msmdpump.dll for my SQL Analysis service, and i am trying to load the connection string in Excel, I got the "XML parsing failed at line 1, column 9 DTD is prohibited" exception.
web.config from 'C:\inetpub\wwwroot\OLAP' is,
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<identity impersonate="true" />
<authentication mode="Forms" />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Methods" value="GET, POST"/>
<add name="Allow" value="OPTIONS, TRACE, GET, HEAD, POST, PUT"/>
<add name="Access-Control-Allow-Headers" value="Origin, Content-Type, Accept"/>
</customHeaders>
</httpProtocol>
<handlers>
<add name="OLAP" path="*.dll" verb="*" modules="IsapiModule" scriptProcessor="C:\inetpub\wwwroot\OLAP\msmdpump.dll" resourceType="File" preCondition="bitness64" />
</handlers>
</system.webServer>
</configuration>
Application pool of security identity is 'NetworkService'. Is anything administrator privileges is restrict the connection or any settings missed out?