web.configでサービスを定義したwebRoleの通知の新しいサービスを作成します
<system.serviceModel><services>
<!-- Notification Service Definition -->
<service behaviorConfiguration="NotificationServiceBehaviors" name="Paw.Services.NotificationService">
<endpoint binding="basicHttpBinding" contract="Paw.Services.INotificationService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="NotificationServiceBehaviors">
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors></system.serviceModel>
しかし、Webロールの新しいインスタンスをデバッグして開始しようとすると、サービスはComputeEmulatorではなくASP.netサーバーに展開されます。なぜこのように動作しているのかわかりません。また、新しいインスタンスの起動にweb.configがまったく使用されていません。