Как исправить NuGet WinSCP.NET в SSIS Script Task? - PullRequest
2 голосов
/ 01 апреля 2019

Я пытаюсь использовать WinSCP.NET NuGet для загрузки некоторых файлов в SFTP через компонент «Задача сценария» в SSIS.Во время написания кода все прошло нормально, но если после попытки сборки dll WinSCP.NET, похоже, не подхватывают все ссылки.

Я попытался добавить путь WinSCP к моей переменной PATH (пользователь).Я пытался добавить локальную версию WinSCPNET.dll в GAC.Я пытался переустановить пакет через NuGet.Я даже пытался изменить версии фреймворка.

Это проблема, которая у меня была раньше с WinSCP.NET DLL.В прошлый раз я использовал обходной путь, взаимодействуя с командной строкой через C #.Но я бы хотел использовать DLL, так как это гораздо более простая реализация.

Код в основном является образцом WinSCP с некоторыми незначительными изменениями:


#region Namespaces
using System;
using System.Data;
using Microsoft.SqlServer.Dts.Runtime;
using System.Windows.Forms;
using WinSCP;
#endregion

namespace ST_a1d3d6e0b5d54338bce6c79882c303c6
{
    /// <summary>
    /// ScriptMain is the entry point class of the script.  Do not change the name, attributes,
    /// or parent of this class.
    /// </summary>
    [Microsoft.SqlServer.Dts.Tasks.ScriptTask.SSISScriptTaskEntryPointAttribute]
    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    {
        #region Help:  Using Integration Services variables and parameters in a script
        /* To use a variable in this script, first ensure that the variable has been added to 
         * either the list contained in the ReadOnlyVariables property or the list contained in 
         * the ReadWriteVariables property of this script task, according to whether or not your
         * code needs to write to the variable.  To add the variable, save this script, close this instance of
         * Visual Studio, and update the ReadOnlyVariables and 
         * ReadWriteVariables properties in the Script Transformation Editor window.
         * To use a parameter in this script, follow the same steps. Parameters are always read-only.
         * 
         * Example of reading from a variable:
         *  DateTime startTime = (DateTime) Dts.Variables["System::StartTime"].Value;
         * 
         * Example of writing to a variable:
         *  Dts.Variables["User::myStringVariable"].Value = "new value";
         * 
         * Example of reading from a package parameter:
         *  int batchId = (int) Dts.Variables["$Package::batchId"].Value;
         *  
         * Example of reading from a project parameter:
         *  int batchId = (int) Dts.Variables["$Project::batchId"].Value;
         * 
         * Example of reading from a sensitive project parameter:
         *  int batchId = (int) Dts.Variables["$Project::batchId"].GetSensitiveValue();
         * */

        #endregion

        #region Help:  Firing Integration Services events from a script
        /* This script task can fire events for logging purposes.
         * 
         * Example of firing an error event:
         *  Dts.Events.FireError(18, "Process Values", "Bad value", "", 0);
         * 
         * Example of firing an information event:
         *  Dts.Events.FireInformation(3, "Process Values", "Processing has started", "", 0, ref fireAgain)
         * 
         * Example of firing a warning event:
         *  Dts.Events.FireWarning(14, "Process Values", "No values received for input", "", 0);
         * */
        #endregion

        #region Help:  Using Integration Services connection managers in a script
        /* Some types of connection managers can be used in this script task.  See the topic 
         * "Working with Connection Managers Programatically" for details.
         * 
         * Example of using an ADO.Net connection manager:
         *  object rawConnection = Dts.Connections["Sales DB"].AcquireConnection(Dts.Transaction);
         *  SqlConnection myADONETConnection = (SqlConnection)rawConnection;
         *  //Use the connection in some code here, then release the connection
         *  Dts.Connections["Sales DB"].ReleaseConnection(rawConnection);
         *
         * Example of using a File connection manager
         *  object rawConnection = Dts.Connections["Prices.zip"].AcquireConnection(Dts.Transaction);
         *  string filePath = (string)rawConnection;
         *  //Use the connection in some code here, then release the connection
         *  Dts.Connections["Prices.zip"].ReleaseConnection(rawConnection);
         * */
        #endregion


        /// <summary>
        /// This method is called when this script task executes in the control flow.
        /// Before returning from this method, set the value of Dts.TaskResult to indicate success or failure.
        /// To open Help, press F1.
        /// </summary>
        public void Main()
        {
            // TODO: Add your code here
            // User::FileName,$Package::SFTP_HostName,$Package::SFTP_Password,$Package::SFTP_PortNumber,$Package::SFTP_UserName
            SessionOptions sessionOptions = new SessionOptions
            {
                Protocol = Protocol.Sftp,
                HostName = (string)Dts.Variables["$Package::SFTP_HostName"].Value,
                UserName = (string)Dts.Variables["$Package::SFTP_Password"].Value,
                SshHostKeyFingerprint = (string)Dts.Variables["$Package::SFTP_Fingerprint"].Value,
                Password = (string)Dts.Variables["$Package::SFTP_Password"].GetSensitiveValue(),
                PortNumber = (int) Dts.Variables["$Package::SFTP_PortNumber"].Value,
            };

            try
            {
                using (Session session = new Session())
                {
                    // As WinSCP .NET assembly has to be stored in GAC to be used with SSIS,
                    // you need to set path to WinSCP.exe explicitly,
                    // if using non-default location.
                    session.ExecutablePath = (string)Dts.Variables["$Package::WinSCP_Path"].Value;

                    // Connect
                    session.Open(sessionOptions);

                    // Upload files
                    TransferOptions transferOptions = new TransferOptions();
                    transferOptions.TransferMode = TransferMode.Binary;

                    TransferOperationResult transferOperationResult = session.PutFiles(
                        (string)Dts.Variables["User::FileName"].Value, (string) Dts.Variables["$Package::SFTP_RemoteFileName"].Value, 
                        true, transferOptions);

                    // Throw on any error
                    transferOperationResult.Check();

                    // Print results
                    bool fireAgain = false;
                    foreach (TransferEventArgs transferEvent in transferOperationResult.Transfers)
                    {
                        Dts.Events.FireInformation(0, null,
                            string.Format("Upload of {0} succeeded", transferEvent.FileName),
                            null, 0, ref fireAgain);
                    }
                }
            }
            catch (Exception e)
            {
                Dts.Events.FireError(0, null,
                    string.Format("Error when using WinSCP to upload files: {0}", e),
                    null, 0);

                Dts.TaskResult = (int)DTSExecResult.Failure;
            }

            Dts.TaskResult = (int)ScriptResults.Success;
        }

        #region ScriptResults declaration
        /// <summary>
        /// This enum provides a convenient shorthand within the scope of this class for setting the
        /// result of the script.
        /// 
        /// This code was generated automatically.
        /// </summary>
        enum ScriptResults
        {
            Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
            Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
        };
        #endregion

    }
}

Screenshot of VSTA Project references

Это должно скомпилироваться как есть и позволить мне запустить SSIS, чтобы загрузить файл.Вместо этого ссылки прерываются, и я получаю много пропущенных ссылок:

Ошибка CS0246: Не удалось найти тип или имя пространства имен 'WinSCP' (вы пропустили директиву using или ссылку на сборку?)

Ошибка: этот проект ссылается на пакеты NuGet, которые отсутствуют на этом компьютере.Используйте NuGet Package Restore, чтобы загрузить их.Для получения дополнительной информации см. http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует файл .. \ packages \ WinSCP.5.15.0 \ build \ WinSCP.targets.

1 Ответ

1 голос
/ 03 апреля 2019

Я действительно могу воспроизвести вашу проблему, когда использую WinSCP NuGet package .Это похоже на проблему между менеджером пакетов NuGet и SQL Server Data Tools.Файл, на который ссылается ошибка, действительно существует (в пути, относящемся к файлу задачи скрипта .csproj).

На самом деле, похоже, что даже не рекомендуется использовать NuGet в SSIS.Лучше зарегистрировать сборку в GAC:


И действительно, если я буду следовать Инструкция WinSCP по использованию сборки из SSIS (с использованием GAC), она работает просто отлично.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...