0
同じスキームHTTPで複数のサービスを実装することは可能ですか?このよう複数のwcfサービス(複数のhttp:scheme)を実装することが可能です
:
<system.serviceModel>
<services>
<service name="MyServiceBecouseError.MyNameService" behaviorConfiguration="mexBehaviors">
<endpoint address="xxx" binding="basicHttpBinding" contract="MyServiceBecouseError.IMyNameService"></endpoint>
<endpoint address="yyy" binding="basicHttpBinding" contract="MyServiceBecouseError.IMyNameServiceSecond"></endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"></endpoint>
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/eff-off"/>
<add baseAddress="http://localhost:5555/eff-off"/>
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
試したときに何が起こったのですか? –