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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:39:06+00:00 2026-05-20T12:39:06+00:00

I’m just about done with a WCF Service that allows me to remote database

  • 0

I’m just about done with a WCF Service that allows me to “remote” database calls. One of the items we have in our contract is the ability to remote out HTTP requests.

Here’s the interface:

[Operation_Contract()]
bool DoWebRequest( string url, out HttpWebResponse resp );

with the implementation (more or less -- no error reporting here):

public bool DoWebRequest( string url, out HttpResponse resp )
{
   bool done = false;
   resp = null;

   WebRequest req = WebRequest.Create( url );
   resp.Credentials = CredentialCache.DefaultCredentials;
   resp = (HttpWebResponse )req.GetResponse();
   done = ( resp != null ? true : false );

   return done;
}

Then, I wrap this in a WCFServiceLibrary, host it in a console application, create a service reference in another application with a client to it. Then I wrap the client in another class and call it via client.DoWebRequest( url, out resp );

And all of my data access stuff works. However, when I try to use it in a test application, I get the following:

The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was ’00:00:59.7180000′.

I’m guessing this exception has to do with the fact that I’m not properly serializing the HttpWebResponse object in my interface definition. I could be wrong though. I’d appreciate help here on how to get this working.

As a side note, when I create the service reference, it swiched my parameters. The client Reference.cs file shows the method like this:

public bool DoWebRequest( out HttpWebResponse resp, string url )
{  
   return base.Channel.DoWebRequest( out resp, url );
}

Any ideas why? It’s the only method with switched parameters. Could this be part of the problem? I can’t figure out why the tool would do this, though.

Thanks again.

  • 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-20T12:39:06+00:00Added an answer on May 20, 2026 at 12:39 pm

    The HttpWebResponse object no doubt includes information that is only valid on the machine it comes from, like the network stream servicing the request. That information makes no sense to serialize.

    You should abstract out what you mean by a Web Request and Web Response, and create objects that match those abstractions.

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

Sidebar

Related Questions

I have just tried to save a simple *.rtf file with some websites and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I've got a string that has curly quotes in it. I'd like to replace
I have a JSP page retrieving data and when single or double quotes are
link Im having trouble converting the html entites into html characters, (&# 8217;) i
this is what i have right now Drawing an RSS feed into the php,
I am trying to loop through a bunch of documents I have to put
We're building an app, our first using Rails 3, and we're having to build
I'm making a simple page using Google Maps API 3. My first. One marker
I have a bunch of posts stored in text files formatted in yaml/textile (from

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.