Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4594796
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:52:43+00:00 2026-05-21T22:52:43+00:00

Hi I need to download a file from a site with forms authentication and

  • 0

Hi I need to download a file from a site with forms authentication and further processing the text file with Integration Services.

For the file download I choose to use WATIN, So I imported the Watin library and scripted the browser steps. However when I try to run the code I get an Exception with this Message.

The CurrentThread needs to have it’s
ApartmentState set to
ApartmentState.STA to be able to
automate Internet Explorer.

all this using the
(with the method attribute)

If I try to use this line of code to set it to STA

System.Threading.Thread.CurrentThread.SetApartmentState(Threading.ApartmentState.STA)

I get this exception

Error:
System.Reflection.TargetInvocationException:
Exception has been thrown by the
target of an invocation. —>
System.InvalidOperationException:
Failed to set the specified COM
apartment state. at
System.Threading.Thread.SetApartmentState(ApartmentState
state)

How do I change the SSIS script task to use this Single-Threaded apartment?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T22:52:44+00:00Added an answer on May 21, 2026 at 10:52 pm

    I’ve solved this by creating another Thread with the STA ApartmentState.

    The code was like this:

    Private threadDelegate As ParameterizedThreadStart
    Private filesdir As String
    
    <STAThread()> _
    Public Sub Main()
        Try
            threadDelegate = New ParameterizedThreadStart(AddressOf Me.DoSomething)
            StartBrowserRoutine(threadDelegate)
            Dts.TaskResult = ScriptResults.Success
        Catch
            Dts.TaskResult = ScriptResults.Failure
        End Try
    End Sub
    
    Private Sub StartBrowserRoutine(ByVal threadRoutine As ParameterizedThreadStart)
        Dim dialogThread As Thread = New Thread(threadRoutine)
        dialogThread.TrySetApartmentState(ApartmentState.STA)
        dialogThread.Start(Nothing)
        dialogThread.Join(System.Threading.Timeout.Infinite)
    End Sub
    
    Private Sub DoSomething()
        'Do Something
    End Sub
    

    Hope this helps someone with the same problem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I'm in need to download a file from a site that requires Forms
I need to be able to download some file from a regular site using
I need to download file from FTP server and make some changes on it
I need to download one file from an url that i give from an
I need to connect to an ftp and download a file from it, but
I need a simple proxy PHP function/script that can download a file from a
I need a java program to download a series of file from a web
I need a little help getting a tar file to download from a website.
I need to download an XML file, using HTTP protocol, to use it locally
I am trying to download a file from a site using perl. I chose

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.