I have the following config and I am able to see svcutil.exe
https://SERVERNAME/test?wsdlon the service help page.
can you please compare your config with the one below
<system.serviceModel>
<services>
<service name="HttpsWsdl.Service1" behaviorConfiguration="HttpsWsdl.Service1Behavior">
<endpoint address="https://SERVERNAME/test" binding="basicHttpBinding" contract="HttpsWsdl.IService1" bindingConfiguration="Transport">
</endpoint>
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="Transport">
<security mode="Transport"></security>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="HttpsWsdl.Service1Behavior">
<serviceMetadata httpsGetEnabled="true" httpsGetUrl="https://SERVERNAME/test" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
Amit Sharma