'System.Runtime.InteropServices.COMException

vaiStardom

New member
Joined
Aug 21, 2003
Messages
1
Hi! :)
Im trying to list DTS packages on a web application, but I get an unhandled exception of type:

System.Runtime.InteropServices.COMException
Additional information: General referential error:80041035.

I get the same error on a standard windows application.
Does anyone know what this error means? :confused:

Heres where the program stops...with the normal references added:

Dim objDTSAppl As New DTS.Application
Dim objPkgRepositry As DTS.PackageRepositor

objPkgRepositry = objDTSAppl.GetPackageRepository _("ServerName", "DataBaseName", "UserName", "Password", _
DTS.DTSRepositoryStorageFlags.DTSReposFlag_Default)
 
Back
Top