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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:28:41+00:00 2026-05-28T05:28:41+00:00

I created a simple AJAX-enabled WCF service based on the MSDN tutorial [ServiceContract(Namespace =

  • 0

I created a simple AJAX-enabled WCF service based on the MSDN tutorial

[ServiceContract(Namespace = "AjaxWcf")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class AjaxWcf
{

    [OperationContract]
    public string AssessString(string input)
    {
        if (input.Contains("1"))
            return "true";

        return "false";
    }

which totally works when i generate the js proxy and use ASP.NET AJAX library to call.

However when i switch over to jQuery to make the ajax() call, it get an [object XMLHttpRequest] error

$.ajax({ url: "AjaxWcf.svc/AjaxWcf/AssessString",
    type: "POST",
    dataType: "text",
    processData: false,
    data: { input: inputValue },
    error: 
    function (msg) { $("#serviceResponse").html(msg.toString()); },
    success: function (response)
    { $("#serviceResponse").html(response); }
    });

I have read around about what to make of that error and a suggestion to alter the error delegate to peek further into the problem

function (xmlHttpRequest, textStatus, errorThrown) {
    if (xmlHttpRequest.readyState == 0 || xmlHttpRequest.status == 0)
        return;  // it's not really an error 
    else
    $("#serviceResponse").html(errorThrown);
    },

which then caused IE to to choke

Microsoft JScript runtime error: Could not complete the operation due to error c00c023f.

Apparently that is an IE9-only problem, but testing this in Google Chrome still did not yield any web service invocation (breakpoint never gets hit). And if i use back to old error delegate, the same [object XMLHttpRequest] problem. I am kind of surprised at the lack of materials discussing a simple POST call with jQuery to WCF service, and wonder what is missing?

Note: this is using jQuery 1.4.1, but as far as i’ve seen using 1.7.1 still did not call the WCF service.

  • 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-28T05:28:41+00:00Added an answer on May 28, 2026 at 5:28 am

    For reasons not fully understood at this point, it appears that jQuery AJAX to WCF service should be carried out using JSON data type.

    $.ajax({ url: "AjaxWcf.svc/AssessString",
        type: "POST",
        dataType: "json",
        contentType: "application/json",
        processData: false,
        data: postData,
        error: function (msg)
        { alert(msg.responseText); },
        success: function (response)
        { $("#serviceResponse").html(response.d); }
    });
    

    This way the browser is able to make the request out without hitting errors and reaching the service endpoint.

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

Sidebar

Related Questions

In Visual Studio 2010 I created a new Ajax enabled WCF Service [ServiceContract(Namespace =
I have created an Ajax enabled WCF web service that contains this simple method:
I'm using a simple ajax-enabled WCF service. I'm creating a string of XML on
Have created simple Ajax enabled contact forms before that have around 12 fields -
I'm trying to create an Ajax enabled webform, and have created a simple page.
I want to create a very simple HTML/AJAX based GUI for a Python program.
I created a simple dialog-based application, and in the default CDialog added three buttons
I created a simple user control using the AJAX Control Toolkit Accordion, LinkButton, and
I have a simple form created using Ajax.BeginForm : <% using (Ajax.BeginForm(Update, Description, new
hi i created a simple php/mysql/Ajax chat application and I have a few questions.

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.