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 4621816
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:45:20+00:00 2026-05-22T02:45:20+00:00

I have a dll which parses some web site. This component uses WebBrowser control

  • 0

I have a dll which parses some web site. This component uses WebBrowser control from Windows forms with using Navigate() method.

Also I have a WCF hosting in IIS 7 and with basicHttpBinding.

But when I call my WCF method which use the dll with WebBrower from client I have such bug message:

ActiveX control ‘8856f961-340a-11d0-a96b-00c04fd705a2’ cannot be instantiated because the current thread is not in a single-threaded apartment.

Is any way to resolve this unpleasant situation ?

  • 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-22T02:45:21+00:00Added an answer on May 22, 2026 at 2:45 am

    Furtunately, I found an answer for the question. This code helps me:

        [STAThread]
        public Good GrabGood(string link)
        {
            _link = link;
            var t = new Thread(Grab); 
            t.SetApartmentState(ApartmentState.STA); 
            t.Start(); 
            t.Join();
    
            return _good;
        }
        private Good _good;
        private string _link;
        private void Grab()
        {
            var grabber = new GoodsGrabber();
            try
            {
                _good = grabber.GrabGood(_link);
            }
            catch (Exception)
            {
                _good = null;
                throw;
            }
        }
    

    And such attributes for the class like:

        [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single, InstanceContextMode = InstanceContextMode.PerSession)]
    

    In any option variation didn’t help me.

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

Sidebar

Related Questions

I have a .NET dll which needs to read it's config settings from it's
I have created a .NET DLL which makes some methods COM visible. One method
I have a native VC++ project that uses a dll (which is not in
We have inherited VB6 dll which we need to make changes to. We have
I have a MS AJAX toolkit DLL which I want to add to the
I have a few C# .dll projects which are common to many applications. Currently,
We have a project with many dll files which get loaded when the application
I have two projects, the DLL project which has all my logic and data
I am debugging a third-party DLL for which I don't have the source code.
I have a Nant build file which executes NUnit after compiling the dll's. I

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.