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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T05:22:29+00:00 2026-05-14T05:22:29+00:00

I’ve got a WCF service that offers a Login method. A client is required

  • 0

I’ve got a WCF service that offers a Login method. A client is required to call this method (due to it being the only IsInitiating=true). This method should return a string that describes the success of the call in any case. If the login failed, the connection should be closed.

The issue is with the timing of the close. I’d like to send the return value, then immediately close the connection.

string Login (string name, string pass)
{
    if (name != pass) {
        OperationContext.Current.Channel.Close ();
        return "fail";
    }
    else {
        return "yay";
    }
}

The MSDN states that calling Close on the channel

causes an ICommunicationObject to
gracefully transition from the Opened
state to the Closed state. The Close
method allows any unfinished work to
be completed before returning. For
example, finish sending any buffered
messages).

This did not work for me (or my understanding is wrong), as the close is executed immediately – WCF does not wait for the Login method to finish executing and return a string but closes the connection earlier.

Therefore I assume that calling Close does not wait for the running method to finish. Now, how can I still return a value, then close?

In my desperation I tried the following, but it is hardly a serious solution.

new Thread (() => {
    Thread.Sleep (100);
    OperationContext.Current.Channel.Close ();
}).Start ();
  • 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-14T05:22:29+00:00Added an answer on May 14, 2026 at 5:22 am

    When the documentation says “gracefully”, it’s really talking about when you invoke ICommunicationObject.Close from the client side. On the service side, if you try to close the channel while the client is still waiting for a response, you’re going to have a bad time.

    The client will get confused, not bothering to acknowledge the close, then the server will time out of its Close attempt, which in your case is happening on a worker thread, and unhandled exceptions on worker threads are not good for your service’s health or your own sanity.

    What you really want isn’t a graceful connection close at all, you want to forcibly disconnect clients that fail to log in successfully. In order to do that, you have to register an event handler for when the operation is completed, after the response is sent:

    public string Login(string name, string pass)
    {
        if (name != pass)
        {
            OperationContext.Current.OperationCompleted += LoginFailed;
            return "fail";
        }
        return "yay";
    }
    
    private void LoginFailed(object sender, EventArgs e)
    {
        OperationContext.Current.Channel.Abort();
    }
    

    This will do what I’m pretty sure you want – send “fail” back to the client, clean up everything that needs to be cleaned up, and then disconnect the client, preventing any further activity on the session.

    Incidentally, I don’t know how close this is to the real service code, but it’s a little redundant to have a “Login” method on the service when you can just use WCF’s built in service credential system.

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

Sidebar

Ask A Question

Stats

  • Questions 357k
  • Answers 357k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The other answers are correct. Here is some code you… May 14, 2026 at 9:40 am
  • Editorial Team
    Editorial Team added an answer you ruin the noConflict concept by reassigning the jquery to… May 14, 2026 at 9:40 am
  • Editorial Team
    Editorial Team added an answer If you get that particular error, you don't actually have… May 14, 2026 at 9:40 am

Related Questions

No related questions found

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.