Not sure I follow what you were trying to tell me about the 2 connections
Is this something I configure in the connection manager itself?
johnnyg123
ASKER
Here is something interesting
I was connecting to remote desktop from my pc to the server, creating ssis package on the server (via remote desktop connection), running ssis package (via remote desktop connection)
Completion successful but no file showed up in the directory
Created mapped drive to destination path on the server on my local machine
(the same path that I had used in the server ssis package)
Created ssis package on my local machine, ran ssis package
Completion successful AND file was in directory
Is difference because I used remote desktop connection?
Guess I am puzzled because not getting any error messages when running ssis package on server ... execution says everything successful
johnnyg123
ASKER
Ok...so I tried one other thing
In the file connection manager editor I have usage type as Existing Folder
for the folder I put in the unc path (\\gvcanalytics\d$\test)
If I load package in bids from the server and run the package from a remote desk top connection on server it flashes yellow for like 2 seconds and turns green
If I load package in bids from the server on my desktop machine the file downloads fine
(it is a 5 gb file so it takes a little bit but still)
I tried a script command containing the following:
Try
Dim sFolderNames() As String
Dim sFileNames() As String
Dim sFileName(0) As String
Dim conMan As ConnectionManager
Dim ftp_client As FtpClientConnection
conMan = Dts.Connections("FTPConnection")
ftp_client = New FtpClientConnection(conMan.AcquireConnection(Nothing))
ftp_client.Connect()
ftp_client.SetWorkingDirectory("schedules")
ftp_client.GetListing(sFolderNames, sFileNames)
For Each fileName As String In sFileNames
there is one file in the schedules directory on the ftp site
When I debug, it loops through the for each loop and sees the file. (This tells me that it is able to reach the ftp server)
However, it looks like ftp_client.ReceiveFiles(sFileName, "D:\Test\", True, False) is ignored
D:\test does not exist and yet I get no error
Any one know why?????????????
AlexPace
I dunno why you didn't get an error passing an invalid value for the second parameter unless it is because there is an invalid type in the first parameter... it is supposed to be an array of string so it looks like you could do away with the loop and just do something like:
I installed an ftp client on the server and tried to download a file to the server
Low and behold I got a
550 Requested file is prohibited by url filtering policy error
After conversation with network folks I learned that since server was in DMZ ... websense policies were being applied. They had to make a change to the ftp policy
Only thing I can think is that script and ftp task were saying "hey...you told me to connect to ftp site and request file download and that's what I did" "I can't be responsible for checking to see if the request was successful too" ;-)
Not sure I follow what you were trying to tell me about the 2 connections
Is this something I configure in the connection manager itself?