Tagged Questions

2
votes
2answers
2k views

WCF: Net.TCP multiple bindings, same port, different IP Addresses

Hi there, 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 { …
0
votes
1answer
31 views

How to create Net.TCP WCF binding for\using SOAP 1.1?

How to create Net.TCP WCF binding for\using SOAP 1.1? Is it posible? If yes. What do I need? MSDN if there is any help on this. Open Source Libs/wrappers. Tutorials and blog a …
0
votes
2answers
86 views

How to use simple TCP/IP sockets connection over Net.TCP WCF binding?

How to use simple TCP/IP sockets connections over/with Net.TCP WCF binding? Idea is – We have a web service with Net.TCP binding on some URL, port. We want to take advantage of th …
1
vote
2answers
34 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 ho …
1
vote
2answers
684 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 contai …
0
votes
1answer
277 views

create net.tcp binding wcf service object in silverlight

Hello i have develop a silverlight application with wcf net.tcp binding. i want create an object of service in sliverlight. how it is possible. please help me. Thanks
0
votes
2answers
425 views

How to solve “The ChannelDispatcher is unable to open its IChannelListener” error?

Hi, 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 Cha …
1
vote
1answer
138 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"> <endpoi …
0
votes
4answers
1k views

How to host WCF through TCP Ports?

How to host wcf services,through TCP Ports,and how to listen to it?,and consume services through these TCP ports? i.e apart from net.tcp binding,is there someway to host and consum …
0
votes
2answers
124 views

Non-http Protocol Support in windows xp or Windows Server 2003? (net.tcp)

Will it be possible for windows xp or windows server 2003 to support net.tcp for WCF, well it works in windows server 2008 as IIS 7.0 supports net.tcp,but is there anyway for IIS …
0
votes
2answers
362 views

c# WCF host.open failing

I am doing a WPF application and it is also a WCF server, the problem I have is that I need the ServiceHost to be open and listen in a port for the clients and accept requests as s …
1
vote
4answers
853 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 s …
1
vote
1answer
1k 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 …