Web.config pollingDuplex errorhttp://forums.asp.net/t/1765774.aspx/1?Web+config+pollingDuplex+errorSat, 04 Feb 2012 16:13:35 -050017657744815797http://forums.asp.net/p/1765774/4815797.aspx/1?Web+config+pollingDuplex+errorWeb.config pollingDuplex error <p>Hi, i'm doing a polling duplex service and have this web.config</p> <pre class="prettyprint">&lt;?xml version=&quot;1.0&quot;?&gt; &lt;!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;compilation debug=&quot;true&quot; targetFramework=&quot;4.0&quot; /&gt; &lt;/system.web&gt; &lt;system.serviceModel&gt; &lt;extensions&gt; &lt;behaviorExtensions&gt; &lt;add name=&quot;pollingDuplex&quot; type=&quot;System.ServiceModel.Configuration.PollingDuplexHttpBindingCollectionElement, System.ServiceModel.PollingDuplex&quot;/&gt; &lt;/behaviorExtensions&gt; &lt;/extensions&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name=&quot;&quot;&gt; &lt;serviceMetadata httpGetEnabled=&quot;true&quot;/&gt; &lt;serviceDebug includeExceptionDetailInFaults=&quot;false&quot;/&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;pollingDuplex&gt; &lt;binding name=&quot;myPollingDuplex&quot; duplexMode=&quot;MultipleMessagesPerPoll&quot; /&gt; &lt;/pollingDuplex&gt; &lt;/bindings&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled=&quot;true&quot; multipleSiteBindingsEnabled=&quot;true&quot; /&gt; &lt;services&gt; &lt;service name=&quot;ChatDemo.Web.ChatService&quot;&gt; &lt;endpoint address=&quot;&quot; binding=&quot;pollingDuplex&quot; bindingConfiguration=&quot;myPollingDuplex&quot; contract=&quot;ChatDemo.Web.ChatService&quot; /&gt; &lt;endpoint address=&quot;mex&quot; binding=&quot;mexHttpBinding&quot; contract=&quot;IMetadataExchange&quot; /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt;</pre> <p>and i'm getting this error: Parser Error Message: Configuration binding extension 'system.serviceModel/bindings/pollingDuplex' could not be found. Verify that this binding extension is properly registered in system.serviceModel/extensions/bindingExtensions and that it is spelled correctly.</p> 2012-02-04T04:04:02-05:004816416http://forums.asp.net/p/1765774/4816416.aspx/1?Re+Web+config+pollingDuplex+errorRe: Web.config pollingDuplex error <p>Forget it...typing error! x.x</p> <p>i put &lt;behaviorExtensions&gt; instead of &lt;bindingExtensions&gt;</p> <p>lol!</p> 2012-02-04T16:13:35-05:00