net.tcp

net.tcp service is unavailable for the protocol of the address

别等时光非礼了梦想. 提交于 2021-02-17 21:36:13
问题 Our application is hosted in IIS 7.0. It exposes endpoints over net.tcp protocol. But we kept running into the following exception: EndpointNotFoundException: The message could not be dispatched because the service at the endpoint address 'net.tcp://localhost/xxx/service.svc' is unavailable for the protocol of the address. We have checked the following places for possible causes. Windows Process Activation Service is running OK Net.Tcp Listener Adapter service is OK. Net.Tcp Port Sharing

Issue with Listening at an Endpoint connecting to WCF from net.tcp protocol

血红的双手。 提交于 2020-12-06 03:02:45
问题 This weird Error was appearing from one day before posting this post. Previously it was working fine, but not now. At one movement restarting the system, the error disappears and able to access the application. and after again rebooting the system the error begins to appear without knowing the root cause. Enabled Protocols: net.tcp,http I could able to browse the below link http://localhost/TAServices/AuthenticationManager.svc http://username.domainname.com/TAServices/AuthenticationManager

Issue with Listening at an Endpoint connecting to WCF from net.tcp protocol

穿精又带淫゛_ 提交于 2020-12-06 03:02:27
问题 This weird Error was appearing from one day before posting this post. Previously it was working fine, but not now. At one movement restarting the system, the error disappears and able to access the application. and after again rebooting the system the error begins to appear without knowing the root cause. Enabled Protocols: net.tcp,http I could able to browse the below link http://localhost/TAServices/AuthenticationManager.svc http://username.domainname.com/TAServices/AuthenticationManager

net.tcp binding metadata problem

那年仲夏 提交于 2020-02-02 11:31:12
问题 <system.serviceModel> <services> <service name="SUR.Core.Service.Implementation.SURDirectoryService" behaviorConfiguration="DefaultServiceBehavior"> <host> <baseAddresses> <add baseAddress="net.tcp://127.0.0.1:8731/ISURDirectoryService"/> </baseAddresses> </host> <endpoint address="" binding="netTcpBinding" bindingConfiguration="DefaultDirectoryServiceBindConfig" contract="SUR.Core.Service.Facade.ISURDirectoryService"/> <endpoint address="mex" binding="mexTcpBinding" contract=

WCF Blocking problem with mutiple clients!

孤者浪人 提交于 2020-01-24 19:51:07
问题 I seem to have a blocking issue with WCF. Say I have two users and each have created their own instance of a class exposed on a WCF host using net.tcp with endpoint something like this "net.tcp://localhost:32000/SymHost/". The class is PerSession context and concurrency is reentrant. The class exposes two methods Alive() which return a bool of true straight away and an AliveWait which I inserted which does a Thread.Sleep for 4 seconds before returning true (testing purposes). Now client 1

How to force a net.tcp mex endpoint (mexTcpBinding) to participate in port sharing?

前提是你 提交于 2020-01-22 13:49:11
问题 I have a WCF service which is hosted as a Windows Service. We would like to enable a mex endpoint at the same address (but with a '/mex' suffix). I have been trying to do this (unsuccessfully) using the following configuration: <system.serviceModel> <services> <service name="MyCompany.MyService" behaviorConfiguration="defaultServiceBehavior"> <host> <baseAddresses> <add baseAddress="net.tcp://localhost"/> </baseAddresses> </host> <endpoint address="MyService" binding="netTcpBinding" contract=

Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http]

断了今生、忘了曾经 提交于 2020-01-16 18:09:47
问题 I have been using http for all these and when i am working with net.tcp and when adding the reference i am getting an error like Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http]. my web.config <?xml version="1.0"?> <configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <system.serviceModel> <services> <service behaviorConfiguration="servicebehave" name=

IIS 7.5 / WCF - net.tcp status unknown

Deadly 提交于 2020-01-05 04:07:05
问题 I'm trying to get my WCF service working with netTcpBinding instead of wsHttpBinding , but I can't seem to get it working. I added the net.tcp binding to IIS7.5 but the status is Unknown ( and when I also remove the http binding it puts a big red X through the site and I have to add a new http binding before I can access any settings again ). I already looked here and on Google but I could only find two or three posts about this issue without any true solutions. What I have: WAS service

The server has rejected the client credentials, WCF as Windows Service

ε祈祈猫儿з 提交于 2019-12-30 04:31:04
问题 I am able to connect to my WCF service with the Win-form application, however i am not able to do so with my windows service. Whenever i fire open() to the proxy it throws the following error The server has rejected the client credentials Inner Exception: System.Security.Authentication.InvalidCredentialException: The server has rejected the client credentials. ---> System.ComponentModel.Win32Exception: The logon attempt failed --- End of inner exception stack trace --- at System.Net.Security

WCF net.tcp service and stored assembly in SQL Server

馋奶兔 提交于 2019-12-25 07:46:26
问题 I have a simple client of WCF service which works with net.tcp protocol. This client should be added to database as stored assembly. From service config: <service name="ServiceDocument.DocService" behaviorConfiguration="TCPServiceBehavior"> <endpoint name="DocServiceTCP" address="net.tcp://localhost:5430/DocService" binding="netTcpBinding" bindingConfiguration="netTcpConfig" contract="ServiceDoc.IDocService"/> <endpoint name="DocServiceMex" address="net.tcp://localhost:5431/mexDocService"