asp 无法访问 olap 的问题
9892 2009-06-27 10:01:08 A 机器 IIS 部署了web程序 驱动:sql server 2005 analysis services 9.0 oledb
B 机器 olap
1\现在程序报告错误如下:
Microsoft OLE DB Provider for Analysis Services 2005 错误 '80004005'
对等方过早关闭了连接。 /index.asp,行 6
3\index.asp代码如下:
<html><head>
</head><body><table><td>sdfsdfsdfsdf</td></table>
<%
Set cnn = Server.CreateObject("ADODB.Connection")
cnn.Open "Provider=MSOLAP.3;Initial Catalog=CUP1_OLAP;Data Source=182.16.1.12"
Set cat = Server.CreateObject("ADOMD.Catalog")
Set cat.ActiveConnection = cnn
'set con = server.createobject("adodb.connection")
'con.open Application("SQL1ConnString")
response.write "OK"
%>
</body>
</html>