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

  • SEARCH
  • Home
  • 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 class in a dll which parses a file and returns a
Hi I have a plugin.dll which contains this all npp functions I have embeded
I have to create a DLL which is used by a VB6 application. This
I have a DLL which I (for many reasons) cannot change. I use this
I have a DLL (Test.dll) which contains some Excel Addin, i don't know which
I have a dll that I distribute that will not run on some windows
I have a DLL which takes care of custom drawing for some special glass
I have dll which accepts Pointer to array of bytes from C++ and try
I have a DLL which contains a class with static members . I use
I have a DLL which provided a decoding function, as follows: function MyDecode (Source:

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.