web services problem in accessing vb6 com

  • Thread starter Thread starter Mullin Yu
  • Start date Start date
M

Mullin Yu

i found out that if i debug the web services that accessing a vb6 com (a dll
file), other clients' request will be stalled until releasing from the debug
mode.

to me, the dll seems to be a queue then. but, my dll is already 1. set to
Instancing to MultiUse
2. try with COM+ at win2k

how to get rid of this issue? i expect should be allowed concurrent access.

thanks!
 
Mullin,

How do you have this set up in COM+? Is it part of an object pool? If
you are in the middle of debugging the DLL, then I can definitely see how
this would happen, as it is no longer your DLL that is running, but rather
your code that is IDE. COM+ has been told to reroute (VB fiddles with the
registry entries to redirect to itself when debugging) to the IDE when you
are debugging as well.

You should probably not debug in the production environment, but rather,
duplicate the environment so you do not interfere with any other operations.

Hope this helps.
 
Back
Top