Hi Mike,
Does Tomten's suggestion help you on this problem? For creating custom
thread which take a ThreadStart function, you need to define a function
with the required signature of "ThreadStart delegate"(it is a void
function):
#ThreadStart Delegate
http://msdn2.microsoft.com/en-us/library/system.threading.threadstart.aspx
or if you want your thread function be able to accept some additional
parameters, you can choose the new "ParameterizedThreadStart delegate":
#ParameterizedThreadStart Delegate
http://msdn2.microsoft.com/en-us/library/system.threading.parameterizedthrea
dstart.aspx
BTW, for webservice client proxy, you can also use
proxy.BeginXXXX/proxy.EndXXX methods or the new proxy.XXXXAsync pattern
to do asynchronous webservice call, these calles are also executed on
another threadpool thread.
#New Event-Based Model For Asynchronous WebMethod Calls
http://quickstarts.asp.net/QuickStartv20/webservices/doc/RADAsync.aspx
Does this also help for your case?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Steven Cheng[MSFT] - 27 Aug 2007 03:21 GMT
Hi Mike,
Any progress on this issue or do you have any other questions? If so,
please don't hesitate to post here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Hi Mike,
>
[quoted text clipped - 51 lines]
>
>This posting is provided "AS IS" with no warranties, and confers no rights.