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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T05:25:52+00:00 2026-05-14T05:25:52+00:00

I am using WCF and REST, and I have complex types, which are working

  • 0

I am using WCF and REST, and I have complex types, which are working fine. Now I need to check for validation, I am thinking of using DataAnnotations e.g.

public class Customer
{
   [Required]
   public string FirstName {get;set;}
}

Now where the issue is how do I pass this validation down to the REST service?

ALso I need to validate the object when it comes back, and throw an exception, if I am to throw an exception then what is the best way of doing this using REST?

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

    I would use the Validation Application Block included in the Microsoft Enterprise Library to validate the data transfer objects being used in the service interface. You can use attributes to decorate the objects’ properties with validation rules, much in the same way as with the ASP.NET Data Annotations.

    In case validation fails you should return an appropriate HTTP Error Code and include the details of what went wrong in the HTTP response.

    Here is an example:

    public void PostCustomer(Customer instance)
    {
        ValidationResults results = Validation.Validate(instance);
    
        if (!results.IsValid)
        {
            string[] errors = results
                .Select(r => r.Message)
                .ToArray();
    
            WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.BadRequest;
            WebOperationContext.Current.OutgoingResponse.StatusDescription = String.Concat(errors);
        }
    
        // Proceed with custom logic
    }
    

    If you are using the WCF REST Starter Kit, you should instead throw a WebProtocolException, as described in this article.

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

Sidebar

Related Questions

I have a simple WCF4 REST service which is working fine when using a
I created a WCF rest service, then called that from javascript using ajax. Now
I have a self hosted WCF Rest service that I am using to simulate
I have a WCF REST Service which accepts a JSON string One of the
I am working on a WCF REST service, and in the service I have
I have a REST WCF service. Its using a webHttpBinding and the configuration looks
I have created a MVC 3 WCF Rest project using the tutorial described here
I have a WCF rest service using webHttpBinding that returns JSON result. The problem
I have the WCF REST Service target to .NET Framework 4. I am using
I'm evaluating setting up a REST system using WCF against using MVC (which I

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.