February 7th, 2011

CustomBinding on the ServiceEndpoint lacks a TransportBindingElement

Uncategorized, by Moby.

Error: The CustomBinding on the ServiceEndpoint with contract “” lacks a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement.

My fix for this was adding the empty httpTransport markup to the web.config.

<customBinding>
  <binding name="...">
    ...
    <httpTransport></httpTransport>
  </binding>
</customBinding>

Via: http://antonis-antoniou.blogspot.com/2011/02/web-services-interoperability-between.html

Back Top

Responses to “CustomBinding on the ServiceEndpoint lacks a TransportBindingElement”

  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Back Top