Please help to fix the error while consuming web service...... Additional information: An error occurred while making the HTTP request to https://pilot.Test.in/autoTest.asmx. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also be caused by a mismatch of the security binding between the client and the server.
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="AutoCompleteSoap"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:01:00"
allowCookies="false"
bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="5000000"
maxBufferPoolSize="524288"
maxReceivedMessageSize="5000000"
messageEncoding="Text"
textEncoding="utf-8"
transferMode="Buffered" useDefaultWebProxy="true">
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
<message clientCredentialType="Certificate" algorithmSuite="Default" />
</security>
</binding>
<binding name="AutoCompleteSoap1" />
</basicHttpBinding>
<customBinding>
<binding name="AutoCompleteSoap12">
<textMessageEncoding messageVersion="Soap12" />
<httpsTransport />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="https://pilot.Test.in/autoTest.asmx"
binding="basicHttpBinding" bindingConfiguration="AutoCompleteSoap"
contract="ConcatinatePDF.AutoCompleteSoap" name="AutoCompleteSoap" />
<endpoint address="https://pilot.Test.in/autoTest.asmx"
binding="customBinding" bindingConfiguration="AutoCompleteSoap12"
contract="ConcatinatePDF.AutoCompleteSoap" name="AutoCompleteSoap12" />
</client>
</system.serviceModel>