Skip to search.
PowerThreading · Richter/Wintellect Power Threading

Group Information

  • Members: 258
  • Category: Software
  • Founded: Jun 26, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 485 - 514 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
485 eldoran_cg Offline Send Email Jun 1, 2009
7:21 pm
Ok, just so I'm clear on the flow, it will be like this, I think. Sorry if this question is dumb: I have a vxml application that will connect to my IIS web...
486 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 2, 2009
12:31 am
I don't know enough about what you are trying to accomplish to know how you should best architect it. Also, your question really has nothing to do with my...
487 eldoran_cg Offline Send Email Jun 3, 2009
6:46 pm
Is it possible to prevent sql deadlocks caused from inserts using this library? If I have an aspx page that is doing a lot of inserts against sql 2005,...
488 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 3, 2009
7:47 pm
I don't know very much about SQL and databases in general. It seems to me that you can issues many async inserts against the DB and that it queues them up and...
489 el_diosloco Offline Send Email Jun 4, 2009
2:22 am
Eldoran, you are asking the wrong question. The question is not how AsyncEnumerator can help handle deadlocks. The real question is why you are seeing...
490 Louis S. Berman
lsbdvaa Offline Send Email
Jun 5, 2009
10:21 am
Thanks for your quick and detailed reply! I'm on a plane heading to Rome at the moment so it will probably be day before I get to try it out. I'll be sure to...
491 eldoran_cg Offline Send Email Jun 5, 2009
5:47 pm
I have a couple observations based upon the last couple days and your response. First, using the built in dataset object that .NET 2.0 provides, there is no...
492 Paulo Mouat
p_mouat Offline Send Email
Jun 5, 2009
7:51 pm
Seems to me there are a number of things not well understood here (ASP.NET and its page and application lifecycle; threading/async and how exceptions are...
493 Pawan Kumar
pawan_itbhu Offline Send Email
Jun 5, 2009
11:29 pm
Hi, I am transferring hundred thousand data transfer requests from my Desktop to a REST web service. And then reading the web response back. While transferring...
494 eldoran_cg Offline Send Email Jun 6, 2009
1:29 am
I suppose by only showing part of my source code I deserve this kind of response. What I showed, was really straight forward. m_returncode is a static...
495 Paulo Mouat
p_mouat Offline Send Email
Jun 6, 2009
3:01 pm
You seemed to indicate the number of "E"s that you got was unexpectedly high. If you use a static variable to hold that state and never bother to set it to "I"...
496 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 7, 2009
12:52 pm
I use my AsyncEnumerator a lot for doing REST calls. The problem can't possibly be my AsyncEnumerator as it hasabsolutely nothing to do with the I/O...
497 Jehanzeb Musani
jehanzeb_bs Offline Send Email
Jun 7, 2009
1:37 pm
Hi Jeff, I am trying to get better understanding of threading and synchronization constructs. So I decided to implement some of the synchronization constructs...
498 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 7, 2009
5:43 pm
This Yahoo group is really for supporting my Power Threading library; there is a good chance that others in this group are not interested in knowing how well...
499 Jehanzeb Musani
jehanzeb_bs Offline Send Email
Jun 7, 2009
5:45 pm
Thanks Jeff To: PowerThreading@yahoogroups.com From: JeffreyR@... Date: Sun, 7 Jun 2009 10:42:46 -0700 Subject: RE: [PowerThreading] Custom...
500 eldoran_cg Offline Send Email Jun 7, 2009
9:28 pm
Thanks for the tip.. I didn't know there was a bulk load option in ado.net (SqlBulkCopy). That option should help tremendously. I set it to insert the full...
501 eldoran_cg Offline Send Email Jun 8, 2009
4:22 pm
How can I make it threadsafe? Right now, nothing is being inserted because the dataset count never hits 100....
502 Charles Prakash Dasari
raodcp Offline Send Email
Jun 9, 2009
1:32 am
Hi Jeff, I am trying to use AE in a retry scenario. Could you please tell if am doing anything wrong with the following piece of code? Should I do any explicit...
503 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 9, 2009
3:25 am
If you are using timeout and/or cancelation, when you call the BeginXxx method, you also need to call an overload of the AE's End method that accepts a...
504 Louis S. Berman
lsbdvaa Offline Send Email
Jun 10, 2009
6:07 pm
Hi! I had laptop problems while I was in Rome so I couldn't try out your example until I got back. After working with your example code (in your earlier...
505 Nikos Baxevanis
n.baxevanis Offline Send Email
Jun 11, 2009
6:53 pm
The only way to call a WCF service async is to click on the Advanced tab and then make sure the "Generate asynchronous operations" checkbox is checked. ("Add...
506 wynandjordaan@...
wynandjordaa... Offline Send Email
Jun 11, 2009
9:11 pm
Hi Jeffrey, I am part of a team that wrote a TCP Server / Client .Net 2.0 application that manages large Security Video Networks. We made use of your RWG...
507 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 11, 2009
11:11 pm
What Nikos says is correct. I'll also add that you cannot efficiently add cancelation and/or timeout to a synchronous I/O operation. And so, you should do what...
508 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 11, 2009
11:31 pm
A gate is released either when the callback method passed to BeingRead/Write as the "ReaderWriterGateCallback callback" returns or if inside this method, you...
509 lsbdvaa Offline Send Email Jun 14, 2009
2:33 pm
Hi! At the risk of repeating myself let me start by once again thanking Jeffrey for sharing his excellent library with the group. The more I use it the more...
510 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 14, 2009
3:31 pm
AsyncEnumerator hangs are almost always related to the SynchronizationContext and this is your problem too. The SyncContext is different for a Console app as...
511 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 14, 2009
3:43 pm
Let ms also add, the I highly recommend for everyone that in your debug builds, you call AsyncEnumerator.EnableDebugSupport(); This turns on some great...
512 lsbdvaa Offline Send Email Jun 14, 2009
3:51 pm
Wow! Thanks for the quick response, and on a Sunday no less!! Your solution worked partially in that adding an "ae.SyncContext = null;" call to line 59 of...
513 wynandjordaan@...
wynandjordaa... Offline Send Email
Jun 14, 2009
4:19 pm
Hi Jeffrey, I found my problem was caused by the Threadpool that the RWG uses. Some of my processes access the data on a Read thread and then gets upgraded to...
514 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jun 14, 2009
5:20 pm
Don't call EndExecute where you are - this is what is forcing the GUI thread to block until the iterator is done. Instead, when you call BeginExecute, pass to...
Messages 485 - 514 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help