Tagged Questions
The net.tcp tag has no wiki summary.
10
votes
1answer
1k views
WCF: How to detect client-side if the server disconnects me
I have a WCF self-hosted service with a net.tcp DuplexChannel. On the server I run the following to disconnect a client:
((ICommunicationObject)client.CallbackChannel).Close();
This works fine but ...
8
votes
4answers
10k views
How to check the availability of a net.tcp WCF service
My WCF server needs to go up and down on a regular basis, the client sometimes uses the server, but if it is down the client just ignore it.
So each time I need to use the server services I check the ...
7
votes
1answer
4k views
WCF Service Base Address Http and netTcp
I have two base addresses defined in my WCF Service config file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.diagnostics>
<sources>
...
5
votes
1answer
955 views
Detect socket disconnect in WCF
We're building a WCF server (.NET 4.0). It will only use net.tcp transport.
When a client closes the TCP connection, the server gets unhandled CommunicationException, and terminates.
Q1. How do I ...
5
votes
2answers
663 views
How to add net.tcp to the “Enabled protocols” by using a WIX 3.5 project/setup?
We have a few MSI packages (generated by WIX) that install WCF services. Most of these services need net.tcp for their endpoint bindings.
I'd like to make our deployment life easier and automate the ...
5
votes
4answers
606 views
Elmah for non-HTTP protocol applications OR Elmah without HttpContext
We are working on a 3-tier application, and we've been allowed to use the latest and greatest (MVC2, IIS7.5, WCF, SQL2k8, etc). The application tier is exposed to the various web applications by WCF ...
5
votes
2answers
921 views
Obtaining a list of connected clients for a wcf service
How can I enumerate some sort of location identifier for all of the connected clients for a servicehost? I'm using a duplex connection for long running calculations. The Service host is a singleton.
...
5
votes
2answers
9k views
WCF: Net.TCP multiple bindings, same port, different IP Addresses
I've run into a problem. I'm a little new at WCF so any help would be greatly appreaciated.
Here's my code:
public static void StartHosts()
{
try
{
// Create a new ...
4
votes
5answers
255 views
The server has rejected the client credentials
I have a WCF service with net.tcp binding, hosted on the server as a windows service. I am not able to access this service. However I was able to do so, when I hosted it on my local network.
Error ...
3
votes
2answers
194 views
Enable net.tcp protocol from Web.config
I have WCF service that has http and net.tcp endpoints. I have deployed the service to IIS 7.5 (Server 2008R2), everything is working good.
My question is this, is there a way to set enabled ...
3
votes
1answer
2k views
3
votes
2answers
2k views
WCF Duplex net.tcp issues on win7
We have a WCF service with multiple clients to schedule operations amongst clients. It worked great on XP. Moving to win7, I can only connect a client to the server on the same machine. At this ...
3
votes
2answers
1k views
WCF Net.TCP service throwing obscure errors
I am trying to enable an additional net.tcp endpoint (which uses Username authentication) for an existing WCF service. The service is hosted in IIS7.
Executing a client against the service returns ...
3
votes
2answers
2k views
How can I enable Net.Tcp Port Sharing Service programmatically?
I would lke to programmatically enable and start the Net.Tcp Port Sharing Service in C#. I can easily start the service using the ServiceController class. However, how do I enable the service, which ...
3
votes
3answers
14k views
Hosting WCF service in IIS 7 (WAS) with net.tcp binding on TWO tcp ports
By default IIS 7 Web site has net.tcp binding with "808:" binding information string. If i add another net.tcp binding with "xxx:" exception occurs:
This collection already contains an address with ...
3
votes
1answer
1k views
Is it possible to use netTcpBinding with the VS 2008 development server?
Is it possible to have a WCF service configuration like this:
<service behaviorConfiguration="WcfService1.Service1Behavior"
name="WcfService1.Service1">
<endpoint address="" ...
3
votes
2answers
9k views
WAS hosting a WCF service with net.tcp binding
I'm trying to publish a calculation service on a bunch of computers which will be used by an application server. The calculation servers are stateful and need to be able to perform asynchronous ...
2
votes
3answers
83 views
The server has rejected the client credentials, WCF as Windows Service
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 ...
2
votes
1answer
45 views
WCF duplex TCP communication error
I have a sample service to test WCF net.tcp communication. It is very simple service and all it does is subscribing a client to the service and then calls callbackchannel to notify all connected ...
2
votes
1answer
312 views
net.tcp service is unavailable for the protocol of the address
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 ...
2
votes
1answer
336 views
WCF Using net.tcp binding
I'm running Windows 7 64-bit. I'm attempting to host a WCF service which will use Windows security (net.tcp binding) on IIS7. The service I'm running is a very simple skeleton app, which works fine ...
2
votes
1answer
2k views
How to force a net.tcp mex endpoint (mexTcpBinding) to participate in port sharing?
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 ...
2
votes
2answers
783 views
WCF net.tcp only service giving TargetInvocationException/ServiceModel.CommunicationException
I'm writing a WCF (net.tcp) file transfer service which will eventually split files into several pieces and transfer said pieces to the client from the server/service. Currently the client and server ...
2
votes
2answers
2k views
WCF net.tcp bindings, message formats and security questions
sorry for the stupid questions but there are just some things about WCF I cant get my head around. Would be greatful for some advice on the following....
At a very basic level is it correct that WCF ...
2
votes
1answer
606 views
Socket/Timeout in Azure WebRole for synchronous communication with WCF Host in WorkerRole
I'm trying to get this to work on an internal tcp connection. The code runs flawlessly in development but when deployed to Azure I get ...
a CommunicationException "The socket connection was aborted" ...
2
votes
2answers
6k views
Could not find a base address that matches scheme net.tcp
I have moved my file transfer service from basicHttpBinding to netTcpBinding
as I am trying to set up a duplex mode channel. I have also started my net.tcp
port sharing service.
I am currently in ...
2
votes
2answers
10k views
net.tcp binding metadata problem
<system.serviceModel>
<services>
<service name="SUR.Core.Service.Implementation.SURDirectoryService" behaviorConfiguration="DefaultServiceBehavior">
<host>
...
1
vote
1answer
52 views
Can I use net.TCP along with GZip technology in WCF
Can we use net.TCP binding to implement GZip in WCF or it can only be configured with Http and WsHttp bindings.
1
vote
1answer
49 views
net.tcp service works when hosted by Net.Tcp Listener Adapter, but not Windows Service
I created a WCF net.tcp service and hosted it using the Net.Tcp Listener Adapter, and it works great - I have some messaging set up on the callback so the service updates the client with the status. ...
1
vote
1answer
57 views
Do I need svc file to setup Castle Wcf Facility for non-HTTP services
I am confused about the castle wcf facility registration.
I read some blog posts for BasicHttpBinding.
But could not find a clear easy sample to setup a net.tcp setup.
I want to host the service ...
1
vote
0answers
73 views
WCF service hosting using website other than “Default Web Site”, default port, net.tcp
My basic question is for guidance hosting a WCF service in IIS7 (2008 R2) on the default net.tcp port of 808 on a website other than "Default Web Site". I have 4 sites each bound to a specific IP ...
1
vote
2answers
604 views
Host WCF service with net.tcp binding through IIS Manager 7.5
I am fairly new to hosting web applications and web services. Though I was successful in hosting a web application, I am running into road block after road block when trying to host a WCF service with ...
1
vote
2answers
353 views
Hosting WCF Service on IIS 7 with net.tcp bindings - Error with consuming the service
I am trying to host a WCF Service with Net TCP bindings in IIS 7 / Win 7. The service is hosted and i can add a reference to it in my client application.
Here is the service configuration file:
...
1
vote
0answers
94 views
Should we use overrides or a static constructor when overriding AutofacServiceHostFactory
We are running WCF services with net.tcp bindings in IIS 7.5, so we make use of non-HTTP activations and WAS Hosting. We are have created a custom service host factory for each service, which is ...
1
vote
1answer
767 views
Could not connect to net.tcp://localhost… TCP error code 10061
Referring to a video tutorial about WCF service in windows service,i have created a sample WCF service and hosted that Service with netTcpBinding in Windows Service.(since i want this WCF service to ...
1
vote
1answer
101 views
Host WCF service on shared provider
I am trying to access my WCF service on a shared hosting server, i can consume the service but when i try to call the service i get "The caller was not authenticated by the service" error.
Client ...
1
vote
0answers
344 views
WCF: Multiple bindings on TCP.NET
I am trying to set up a website under IIS 7.5 with multiple tcp.net bindings.
Since the service is behind a loadbalancer I need multiple endpoints for the service:
log.o1881.no/log/service.svc
...
1
vote
1answer
124 views
How to enable WCF net.tcp in IPSec?
I'm trying to connect from a web app to another web app using the WCF.NET NET-TCP protocol. This net.tcp protocol is enabled in IIS and is using the port TCP 808 in my case.
I've configured IP Filter ...
1
vote
1answer
179 views
Is it possible to have a WCF/WAS service using net.tcp port 80 and IIS on the same port?
Does the TCPPortSharing service permit me to have a WAS activated TCP-Based service on the same port as IIS's port 80?
The picture below shows net.tcp at port 808. Can I change this to port 80? If ...
1
vote
2answers
182 views
Why is net.tcp in IIS7 a problem in a shared hosting environment?
Im trying to write a chat app with the push-model but up to now I have only done so in a intranet-environment with a self-hosted wcf-service (using duplex net.tcp). Now I want to place this server ...
1
vote
2answers
446 views
What Service name does one use for Workflow WCF Services (XAMLX)
I am trying to figure out how to provide endpoints etc to a WF Service that I created (MyFoo.xamlx). Typically when you create a Service you need to have the Service name="" reflect the type of ...
1
vote
1answer
754 views
Host WCF in IIS 7 using net.tcp binding
I am hosting a WCF service in IIS 7 through net.tcp binding. I have two questions about IIS configuration.
Can I only configure net.tcp protocol in the the web site containing my service code? All ...
1
vote
2answers
571 views
Timeout problem in distributed transaction over WCF net.tcp binding
I have a strange timeout problem when running a distributed transaction over a WCF net.tcp binding. The transaction always times out after exactly 10 minutes. I think I have set all the timeouts I ...
1
vote
2answers
2k views
WCF inner exception message “A registration already exists for URI 'net.tcp://…' ” when trying to support a dual LAN from a WCF service
I have a self-hosted WCF service which is using the net.tcp protocol for an endpoint and it works fine on a PC with a normal LAN card.
However, I want to support PCs which have dual LAN cards and ...
1
vote
2answers
1k views
WCF (net.tcp) service: Works on all but one system
I've written created a WCF service inside a Windows service, and for some reason I can't figure out, I deployed the service on a bunch of systems (all nearly identical in OS and configuration), and ...
1
vote
1answer
4k views
mexTcpBinding in WCF - IMetadataExchange errors
I'm wanting to get a WCF-over-TCP service working. I was having some problems with modifying my own project, so I thought I'd start with the "base" WCF template included in VS2008.
Here is the ...
1
vote
2answers
785 views
WCF net.tcp windows service - call duration and calls outstanding increases over time
I have a windows service which uses the ServiceHost class to host a WCF Service using the net.tcp binding. I have done some tweaking to the config to throttle sessions as well as number of ...
1
vote
3answers
498 views
WCF Blocking problem with mutiple clients!
Hi
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 ...
1
vote
1answer
1k views
wcf net.tcp using SSL
Has anyone had experience using SSL with net.tcp binding in WCF?
Ive read its possible, but not finding good information on how to implement it. I would love to hear from anyone who knows about or ...
1
vote
4answers
9k views
How to solve “The ChannelDispatcher is unable to open its IChannelListener” error?
I'm trying to communicate between WCF hosted in Windows Service and my service GUI. The problem is when I'm trying to execute OperationContract method I'm getting
"The ChannelDispatcher at
...