Вопрос

I have the app, where already there is the service.

ServiceHost serviceHost = null;
serviceHost = new ServiceHost(typeof(*.*.*.*.com.MapViewPortTypeClient), new Uri(uri));

Can i create another instance of ServiceHost in this application, for example:

ServiceHost serviceHostKW = null;
serviceHostKW = new ServiceHost(typeof(*.*.*.*.com.ClientKW), new Uri(uriKW));

So after this it will be 2 services (servers) in this app. Will I have any problems?

Это было полезно?

Решение

Yes you can create as many ServiceHost instances, as you want.. but obviously url:port should be different

Другие советы

Yes!! You can Host Multiple services in one solution with multiple endpoints and hosting. Go through this Link http://dotnetmentors.com/multiple-wcf-services-in-one-solution-with-multiple-endpoints-and-hosting.aspx hope it will be helpful.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top