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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:39:26+00:00 2026-06-17T04:39:26+00:00

I have developed WCF service which is internally using Entity framework for Database operation.

  • 0

I have developed WCF service which is internally using Entity framework for Database operation. While Insert, Update and Delete is working fine I am facing issue while selection of all records from that table and exposing it to client.

My Code to Expose Data to client is :-

public IQueryable <Bank_Configuration>  SelectBankConfiguration()
        {
            using (EFEntities objEFEntities = new EFEntities())
            {                             
                var Result= from c in objEFEntities.Bank_Configuration 
                            select c;

                return Result;
            }            

        }

But at client end when I use this method to get data client is giving Error as
An error occurred while receiving the HTTP response to “http://localhost:8732/Design_Time_Addresses/WcfServiceLibrary1/Service1/.&#8221; This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details.

Why this error and how to expose data to client

  • 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-06-17T04:39:28+00:00Added an answer on June 17, 2026 at 4:39 am

    Your EFEntities object is being disposed before the WCF message is being serialized, which is what causes the EF query to actually execute. Matierialize your resultset inside the “using” block by calling ToList() or ToArray().

    public IEnumerable<Bank_Configuration>  SelectBankConfiguration()
    {
        using (EFEntities objEFEntities = new EFEntities())
        {                             
            var Result= from c in objEFEntities.Bank_Configuration 
                        select c;
    
            return Result.ToArray();
        }            
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed a WCF service (framework 4.0) which should communicate with a client
I have a WCF web service developed with VS2010 targeting .Net Framework 4 which
I have developed a Web service using WCF Service Application. This service application is
I have developed a small WCF service which handles HTTP request. I want to
I have developed my DAL using Entity Framework (Self Tracking Entities). I have written
We have a WCF service developed in C# which is being used by several
I have developed a WCF self-hosted service, for which I have two basic security
I have developed an rest enable wcf service by using the following link http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/simplerestservice11172009221218PM/simplerestservice.aspx
I have a simple WCF web service on my machine which I have developed
I have created a web service which has a couple of methods developed using

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.