> Hi,
>
> I tried the scalability of Slide by running PutTestCase and saw that it
> failed on parallel PUT operations with Enlist error for Transactions and I
> wonder if it the case was mentioned before by Remy and Juergen that
parallel
> WRITE impossible because of limited TX support.
It's a limitation at the store level.
> In this case if it is better to make WebdavServlet single threaded until a
> new transaction datastore arrived?
I would say no, because it only concerns a subset of possible operations
(write operations). Read ops are non blocking, but making the servlet single
threaded would also limit read scalability (bad).
It's really only temporary.
Remy