1
vote
1answer
57 views

Passing callbacks to C code from .NET, valid code or not?

We have a .NET (c#) wrapper for a rather large C API. In this wrapper the user can provide a callback which is called repeatedly from the native code. The callback looks like this : ...
1
vote
3answers
57 views

How to detect C# Callback handler sender

I receive some controller from 3rd party API, then i register some event that controller exposes, the event callback handler is with signature: public delegate void SomeCallbackFromAPI(Guid ...
0
votes
4answers
89 views

Callback function and best practice

UPDATE: I phrased the question wrong. Both the inner and outer Latitude/Longitude members need to update each other resulting in recursion. The outer members get updated by a database context while ...
0
votes
1answer
65 views

WCF Callback locking up if called in same thread as current context

I hope I can word this correctly. I have a WCF Service that I'm using (duplex channel communications) in which one client registers with the service. The service's registration method returns a ...
1
vote
0answers
78 views

WinUSB asynchrous call in .NET with PInvoke

I have programmed a microcontroller with USB and connected it a PC using WinUSB. I am able to communicate with my uC in c++ and in VB.NET using pinvoke with synchronous (blocking, overlapped = NULL) ...
0
votes
0answers
66 views

ajaxpro 2.0 : IE 10 sends an error when an ajax function is in the callback function

I use Ajaxpro.2 in a .net 4.0 Application. An ordinary Ajax-Function works perfect but when i want to add another Ajax-Function in the callback function IE 10 sends a Script Error 16389 in core.ashx ...
0
votes
2answers
110 views

Making a return inside callback

public static string GetFoo() { string source = GameInfoUtil.GetSource(repairRequest, () => { return "0"; // this line gives error }); . . MORE ...
11
votes
3answers
709 views

SOAP web service callback architecture?

I am quite new to web services, JAX-WS etc. so maybe noob question... So, I want to implement a web service to make two systems communicate. The "client" system is interested in events that are ...
1
vote
3answers
60 views

C# 'callback' from a second form

I'm trying to callback from a second form in C#, however failing to do it, can anyone please help? // Form 1 (Main form) public void CallBack() { if (radioBox1.Checked) ...
4
votes
2answers
123 views

Callback from Dialog window to Main window

I'm developing a WPF MVVM application which make use of MVVMLightToolkit as a third party helper.My scenarion is as follows: I have a main window and while closing the main window, I have to show a ...
2
votes
0answers
74 views

WCF service Return to different clients

I have a WCF Service that I'm using to distribute files to clients that works in the following manner: Clients send a file to the service Other clients poll the service asking for files If the ...
1
vote
1answer
175 views

Callback inside a callback C#

Trying to set up a server tool that subscribes to a service and notifies me when a event occurs via a callback. I have the subscription part working and when an event is triggered, it hits the ...
1
vote
1answer
75 views

Dangling thread in wcf callback

I have wcf service that calls back a client after finishing some job. I have a couple of simple questions. If my client crashes or I close client app before the service finished it's job, what happens ...
1
vote
3answers
594 views

Do you have to call EndInvoke (or define a callback ) for asynchronous method calls even if you don't have anything to do when it returns

I found the following code snippet on CodeProject on calling methods asynchronously at ... http://www.codeproject.com/Articles/14931/Asynchronous-Method-Invocation private void ...
0
votes
2answers
146 views

How to create Callback Event on ICollection in C# - for batching

Is there a way to create a callback function that fires when a list object (any Class implementing the ICollection interface of C#.NET) reaches a certain capacity (number of items in the list)? I ...
0
votes
0answers
156 views

Getting a “Requested service not found” error when calling back using a delegate (Net Remoting, HttpChannel),

I have a .NET remoting application consisting of a client that passes about 8 delegates to the server so the server object can call back to the client. I am running into a situation where the server ...
0
votes
1answer
972 views

WCF Timer based service not calling client back

I want to make a WCF timer service where clients can register in order to get called back from the service after a certain time has passed. The problem is that the client doesn't get called back. No ...
0
votes
0answers
103 views

AppDomain.UnhandledException does not handle exception in WebRequset callback

Yesterday i faced strange behavior of WebRequest and AppDomain.UnhandledException: AppDomain.CurrentDomain.UnhandledException += (a, b) => { ...
2
votes
1answer
1k views

Do WCF Callbacks TimeOut

I've written a system that uses a Duplex NetTcp Channel with a callback to function as a publish/subscribe server. Do I have to worry about the callback timing out if not connection is sent after a ...
0
votes
0answers
85 views

GWT callbacks in ASP.NET 3.5

Hello i need to return my JSON that i get from my ASP.NET JSON server to my GWT callback. I get a 200 status code when i send my JSON back to the client but it never goes to my onSuccess method. ...
0
votes
1answer
297 views

WCF Callback between two services

I am trying to make a connection between two services. Service1 will send event notifications to service2. I want to use callbacks, between these two services. service1 will send event to service2 ...
2
votes
1answer
276 views

WCF service is deadlocking

Below, I have outlined my WCF service/client setup. When a single client calls IWCFService.Process multiple times in succession the service deadlocks between WCFService.Process and the line in ...
1
vote
2answers
368 views

ASP.NET Framework 4 client callback demo code complains about ListBox1

From this set of ASP.NET demo code: http://msdn.microsoft.com/en-us/library/ms178209.aspx in VS2010 in an ASP.NET project, I get error message: "The name 'ListBox1' does not exist in the current ...
0
votes
0answers
143 views

Using a C-callback function with .NET

I'm using a C-library from within .NET This all works quite nice. But I'm having troubles with a callback function. I have this C-code: Bool someCallBack(const char *name, int reason) { //some ...
-1
votes
3answers
71 views

Was this feature available in previous .NET

I am looking at some code from Charles Petzold, he is using the following syntax for PropertyChangedCallback public static readonly DependencyProperty CenterProperty = ...
1
vote
2answers
538 views

How to change an event handler callback dynamically

I've a serial port communication class which has the following code inside (among others but only the relevant part is shown): public Form1 m_parent; private delegate void ...
0
votes
0answers
368 views

Handling DTN_FORMAT and DTN_FORMATQUERY messages of the DateTimePicker control to use callback fields in format string in .NET

I need to use the callback fileds capability of the DateTimePicker control in .NET, what is described here in C++:example. But this is a little pain to implement the WmFormat method in .NET. ...
3
votes
1answer
535 views

Reverse P/Invoke (also) Managed Callback to Unmanaged Code

The included C# unit test and C code file attempts to pass a managed callback to unmanaged code. The code actually runs but the count variable never increments. So the test fails. The fact that it ...
0
votes
0answers
102 views

How to make WCF callback to clients consequences?

I have a WCF service and several .NET Windows form clients, which a client contains some sub-form running scanner data from a website. My problems is: How to make all sub-form get data consequence? ...
1
vote
2answers
621 views

How do I create a global exception handler for winforms app that is making asyncronous WebClient calls

I have a winforms app that is making asyncronous WebClient calls with a callback procedures as follows... using (var wc = new WebClient()) { wc.DownloadFileCompleted += new ...
1
vote
1answer
258 views

.NET Callback Delegate Syntax in MVC for MVVM

I am learning about MVVM so I can support an application that my predecessor developed. I came across this article which has been helpful. There is a piece of the code in the article that I don't ...
2
votes
5answers
939 views

What is the best way to pass multiple parameters to a Threading.Timer callback method?

On the past few projects of mine I've run into situations where I need to pass multiple parameters to a Threading.Timer callback method. Unfortunately, the constructor only accepts a single object ...
0
votes
3answers
992 views

Calling BAPI_DOCUMENT_CHECKOUTVIEW2 using SAP.Net Connector 3.0 returns “RFC Callback server not available”

I am trying to get a document from SAP DMS using SAP.Net Connector 3.0. I need to get the document and display in ASP.Net. I am using "BAPI_DOCUMENT_CHECKOUTVIEW2" for calling the function. But when ...
3
votes
1answer
3k views

ASP.NET - Ajax.BeginForm OnSuccess call back with params

I want to add more params to my OnSuccess call back (but keep the ajax context variable). What i did is: using (Ajax.BeginForm("Register", new AjaxOptions() { OnSuccess = "new ...
0
votes
1answer
211 views

.Net remoting sample won't run on my pc when connected to network

I am trying to understand .Net remoting with events and callbacks. While I was reading tutorials on internet I have found an article: codeproject: .NET Remoting Events Explained where this mechanism ...
4
votes
1answer
1k views

how to give callback function to the Dispatcher.BeginInvoke

I need to use callback function to do some post procesing tasks when the function started with the Dispatcher.BeginInvoke finishes. However i could not find any parameter in Dispatcher.BeginInvoke ...
1
vote
0answers
237 views

WCF Callback Client Failing

I have created a WCF service which has a callback. I have created a sample client which will subscribe to these callbacks. I have been using the ListBasedPublishSubscribe sample as a base for this. ...
4
votes
2answers
205 views

How to Call the Main UI Thread from a Service

I have a Service class which has an Action<> CallBack sent to it by its clients. How do I have the service call the Action<> CallBack on the Main UI thread so clients get the CallBack on ...
3
votes
2answers
145 views

.Net: CallBack should be on which thread?

I have built a helper class that talks to a JSON service. The class does its work in a background thread. When done, it calls an Action<> CallBack which the client sent it. Is it best to have the ...
2
votes
1answer
666 views

WCF: Use custom class in callback

I've managed to get WCF callback (over NamedPipes) working with strings, but I sadly can't get it to work with custom classes. Here's the service declaration + implementation: ...
2
votes
4answers
495 views

Web server calls back to web browser client machanisms in ASP.NET

Purpose: I want to implement a machanism by which web server can make call back to web browser client. Problem Description: I have a project where web browser client sends web request to web ...
6
votes
1answer
7k views

WCF asynchronous callback

I have successfully implemented the WCF callback pattern in my code and now I want to implement an asynchronous callback. Here is my interface code: [ServiceContract(Name = "IMessageCallback")] ...
1
vote
1answer
3k views

ASP.NET Hidden Field Value not modified on callback

I'm changing the value of an asp:HiddenField during callback. <asp:HiddenField runat="server" ID="hiddenField" Value="old value" /> private void Page_Load(object sender, EventArgs e) { if ...
1
vote
1answer
747 views

What arguments does the target method for a callback take? [closed]

Choice 1: The same arguments as the BeginInvoke call on the delegate that started the asynchronous call Choice 2: An IAsyncResult object Choice 3: A Thread object Choice 4: A WaitHandle object ...
1
vote
1answer
205 views

Is SilverLight 4 Limited to Only 2 concurrent PollingDuplex Service Connection

I'm developping a SL 4.0 Application using multiple PollingDuplex Services. I'm facing in a strange behavior : after 2 connexions on my Duplex Polling Service (on the same SL client), i got a ...
2
votes
2answers
4k views

PerformCallback on ASPxCallbackPanel doesn't seem to end

We are using the ASP.NET controls from DevExpress. In our application we use the ASPxCallbackPanel control at various places. the callback is triggered by "CallbackPanel.PerformCallback (...)" ...
2
votes
3answers
1k views

Can I dispose a Threading.Timer in its callback?

i'm using Threading.Timer, like : new Timer(new TimerCallback(y=>{ try { Save(Read(DateTime.Now)); ...
0
votes
1answer
151 views

Create a callback that returns a value to its caller?

I am creating a class ("Class B") which is used by another class ("Class A") which instantiates it in VB.NET 3.5. I would like Class B to read a value assigned to one of its properties by Class A ...
0
votes
2answers
67 views

.NET Conditional Callback on a type

I have a stock price which changes by nature all the time. And, there will be many users who wants to buy that stock. Let's say that the stock price is started at 10 and let's say, 30 people bid for ...
1
vote
2answers
821 views

Threading: Calling back to main thread in a .NET Windows Service using C#

I've inherited a multi-threaded Windows Service (C#, .NET) with no support for unhandled exceptions. The service is using mulitple threads to collect data from telemetry devices for analysis. A thread ...

1 2