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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T21:54:05+00:00 2026-06-15T21:54:05+00:00

I have a custom X509CertificateValidator that currently validates a series of rules against a

  • 0

I have a custom X509CertificateValidator that currently validates a series of rules against a certificate presented for a WCF SOAP message.

There is a requirement to check the CN name on the certificate against the domain the certificate is being presented by, but I’m not aware that I have access to the request from within the X509CertificateValidator.

Is there any way to check that the certificate matches the request domain?

  • 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-15T21:54:06+00:00Added an answer on June 15, 2026 at 9:54 pm

    I haven’t found any way to do this from within the X509CertificateValidator, but it is possible within the service.

    Here is my first cut – I will be refining it to make it more elegant, but this works.

        private static void ValidateRequestIsFromCertificateDomain()
        {
            RemoteEndpointMessageProperty endpointProperty = OperationContext.Current.IncomingMessageProperties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
            var claimSet = OperationContext.Current.ServiceSecurityContext.AuthorizationContext.ClaimSets[0] as X509CertificateClaimSet;
    
            string domain = claimSet.X509Certificate.GetNameInfo(X509NameType.DnsName, false);
            var resolvedAddress = System.Net.Dns.GetHostAddresses(domain);
    
            if (resolvedAddress.Count() == 0 || endpointProperty.Address != resolvedAddress[0].ToString())
            {
                throw new SecurityException("Client address mismatch");
            }
        }
    

    This isn’t really required because the client encrypts data with its private key that can only be decrypted with its public key – so you know the certificate is being presented by the real client.

    However, if you are given this as an integration requirement as I have been, this may be useful to you.

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

Sidebar

Related Questions

I have custom classes that I currently instantiate within App.xaml as resources. I want
I have custom gallery. Gallery represents items that are frame layout. There are one
We have custom cms that currently sits on a vendor's subdomain, such as cms.vendor.com.
I have custom event that has several different subscribers who will all use the
I have custom component that I can place in my layout file (XML) for
I have custom groupViews that need to change state when they are expanded and
I have custom radar tiles that I am trying to overlay over Google Maps
I have custom drupal module. I receive result from a webservice that I need
I have custom SiteMapProvider and RoleProvider that works together properly: IsAccessibleToUser returns false if
I have custom code inside of a SSRS report that needs to get the

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.