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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:15:47+00:00 2026-05-14T18:15:47+00:00

The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the

  • 0

The communication object, System.ServiceModel.Channels.ServiceChannel,
cannot be used for communication because it is in the Faulted state.

What is this error all about, and how would I go about solving it?

  • 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-14T18:15:48+00:00Added an answer on May 14, 2026 at 6:15 pm

    You get this error because you let a .NET exception happen on your server side, and you didn’t catch and handle it, and didn’t convert it to a SOAP fault, either.

    Now since the server side “bombed” out, the WCF runtime has “faulted” the channel – e.g. the communication link between the client and the server is unusable – after all, it looks like your server just blew up, so you cannot communicate with it any more.

    So what you need to do is:

    • always catch and handle your server-side errors – do not let .NET exceptions travel from the server to the client – always wrap those into interoperable SOAP faults. Check out the WCF IErrorHandler interface and implement it on the server side

    • if you’re about to send a second message onto your channel from the client, make sure the channel is not in the faulted state:

      if(client.InnerChannel.State != System.ServiceModel.CommunicationState.Faulted)
      {
         // call service - everything's fine
      }
      else
      {
         // channel faulted - re-create your client and then try again
      }
      

      If it is, all you can do is dispose of it and re-create the client side proxy again and then try again

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

Sidebar

Related Questions

We get The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is
I am getting this exception: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication
I'm getting this error: The communication object, System.ServiceModel.ChannelFactory`1[FxCurveService.IFxCurveService], cannot be used for communication because
I'm getting the following error when I try multiple end points.. System.ServiceModel.AddressAlreadyInUseException: The TransportManager
I start build a system with distributed architecture by all applications will communication by
VB.NET 2010, .NET 4 Hello all, I have a System.Timers.Timer object that does some
I have developed a communication system in PHP. It would be amazing if users
I have encountered a problem of socket communication on linux system, the communication process
I've created a Windows Communication Foundation service (the appDomain in this case is a
I have a client-server application which communicates over TCP/IP. I use System.Net.Sockets.Socket type object

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.