Thanks for your advice.
I was just working on something similiar. Here are a few things you
is off.
group.
"J.B." <anonymous@discussions.microsoft.com> wrote in message news:<7FAAB41D-1136-4308-AF9C-49AD40722246@microsoft.com>...
> I'm trying to retrieve a list of cubes from AS Server using Microsoft DSO in an ASP.NET page.
> Here's my sample code:
>> Dim dsoServer As New DSO.Server
> Dim dsoDB As DSO.MDStore
> Dim dsoCube As DSO.MDStore
>> dsoServer.Connect ("LocalHost")
>> For Each dsoDB In dsoServer.MDStores
> If dsoDB.Name = "XXX" Then
> For Each dsoCube In dsoDB.MDStores
> Debug.Print dsoCube.Name
> Next
> End If
> Next
>> Here's the message i got:
> "System.Runtime.InteropServices.COMException: Cannot
> connect to the Analysis server on computer 'J.B.'.
> Connection to the server is lost"
>> I've tried to follow this technical article but still result the same.
>
http://support.microsoft.com/default.aspx?kbid=823066 >> Any idea? Or is there any other way i can get what i want, other that connecting to DSO? I've been stuck with this problem for days. hope i can find a new way to solve this.
> Thnx in advanced.
>> J.B.