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

The Archive Base Latest Questions

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

When I make an ajax call, it fails with 500 Internal server error Value-typed

  • 0

When I make an ajax call, it fails with 500 Internal server error

Value-typed properties marked as [Required] must also be marked with [DataMember(IsRequired=true)]

The problem is with CallerID property.

[Required]
public string AccountTypeID { get; set; }

[Required]
public int CallerID { get; set; }

If I mark CallerID as string, everything works well.
Any ideas why?

  • 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:29:05+00:00Added an answer on June 17, 2026 at 4:29 am

    This is a known issue in Web API, you can see the whole history here:
    http://aspnetwebstack.codeplex.com/workitem/270

    Basically, if you apply [Required] to a value type (such as bool or int, string is not a value type) it will cause this error.

    Also you need to think about it – you are making int a required property – but as a value type it will always have value, value=0 even if it’s not passed by the user. Perhaps you were thinking of int? instead?

    You can either remove the InvalidModelValidatorProvider altogether (which may not be acceptable though):

    config.Services.RemoveAll(
    typeof(System.Web.Http.Validation.ModelValidatorProvider), 
    v => v is InvalidModelValidatorProvider);
    

    Or just apply DataContract to your class:

    [DataContract]
    public class MyClass {
    
    [DataMember(isRequired=true)]
    public string AccountTypeID { get; set; }
    
    [DataMember(isRequired=true)]
    public int CallerID { get; set; }
    }
    

    One other workaround, mark the int as nullable:

    [Required]
    public int? CallerID { get; set; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make an ajax call to server. I need to fetch the
I'm trying to to make AJAX call with the jQuery library using the $.ajax()
I want to make an ajax call, but I want to make sure it
I call sortable.stop() to make an ajax call to store some data after drag
I am trying to make an ajax call using $.get() where I want to
i am trying to make a ajax call by making use of jquery UI
Hi I have been trying to make a ajax call to a JSP page.
I'm using jQuery to make an Ajax call using an Http Post in ASP.NET
I am using jQuery to make an AJAX call to a ruby method in
I'm using JQuery to make an Ajax call. I used a sniffer to catch

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.