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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:26:45+00:00 2026-05-20T19:26:45+00:00

I have a WCF service that has REST and SOAP endpoints for every service.

  • 0

I have a WCF service that has REST and SOAP endpoints for every service. This was implemented similarly to this post: REST / SOAP endpoints for a WCF service with a configuration similar to the following:

<services>
  <service name="TestService">
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
    <endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/>
    <endpoint address="rest" binding="webHttpBinding" contract="ITestService"/>
  </service>
</services>

The problem is that the REST endpoint shows up in the resulting WSDL as an additional port and binding.

Is there any way to prevent the REST endpoint from being included in the WSDL?

  • 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-20T19:26:46+00:00Added an answer on May 20, 2026 at 7:26 pm

    Found a decent way to do this using an IWsdlExportExtension. There’s probably a more robust/reusable way to do this, but this solution requires the convention of all REST endpoints to be named “REST”. Below is the relevant part of an Endpoint behavior attached to all REST endpoints:

    public void ExportEndpoint(WsdlExporter exporter, WsdlEndpointConversionContext context)
    {
        // Remove all REST references (binding & port) from SOAP WSDL
        foreach (ServiceDescription wsdl in exporter.GeneratedWsdlDocuments)
        {
            // Remove REST bindings
            foreach (Binding binding in wsdl.Bindings)
            {
                if (binding.Name == "REST")
                {
                    wsdl.Bindings.Remove(binding);
                    break;
                }
            }
    
            // Remove REST ports
            foreach (Service service in wsdl.Services)
            {
                foreach (Port port in service.Ports)
                {
                    if (port.Name == "REST")
                    {
                        service.Ports.Remove(port);
                        break;
                    }
                }
            }
        }  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WCF WebApi Rest service that has the following endpoints: [WebGet(UriTemplate =
I have written a WCF service with the REST template that has the defaultOutgoingResponseFormat
I have a REST WCF service that has a method that gets a parameter
I have a WCF rest service. It has a method that returns a list
I have a very simple WCF service running that has a single method that
We have an application that has a WCF service (*.svc) running on IIS7 and
I have a WCF service that has methods to return IEnumerable<T> collections of objects,
I have a WCF service that accepts an object as a parameter that has
I have a wcf service application that has some application startup code in the
I have a REST WCF service that is being hosted in IIS. I have

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.