Search the web
Sign In
New User? Sign Up
PowerThreading · Richter/Wintellect Power Threading
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 485 - 514 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
485
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...
eldoran_cg
Offline Send Email
Jun 1, 2009
7:21 pm
486
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 2, 2009
12:31 am
487
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,...
eldoran_cg
Offline Send Email
Jun 3, 2009
6:46 pm
488
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 3, 2009
7:47 pm
489
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...
el_diosloco
Offline Send Email
Jun 4, 2009
2:22 am
490
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...
Louis S. Berman
lsbdvaa
Offline Send Email
Jun 5, 2009
10:21 am
491
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...
eldoran_cg
Offline Send Email
Jun 5, 2009
5:47 pm
492
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...
Paulo Mouat
p_mouat
Offline Send Email
Jun 5, 2009
7:51 pm
493
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...
Pawan Kumar
pawan_itbhu
Offline Send Email
Jun 5, 2009
11:29 pm
494
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...
eldoran_cg
Offline Send Email
Jun 6, 2009
1:29 am
495
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"...
Paulo Mouat
p_mouat
Offline Send Email
Jun 6, 2009
3:01 pm
496
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 7, 2009
12:52 pm
497
Hi Jeff, I am trying to get better understanding of threading and synchronization constructs. So I decided to implement some of the synchronization constructs...
Jehanzeb Musani
jehanzeb_bs
Offline Send Email
Jun 7, 2009
1:37 pm
498
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 7, 2009
5:43 pm
499
Thanks Jeff To: PowerThreading@yahoogroups.com From: JeffreyR@... Date: Sun, 7 Jun 2009 10:42:46 -0700 Subject: RE: [PowerThreading] Custom...
Jehanzeb Musani
jehanzeb_bs
Offline Send Email
Jun 7, 2009
5:45 pm
500
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...
eldoran_cg
Offline Send Email
Jun 7, 2009
9:28 pm
501
How can I make it threadsafe? Right now, nothing is being inserted because the dataset count never hits 100....
eldoran_cg
Offline Send Email
Jun 8, 2009
4:22 pm
502
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...
Charles Prakash Dasari
raodcp
Offline Send Email
Jun 9, 2009
1:32 am
503
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 9, 2009
3:25 am
504
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...
Louis S. Berman
lsbdvaa
Offline Send Email
Jun 10, 2009
6:07 pm
505
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...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Jun 11, 2009
6:53 pm
506
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...
wynandjordaan@...
wynandjordaa...
Offline Send Email
Jun 11, 2009
9:11 pm
507
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 11, 2009
11:11 pm
508
A gate is released either when the callback method passed to BeingRead/Write as the "ReaderWriterGateCallback callback" returns or if inside this method, you...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 11, 2009
11:31 pm
509
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...
lsbdvaa
Offline Send Email
Jun 14, 2009
2:33 pm
510
AsyncEnumerator hangs are almost always related to the SynchronizationContext and this is your problem too. The SyncContext is different for a Console app as...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 14, 2009
3:31 pm
511
Let ms also add, the I highly recommend for everyone that in your debug builds, you call AsyncEnumerator.EnableDebugSupport(); This turns on some great...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 14, 2009
3:43 pm
512
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...
lsbdvaa
Offline Send Email
Jun 14, 2009
3:51 pm
513
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...
wynandjordaan@...
wynandjordaa...
Offline Send Email
Jun 14, 2009
4:19 pm
514
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jun 14, 2009
5:20 pm
Messages 485 - 514 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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