Questions tagged [wcf-callbacks]
71 questions
1
vote
1 answer
Why is my WCF callback timing out?
I have the following service and callback contracts (abridged):
Service Contract:
[ServiceContract(CallbackContract = typeof(ISchedulerServiceCallback))]
public interface ISchedulerService
{
[OperationContract]
void Stop();
…

ProfK
- 49,207
- 121
- 399
- 775
1
vote
1 answer
WCF Callbacks not working for multiple clients
I've managed to create a WCF service with callbacks. The callbacks are working as expected, but only for one client.
If I start another client, the first one stops receiving callbacks, but the second one receives them twice and so on.
I've tried…

Stefan Schmid
- 1,012
- 10
- 28
1
vote
1 answer
CommunicationException; Store App -> .NET 4.5 WCF Duplex TCP Service; Instant Timeout
I am having trouble getting a Windows Store App to make calls into a WCF service.
The service is a Duplex service using a netTCP binding. The first time the client (A Windows 8.1 Store Application) uses the service, it throws an exception:
An…

PatrickV
- 2,057
- 23
- 30
1
vote
1 answer
Only one callback at a time - WCF limitation?
I stuck on this one for about two weeks now - So could someone tell me, is there a limitation from WCF that only one callback at a time can be handled by a callback object? I have tried just about anything I can find in trying to resolve this issue…

user2434400
- 619
- 2
- 7
- 13
1
vote
1 answer
How can the WCF RoutingService route callback messages from two different WCF servers with the same contract to a client?
My WCF servers work like this: You subscribe to them by calling a service method, say Subscribe(). They send you results back on a callback channel, say MessageReceived(string message).
My issue right now is that I am only getting callback messages…

Alexandru
- 12,264
- 17
- 113
- 208
1
vote
1 answer
Receiving a WCF callback service from a ASP.NET web app hosted in IIS
I have been working on this issue for a couple of days now.
The problem has 3 working parts.
I have a ASP.NET site , WCF IIS hosted service and WPF xbap app.
What I'm trying to do is pass variables from the ASP.NET site to the WPF xbap app. So I…

Scott
- 11
- 4
1
vote
1 answer
Display Messages after getting response from WCF
I am building a WCF Application for Push notification where user have to first subscribe himself and after subscribe the client get response from WCF.
i use wsDualHttpBinding as binding and callback in WCF.
I don't want to call recursive function…

ankit Gupta
- 313
- 1
- 5
- 19
1
vote
0 answers
WCF Service for two type of clients, only one with callback
I want to create a WCF service for two types of clients
1- for windows phone 7
2- for windows (wpf)
and I want to support callback for (wpf client) only, since i dont' need it for windows phone 7 (and I think it doesnt support it)
I have no problem…

Bayar
- 21
- 1
1
vote
0 answers
WCF interoperability with callback contract
I need to implement a service that supports duplex communication with non WCF clients (python, Java, Ruby, etc.). However, none of the default bindings seem to support such a scenario (wsDualHttpBinding not really being interop:…

Till Hoffmann
- 9,479
- 6
- 46
- 64
0
votes
1 answer
PerSession WCF Service with Callback for Silverlight client
We would like to develop WCF service for SL clients, which should support session management (PerSession) and callbacks. The WCF service would be hosted as a Windows service.
What would be best WCF binding choice (wsdual, pollingDuplex, any other)?…

Jayanta Dey
- 307
- 1
- 9
0
votes
1 answer
Multi-threading synchronization using wide scope lock with WCF callbacks
What I want to do is this--
I want to make a proxy call to a service and receive data on a separate thread through an asynchronous callback...the tricky part is that I want to make the foreground thread sleep until all of the data has been…

Bil Hooper
- 3
- 2
0
votes
1 answer
how to change service callback timeout dynamicly
I need to set my service's callback timeouts
but i cannot find where are they defined.
this needs to be hardcoded.

Nahum
- 6,959
- 12
- 48
- 69
0
votes
1 answer
Consuming a WCF Duplex service inside of a RESTful service
Suppose I wanted to create a WCF WebHTTP service ("ServiceREST") that had a reference to a duplex service ("ServiceDuplex"). ServiceDuplex requires implementations of certain callback members to deliver data that is requested from it. For example,…

Thelonias
- 2,918
- 3
- 29
- 63
0
votes
1 answer
How can I callback the client and expose a new Channel with instance context
I'm making a WCF service with netTcpBinding which has a main lobby with multiple chatrooms which the clients can enter. The Lobby class implements ILobby as the service contract.
When a client wishes to enter a room I want to callback the client…

Freddy Flares
- 91
- 7
0
votes
2 answers
WCF callback won't pass derived class
CLIENT SIDE
my client got the following callback contract:
[ServiceContract]
interface IEvent
{
[OperationContract(IsOneWay = true)]
void OnEvent(string serverName, string changeType, List myObjects);
}
and got a class…

Nahum
- 6,959
- 12
- 48
- 69