1
Answer

Converting Remoting to WCF

Sujeet Suman

Sujeet Suman

8y
326
1
I have converted my remoting service to WCF. 
 
I unable to access server methods from client & getting below error:
 
Could not connect to net.tcp://localhost:8000/UserManagement. The connection attempt lasted for a time span of 00:00:00.9997717. TCP error code 10061: No connection could be made because the target machine actively refused it 127.0.0.1:8000. 
 
 
 
Please help me to come out. 
Answers (1)
0
Tejas Trivedi

Tejas Trivedi

NA 1.6k 45.1k 8y
Hi Sujeet,
 
There may be possibly issue in the configuration. it should looks like as below for net tcp binding.
  1. <system.serviceModel>
  2. <bindings>
  3. <netTcpBindingname="portSharingBinding"
  4. portSharingEnabled="true"/>
  5. </bindings>
  6. <services>
  7. <servicename="MyService">
  8. <endpointaddress="net.tcp://localhost/MyService"
  9. binding="netTcpBinding"
  10. contract="IMyService"
  11. bindingConfiguration="portSharingBinding"/>
  12. </service>
  13. </services>
  14. </system.serviceModel>
Also, please make sure net tcp port sharing service is enabled. You can check this from MMC console.
 
Hope, this will help you out. Feel free to write if you need more information on this.
 
Please don't forget to mark as answer if this helps