I am trying to use the new Web Service MA that was released a couple of months ago and I have this error message while running the web service configuration tools :
"Please configure endpoint(s) with http binding only and refresh service(s). Web Services Connector cannot be configured through Synchronization Services Manager if endpoint binding is not basic http."
I found that under decovery/serviceNewConnectors there are to endpoints:
testNewWebserviceConnectorsSOAP and
testNewWebserviceConnectorsSOP12
this is part of the web.config of my webservice
<appSettings>
<!-- use appSetting to configure base address provided by host -->
<add key="baseAddress" value="http://172.19.0.133:118/testNewConnectors.asmx" />
</appSettings>
<system.serviceModel>
<!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->
<services>
<!-- This section is optional with the default configuration introduced
in .NET Framework 4. -->
<service
name="Microsoft.ServiceModel.Samples.CalculatorService">
<host>
<baseAddresses>
<add baseAddress="http://172.19.0.133:118/testNewConnectors.asmx"/>
</baseAddresses>
</host>
<endpoint address="http://172.19.0.133:118/testNewConnectors.asmx"
binding="basicHttpBinding" bindingConfiguration="testNewConnectorsSoap"
contract="ServiceNewConnectors.testNewConnectorsSoap" name="testNewConnectorsSoap" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>