We have a WCF service , with ABC as 'Server_abc' Now , we created a proxy on the client side and made a call on the server. My understanding is that the poxy will have the 'Server_abc' of server and make a connection internally and exucute the code.
The Question is
Does the poxy create a hidden service on the client side and send the Client_abc to the server when a call is made ? other wise how is the response from the server comming to the client for a normal method call (request -response) ?
Also a general doubt
If my service is WCF but if the client is java , the proxy created at the client side will be java_Proxy ,now how is this call coverted and received at the server side .