Using web service internally in web service?

It depends on where your service resides and the level of decoupling you are expecting.

It depends on where your service resides and the level of decoupling you are expecting. Also if both the services are in the same hosting environment and if you need to call methods of one service from another frequently - then of course you need to rethink about the granularity of your service design. Directly calling a service from other service would provide you a highly decoupled solution - but with a performance impact.

If all the services under your control - best thing is to design the service interface more carefully to avoid such calls...

I am not familiar with C# but you should be able to call the method directly without going through the web service api. Even you can re factor your code to have web method separately and function method separately. Then you can call the function methods directly from any method.

I am not familiar with C# but you should be able to call the method directly without going through the web service api.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions