Problem to create a pupump object
hello all,
this is actually my code to create a pupump object:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Expires = 0
Response.Buffer = False
Server.ScriptTimeout = 3600
If Session("StoredPump") Is Nothing Then
objPump = New PUMPLib.PUPumpClass
Session("StoredPump") = objPump
Else
objPump = Session("StoredPump")
End If
With objPump
.ServerName = "localhost"
.Timeout = 60
.ReadData()
End With
'Response.Flush()
Response.End()
End Sub
the problem is that the program stops to the line "readdata()"
i'm actually working to access a cube through a web connexion. I have used
the tutorial that we can find on web on the FoodMart example.
Some one have any idea?
|