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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:35:27+00:00 2026-05-12T13:35:27+00:00

Problem: I have a WCF Webservice which can be used by customers to upload

  • 0

Problem:

I have a WCF Webservice which can be used by customers to upload multiple datarecords. To validate the data I use Enterprise Library Validation Block. The records can be nested several layers deep.

Question:

How to identify in which record the validation failed?

Example:

Consider the following datastructure. For each Continent there can be multible Countries and for each Country there can be multiple Cities.

  • Continent
    • Name
    • Country
      • Name
      • City
        • Name
        • Mayor

When the validation of the Mayor of a City fails, I want to know for which City, Country and Continet it failed.

  • 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-12T13:35:28+00:00Added an answer on May 12, 2026 at 1:35 pm

    I Solved my problem by doing the following:

    Setup int the WCF Integration:

    (Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WCF)

    Create a simple marker Attribute:

    public class ValidationKeyAttribute : Attribute
    {
    }
    

    which will be put on the Property that identifies the data record.

    Create an Interface:

    public interface IValidationBackReference
    {
        object BackReference { get; set; }
    }
    

    This is for the reference from the City record to the Country record in the above example so that all Identifiers up the chain also get included

    Modify the BeforeCall() Method in ValidationParameterInspector

    to crawl all inputs and set the BackReference using something like this:

    private void SearchForBackReferences(object input, object backReference)
    {
        if (input == null)
        {
            return;
        }
        Type t = input.GetType();
        if (t.IsArray)
        {
            Object[] inputs = (object[])input;
            SearchForBackReferences(inputs, backReference);
        }
        else if (input is IValidationBackReference)
        {
            foreach (PropertyInfo info in t.GetProperties())
            {
                object value = info.GetValue(input, null);
                SearchForBackReferences(value, input);
            }
            ((IValidationBackReference)input).BackReference = backReference;
        }
    }
    
    private void SearchForBackReferences(object[] inputs, object backReference)
    {
        if(inputs==null)
        {
            return;
        }
        foreach (object input in inputs)
        {   
            SearchForBackReferences(input, backReference);
        }
    }
    

    Modify the CreateValidationDetail method in ValidationParameterInspector

    to go up the record tree via the BackReferences with something like this

    private static string FindKey(object target)
    {
        StringBuilder result = new StringBuilder();
        if( target == null )
        {
            return result.ToString();
        }
        if(target is IValidationBackReference)
        {
            result.Append(FindKey(((IValidationBackReference) target).BackReference));
        }
        Type t = target.GetType();
        foreach (var info in t.GetProperties())
        {
            if (Attribute.IsDefined(info, typeof(ValidationKeyAttribute)))
            {
                object objectValue = info.GetValue(target, null);
                string stringValue = "(null)";
                if (objectValue != null)
                {
                    stringValue = objectValue.ToString();
                }
                result.Append(string.Format("{0} = '{1}'; ",info.Name, stringValue));
            }
        }
        return result.ToString();
    }
    

    and put it into the Details.Key of the ValidationKDetail. So far the Setup.


    In the Webservice

    all you have to do now is Implement the IValidationBackReference interface on the classes used by the Webservice and put the [ValidationKey] Attribute on appropriate Properties.

    The example above would look like:

    public class Continent : IValidationBackReference
    {
        public object BackReference { get; set; }
        [ValidationKey]
        public string Name { get; set; }
    
        public Country[] Countries{ get; set; }
    }
    
    public class Country : IValidationBackReference
    {
        public object BackReference { get; set; }
        [ValidationKey]
        public string Name { get; set; }
    
        public City[] Cities { get; set; }
    }
    
    public class City : IValidationBackReference
    {
        public object BackReference { get; set; }
        [ValidationKey]
        public string Mayor { get; set; }
    }
    

    what a monster …

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

Sidebar

Related Questions

Problem I have timestamped data, which I need to search based on the timestamp
So I came across an interesting problem today. We have a WCF web service
I'm experimenting with WCF Services, and have come across a problem with passing Interfaces.
Problem: I have an address field from an Access database which has been converted
Problem: I have two spreadsheets that each serve different purposes but contain one particular
Problem: We have a web app that calls some web services asynchronously (from the
Problem: I have to support users who need to edit web pages. Some of
I have the following problem: I have an HTML textbox ( <input type=text> )
I have problem in some JavaScript that I am writing where the Switch statement
I have problem with return statment >.< I want to store all magazine names

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.