net.tcp is a TCP-based network protocol for high-performance communication provided by Windows Communication Foundation (WCF).
0
votes
1answer
16 views
Accessing a WCF service in a Windows Store App hangs
I've started work on a Windows 8 store app that needs to communicate with a WCF service running as a Windows Service on a Windows 7 server. The binding is net.tcp, with no security (yet). I've also ...
5
votes
2answers
103 views
+200
Setting up WCF TCP service in a web application
I've been battling with this for days, literally going through a hundred articles giving partial guidelines on how to set up a WCF TCP based service. If someone can help me, I will make this question ...
4
votes
1answer
151 views
WCF over net.tcp with security mode none gives exception
We are streaming data with WCF using callbacks.
The WCF is hosted in IIS (default settings, just added net.tcp to protocols).
We are trying to disable security on the WCF, so I've set security mode ...
0
votes
0answers
25 views
No Endpoint listening / incorrect address or SOAP action
I can hit the service page just fine from within IIS. I can browse to the *.wsdl page from the service page just fine. when I try to make the connection via my XBAP, I get the following error:
There ...
0
votes
1answer
80 views
WCF is not sending stream (net.tcp binding)
I can not send stream using net.tcp binding. I have MessageContract to send data, and WCF is passing the FileName but the stream FileByteStream is empty
[MessageContract]
public class ...
0
votes
1answer
91 views
IIS WCF net.tcp binding error
I know there are many questions about this, I'we tried them all and it didn't work...
I'm using IIS8 on WS8, added net.tcp to protocols list and binding to 808 and I still get this error:
...
0
votes
1answer
137 views
Mono and WCF Net.Tcp Binding on all IP Addresses
As mentioned in this article, in .net it's possible to bind a web service to all ip addresses using the "address" 0. However, this doesn't seem to work with mono (version 2.10.8.1).
Here is my ...
0
votes
0answers
93 views
net.tcp port sharing and mono
in my self-hosted WCF application I've got a problem using port sharing with mono.
Given the following code, this exception is thrown:
System.Net.Sockets.SocketException: Address already in use
...
1
vote
1answer
150 views
IIS8 There was no endpoint listening at net.tcp:
i have a WCF service host in IIS8 and I want to use a net.tcp binding.
I have this configuration:
Web.config:
<service behaviorConfiguration="MyBehavior"
...
0
votes
0answers
21 views
WCF service binds at 0:0:0:0 instead of dns alias
Hej,
We have a cluster where to WCF services are running as a resource each in a separated resource group. These groups have a dns alias named to there cap name e.g. APPQA en APPPROD each with an ...
0
votes
1answer
198 views
WCF Net.tcp with sspi fails unless client and server using same windows Identity
I have a WCF Service being hosted by a windows service. The client app succeeds if I log on to the client machine using the same credentials as the service is running under, but it fails with an ...
0
votes
0answers
123 views
WCF net.tcp binding force NTLM authentication
I am setting up both the server end and client end of a WCF communication channel that must use TCP binding and must be done programmatically rather than in config file (as this is a third party ...
0
votes
2answers
158 views
WCF net.tcp binding client type
I have WCF service with net.tcp binding. Visual Studio create CLIENT in Windows can connect, get proxy and it works!
Now I am interested how can connect from other OS's, for example from:
iOS
...
0
votes
0answers
31 views
Bridge concept , Questions about building scalable bridge
I built a net.TCP WCF which play as a bridge between 2 clients.
My concern is the scale how I can do that if I get 1 million users, so I have few questions and hope get answers:
Is there better way ...
0
votes
0answers
101 views
Windows Service WCF net.tcp connection
I have a .NET 4.0 WCF hosted as a windows service. When I run it in debug mode I can connect to it from the WCF Test Client as well as another MVC application. When I install the WCF with ...
0
votes
2answers
198 views
Can ASP.NET connect to WCF using net.tcp protocol?
There is a WCF Windows Service listening in netTcpBinding protocol, which I understand is Microsoft's proprietary protocol (correct me if i am wrong). I need to write a website that will consume the ...
1
vote
1answer
141 views
When application creates a lot of WCF connector classes, all connections to the server time out
I've got a WCF net.tcp server, which exposes a service with 2 methods:
string Get(location);
void Put(location);
maxConnections is set to int.MaxValue. on client side, maxConnections is set to 800. ...
1
vote
1answer
219 views
Mono WCF client cannot talk to .NET WCF server when Transport security is enabled
Here is how I run WCF host:
var baseAddress = new Uri("net.tcp://localhost:2222/blah");
var binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Transport;
var sh = new ...
1
vote
1answer
144 views
How can I secure a WCF communication with net.tcp binding
How can I secure a WCF communication with net.tcp binding between two C# applications ?
I've run into transport and message security, but is there a solution which I could implement which uses one of ...
2
votes
0answers
240 views
IIS7 app pools shutting down while hosting WCF services with net.tcp
I'm hosting WCF services in IIS 7/WAS on Windows Server 2008 using http and net.tcp bindings.
I'm able to call the services with both http and net.tcp without issue most of the time, but occasionally ...
1
vote
2answers
479 views
WCF service with net.tcp binding (hosted on IIS 7) doesn't work under domain user (for app pool)
I have a WCF service with the following configuration
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
...
0
votes
1answer
337 views
Unable to create nettcp port binding on IIS website
I have been attempting to create a nettcp port binding on the IIS default website for the port 9999; however always get the following error from the net.tcp listener;
Blockquote An error occurred ...
0
votes
1answer
233 views
Opening a net.tcp connection from a WCF service
My situation looks like this:
I have a WCF service acting as a proxy between clients and an internal WCF service that is actually handling the requests. This service is hosted in IIS 7.
I have added ...
1
vote
0answers
140 views
ServiceModel.DuplexClientBase<T> missing in .net portable subset
I've tried to make a wcf service referecne to a net.tcp duplex from a portable class library (VS2012). The generated code refers to some classes of System.ServiceModel wich are not included in the ...
1
vote
0answers
344 views
Get host name from ipv6 address
I need to ascertain the calling computers host name within my wcf program. The following code only works if I supply an ipv4 address:
System.Net.IPAddress[] addresses = ...
0
votes
2answers
376 views
WCF net.TCP self hosted on azure emulator - Windows 7
I'm developing a WCF service using Net.tcp Binding. The service is hosted on the Run method of a worker role.
When deployed to my Azure Account, it works fine, but in runtime it throws an exception:
...
1
vote
1answer
414 views
WCF net.tcp with ssl
Well im trying to setup a net.tcp connection with SSL encryption
I have the following classes
Wcf Interface:
[ServiceContract()]
public interface IServer
{
[OperationContract]
void ...
1
vote
0answers
120 views
SecurityMode.None leads to TimeoutException instead of CommunicationObjectFaultedException
I have a WCF self-hosted service with net.tcp binding.
I need it to be nonsecured with reliable session.
When I configure it to nonsecure all calls to closed service (close, crash, process kill - any ...
0
votes
1answer
80 views
WCF Net.tcp VS SqlServer on net
i'm starting a new project, where i'll have a server.
and i've a doubt about implement using WCF net.tcp, with windows services on the server side, or a sql server direct access from the net.
I'm ...
1
vote
1answer
1k views
WCF services on IIS with net.tcp port sharing. Is it good solution according to performance issues?
We are planning to develop a big set of WCF-services with net.tcp binding (about 50 services). They will be hosted on IIS.
As I understand, there are two way to realize it:
Create one site on IIS. ...
0
votes
0answers
127 views
Corrupted MS Access cells in C# application - oleobject
We have a desktop based biometric registration and attendance software built on .NET & Ms Access. This desktop client synchronizes with our cloud server every now and again. The issue I am facing ...
1
vote
1answer
806 views
“There is no compatible TransportManager found” error for net.tcp WCF service (mex endpoint) on IIS 7
I've created service with the following config
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="CommonUserNameBinding" maxConnections="1000" ...
0
votes
1answer
240 views
Performance problems with net.tcp binding using WAS in IIS
We are facing problems with our net.tcp services hosted in IIS even under minimal load. The same services are also exposed through HTTPS from another endpoint. Clients using HTTPS work without any ...
0
votes
0answers
152 views
Silverlight 5 using net.tcp service
I am developing a silverlight 5 website which is using a net.tcp service. Everything works well. But there is an annoying issue.
Everytime the user enter the website. A windows login window will ...
0
votes
1answer
2k views
NET TCP/HTTP WCF Hosted in IIS
I'm new to WCF and IIS but been doing some reading on how to host a WCF application in IIS. We have a system we're trying to deploy to IIS which needs HTTP and NET.TCP endpoints. I have everything ...
2
votes
1answer
2k views
Socket connection aborted using NetTcpBinding
I know there are quite some questions about this issue already, but no reply solved my problem.
I have a NetTcpBinding on a server running, and from time to time (not always, like 1 out of 20 to 60 ...
3
votes
1answer
161 views
Is it possible to avoid specifying servicePrincipalName if both client and service are running under the same account on the same server?
I have a WCF service configured with net.tcp binding:
<netTcpBinding>
<binding >
<security mode="Transport">
<transport clientCredentialType="Windows" ...
0
votes
1answer
1k views
WCF Net.tcp service randomly faults [closed]
This code is slightly modified and almost taken straight from examples off the internet of getting a net.tcp duplex service running with a publish / subscribe mechanism. This works great for awhile ...
0
votes
2answers
869 views
How to host and connect to a net.tcp service
I need to to code from start a WCF service with net.tcp binding self hosted on IIS7 and call it from a console application.
Can anyone guide through a step by step guide?
I would appreciate a step ...
0
votes
0answers
483 views
net.tcp WCF Windows Service
I am currently working on a project which uses a WCF Service which is hosted in a Windows Service. I am fairly new to this concept as most WCF Services which I have worked on before, I have hosted in ...
1
vote
2answers
273 views
Unable to find assembly file 'example.dll' while starting windows service
I have developed a WCF service which uses the net.tcp binding and read and write files to the file system. When I start the windows service (in a console) I get following error even if the sample.dll ...
1
vote
2answers
803 views
IIS 7.5 / WCF - net.tcp status unknown
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 ...
1
vote
2answers
1k views
WCF Transport Windows Authentication with NET.TCP only works locally
I have a WCF service running locally, and a client running remotely. I have matched bindings on both sides to:
<binding name="TcpBindingConfiguration_2">
<reliableSession ordered="true" ...
0
votes
2answers
989 views
WCF net.tcp communication error
I created a WCF Service with net.tcp binding and I was able to add a service reference to it in my console application without errors.
After doing this I am trying to self host this service in my ...
1
vote
0answers
367 views
Port Sharing Enabled Issue with a WCF Net Tcp Service (windows host)
I use the following piece of code to host and start a wcf service using net tcp binding:
public void StartServices()
{
NetTcpBinding portsharingBinding = new NetTcpBinding();
...
2
votes
0answers
124 views
Why is net.tcp IIS port configured under “Binding Information” instead of under “Port”
In IIS7 when you configure an http binding for your WCF services you set the port in the port column and the ip in the ip address column; but when you configure a net.tcp binding you have to cram it ...
0
votes
1answer
302 views
Disable connection pooling for WCF net.tcp bindings
I have a specific scenario where I need to disable net.tcp connection pooling. I realize it's not an ideal configuration, however I need to do it temporarily to troubleshot issues in my specific ...
1
vote
1answer
772 views
No endpoint listening error on net.tcp
Service config
<service name="Services.MyService">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:9000/Services/MyService/" />
...
0
votes
0answers
773 views
Can't test net.tcp service in wcftestclient
I have seen these related questions but didn't find a solution to my problem:
Service cant be tested via wcftestclient
Service not visible on wcftestclient
So the error I get is the classic Error: ...
0
votes
1answer
1k views
Hosting WCF REST and NET.TCP endpoints together on Azure with ASP.NET
I'm hosting my REST services by an ASP.NET application on Windows Azure. It's working perfect, but I needed an Inter-Role communication service a few days ago, I built my service but I have problems ...