Pregunta

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?

¿Fue útil?

Solución

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

Otros consejos

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top