In WPF and Silverlight, Dispatcher is an object that is used to execute work on a specific thread. In another meaning, dispatcher defines an object that receives requests from the client and sends them to any resource (such as a servlet, HTML file, or JSP file) on the server.
0
votes
1answer
25 views
Configure dispatcher on ubuntu 12.04
Am not able to get dispatcher working on my Ubuntu machine, following is the error that I get after apache restart
Syntax error on line 2 of /etc/apache2/conf.d/dispatcher.any:
Invalid command ...
0
votes
1answer
36 views
WPF Dispatcher.BeginInvoke and thread access
I'm having difficulty understanding why this simple method isn't working
If I understand correctly, UIElements must be changed only by their own thread, and background threads cannot.
When trying ...
0
votes
1answer
43 views
Task queue for wp8?
What is a correct way to queue complex tasks in wp8?
The tasks consists of the following:
Showing a ProgressIndicator through updating a model variable
Fetching or storing data to a wcf service ...
0
votes
1answer
59 views
Making a popup wait to be shown again
I have a popup in my application for showing messages.
Sometimes, two messages get shown too quickly after one another and the second just overrides the first one, making it disappear too quickly.
So ...
0
votes
0answers
25 views
WPF Exception crashes Dispatcher, and I cannot catch it
I am trying to validate resources of resource dictionaries. Because the dispatcher thread cannot be restored after a DispatcherException, I start a second STA thread in a second AppDomain. In this ...
0
votes
1answer
71 views
An unhandled exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll
I'm working on a small application in C#/WPF that is fed by data from the serial port. It also reads a textfile containing some constants in order to calculate something. An event handler is made to ...
0
votes
2answers
47 views
Create complex UserControl during runtime without freezing the GUI
I have an very complex UserControl which needs to be created at runtime. This creation freezes the GUI for about 5 seconds (which is not acceptable).
I tried to move this operation into an Background ...
4
votes
2answers
94 views
What is the difference between Dispatcher thread and UI thread
Is UI thread and Dispatcher thread are same in WPF or is there any difference?
0
votes
0answers
32 views
Correct way to get the CoreDispatcher in a Windows Store app
I'm building a Windows Store app, and I have some code that needs to be posted to the UI thread.
For that, i'd like to retrieve the CoreDispatcher and use it to post the code.
It seems that there ...
0
votes
2answers
35 views
UI refresh looping a Dispatcher.BeginInvoke
I'm trying to do a System.Windows.Shapes.Rectangle rotation in Y axis simulating a card rotation, showing all the route.
The problem is that the UI only refreshes at the end.
Simplified version of ...
0
votes
0answers
38 views
Django - Django CMS: Need to prepend urls with parameter (regex)
its the first time that i try django and especially django-cms. I tried to solve the following task with no success:
I need to use urls like the following:
...
-1
votes
3answers
31 views
Dispatcher.Invoke hangs main window
I've created new WPF project, in main window I'm doing:
public MainWindow()
{
InitializeComponent();
Thread Worker = new Thread(delegate(){
...
0
votes
1answer
23 views
How to step into a TargetInvocationException?
Im getting TargetInvocationExceptions like
An unhandled exception of type System.Reflection.TargetInvocationException occurred in mscorlib.dll
Additional information: Exception has been thrown ...
0
votes
2answers
53 views
AS3: Can I dispatch Event from one Child to another?
Hi guys, I cannot sort out this enigma :).
How to send dispatchEvent from Child1 and catch this event in Child2?
or
How to send dispatchEvent from Child1 and catch this event in Child3?
or
How ...
2
votes
1answer
68 views
synchronize wpf dispatcher.invoke from multiple background threads
Do I need to synchronize calls to the Dispatcher.Invoke if accessing from multiple background threads?
I know the Dispatcher.BeginInvoke automatically synchronizes calls for silverlight app ...
2
votes
1answer
88 views
What are the default Akka dispatcher configuration values?
In the Akka documentation it states that if a dispatcher is not configured a default dispatcher will be used. What are the properties of the default dispatcher i.e parallelism-min, parallelism-factor, ...
0
votes
2answers
53 views
no definition for dispatcher
I'm getting the error
'socketServer.Form1' does not contain a definition for 'Dispatcher' and no extension method 'Dispatcher' accepting a first argument of type 'socketServer.Form1' could be ...
3
votes
2answers
120 views
How to forward request from servlet to action of struts2?
I want to forward a request from Servlet to Action like this using RequestDispacher like this
RequestDispatcher dispatcher=request.getRequestDispatcher("hello.action");
dispatcher.include(request, ...
0
votes
1answer
47 views
Flex - Parsley - Event Will Not Dispatch From Method in Result Handler
I have a Command that executes a service call. In the result handler, I am doing some logic based off the result data. If the logic meets specific criteria, I am displaying a confirmation popup. If ...
0
votes
2answers
80 views
c# wpf Updating UI source from BlockingCollection with Dispatcher
Here's my problem.
I'm loading a few BitmapImages in a BlockingCollection
public void blockingProducer(BitmapImage imgBSource)
{
if (!collection.IsAddingCompleted)
...
1
vote
1answer
45 views
wait for task complete in unit test
I have simple window with Button and TextBox named SimpleText
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
...
1
vote
4answers
49 views
Let user specify timer time?
I want the DispatcherTimer to read time values from the textbox : objTextBox.
I tried this code however it seems that TimeSpan is not compatible with strings or did I do anything wrong?
Error: ...
2
votes
2answers
66 views
Stop DispatcherTimer when Method has started
I'm still learning C# and I need some help here.
I have a dispatchtimer that checks every second if datetime has initialized.
It works but the problem is that it continues to do same thing until ...
-1
votes
1answer
88 views
C# AutoResetEvent WaitOne stopped by dispatcher
private void WaitForDriveToBecomeReady()
{
AutoResetEvent syncEvent = new AutoResetEvent(false); //set wait signal to use later
//dispatcher to be able to change stuff in xaml from within ...
0
votes
1answer
60 views
How to get screen resolution for WinPhone 8 from a background thread
I'm creating a library. One thing that we need is the screen resolution of the phone in pixels(width by height)
We were using this method successfully
Screen.Width = (int) ...
0
votes
1answer
82 views
Backgroundworker calling Dispatcher.Invoke
I am working on this code written by some others. It contains a background worker which from its DoWork calls a Dispatcher.Invoke.
My problem is that i think my BackgroundWorkerCompleted will happen ...
0
votes
0answers
84 views
vb.net threading error with invoking Dispatcher on object
I have this code:
Private WithEvents mMediaPlayer As MediaPlayer = New MediaPlayer()
....
mMediaPlayer.Open(mAudioFiles(FileIndex).GetUri)
mMediaPlayer.Position = ...
0
votes
1answer
56 views
RequestDispatcher: Servlet mapping doesn't work properly
Its so confusing. Don't have any kind of idea what happend here:
I want to deploy a simple WAR-project. Two HttpServlets, one just forwards the request to another one:
...
String[] ...
0
votes
1answer
70 views
How To Put delay before doing an operation in wpf
The below code i have used to put 2 seconds delay before navigating to the next window. but the thread is invoking first and the textblock gets displayed for a microsecond and landed into the next ...
3
votes
1answer
70 views
C# mixed use of Task and Dispatcher.Invoke, why it halts?
I tried below snippet:
public Task RunUiTask(Action action)
{
var task = Task.Factory.StartNew(() =>
{
Dispatcher.Invoke(DispatcherPriority.Background, action);
...
0
votes
1answer
29 views
Updating WPF Model using dispatcher
I have a Visual3D object loaded from a file and displaying on screen. That works fine. I am trying to rotate it from data received in a SerialDataReceivedEventHandler - which also works fine.
When I ...
-1
votes
2answers
144 views
Change WPF mainwindow label from another class and separate thread
Im working on a WPF application. I have a label called "Status_label" in MainWindow.xaml. and I want to change its content from a different class (signIn.cs).
Normally I'm able to do this
var mainWin ...
0
votes
1answer
49 views
Getting wrong results from a Thread
I have a small WPF application that needs to enumerate through all files in a specified directory and check if a certain string exists in it. this is the search method:
private void ...
1
vote
1answer
109 views
WPF Dispatcher throws TargetInvocationException
I have a problem with my debugger, when faulty code is executed in the UI Thread the debugger correctly points out the faulty line, same when this is executed inside a thread, but it behaves kind of ...
0
votes
1answer
61 views
Dispatcher not making a new thread
First, sorry for my english.
I'm making a WPF/C# application, with a Frame and pages.
When I try to change quickly the page displayed, by 4 or 5 times, the program starts to freeze and I need to ...
5
votes
1answer
102 views
F# dispatcher.invoke and delegate method
I looked for a solution to this problem for a long time without success.
I am porting some of my C# code to F# and I am struggling with a Dispatcher.Invoke for a WPF element. Since I am a total noob ...
0
votes
1answer
85 views
How to terminate a dispatched thread in WPF
I have a simple and very literal WPF wherein when I click start, it will start doing work and if I click stop, it will stop. Code for starting the worker/background thread is:
--- variables ---
...
0
votes
2answers
113 views
When the code inside Dispatcher.Invoke is executed?
In a C# WPF project I have a background thread that needs to refresh some UserControls.
To doing that I used the Dispatcher.Invoke:
Dispatcher.Invoke(DispatcherPriority.Normal, ...
0
votes
2answers
113 views
Is there any way to get an event handler to run directly on UI thread without intermediate threadpool thread?
I have an event that is fired async via BeginInvoke - so the event handler gets its own threadpool thread. But all the code in the event handler wants to be dispatched to the UI thread - so the ...
1
vote
1answer
43 views
Dealing with URI after $dispatcher->forward() execution
I've set form submission URI to something like '/register' and in controller action $dispatcher->forward() to '/profile'. When submitting form, it forwards to the right page, but URI shown in ...
0
votes
1answer
72 views
windows store correct way of getting dispatcher, async
I'm currently looking into both windows store apps & wp8 apps, both being sl and c# projects.
Fetching the dispatcher is different from wpf, and I'm a bit pussled as the one in Window.Current ...
2
votes
3answers
128 views
WPF ObservableList Dispatcher thread
I'm converting a project from Windows Forms to WPF format. Currently, I've bounded all the data to elements. I now raise a problem in ObservableCollection, saying:
This type of CollectionView does ...
0
votes
1answer
218 views
Get multiple attributes from servlet/s to same JSP
I have a problem getting multiple attributes in a JSP page (one jsp-page) from two different servlets. I'm getting an exception because when the JSP loads, both of the request.getAttribute() are ...
0
votes
0answers
43 views
event dispatcher as a servie
I would like to implement an event dispatcher for network communication. An activity should register a listener at this dispatcher using such a function:
void addListener(String type, Listener ...
1
vote
1answer
65 views
reverse proxy+dispatcher - what is the easiest way
I am looking for a solution which would redirect the externally facing http://mycompany.com/external/* to be redirected/proxied to http://internal-host:1234/internal/*
(the asterisk is used as a ...
0
votes
2answers
132 views
In WPF, how to set a Window Owner of a Window build on another thread (another Dispatcher)
I got the following exception:
InvalidOperationException : The calling thread cannot access this object because a different thread owns it.
when I try to set the Owner of a window that is build on ...
5
votes
1answer
275 views
What is the trick to creating a responsive WPF UI when populating multiple ListBoxes?
I am working on a support tool that displays multiple TabItems in a TabControl. Each TabItem represents an employee, and within each of these employee Tabs there is another TabControl which contains ...
0
votes
1answer
87 views
WPF Dispatcher Operations Leak
I'm seeing a memory leak in our WPF application. In using .NET Memory Profiler, I can see that even after closing a window, the DataContext and UI elements are all sticking around because of Action ...
0
votes
1answer
203 views
Invalid Cross thread access WP7
I am using Matrix xmppClient to set up a chat client app on WP7..
On giving wrong credentials (username/password), Invalid Cross thread access exception is been thrown...I am using ...
1
vote
1answer
151 views
Thread must be STA-Thread, but it already is
Im working on my thesis about an C# WPF program, but i ran into an error i dont understand.
Somewhere in my MainWindow Code im starting a new Thread like this:
Thread searchServer = new Thread(new ...







