function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Federico LarsenFederico Larsen 

Multithread Service

Hi everybody,

  I am have developed a multithread service thats has N threads using the same SoapBindingStub binding.

My question is, even thoung I have no concurrency problems, If I have only one binding, all the API calls are being sequencials or in parallel?

Thanks in advance.

Message Edited by Federico Larsen on 01-17-2007 06:44 AM

SuperfellSuperfell
If you're using axis, you have concurrency problems, you might not of seen them yet, but you have them. One binding object per thread is the only way to fly.
Federico LarsenFederico Larsen
thanks a lot for your reply.
I will consider it.