Вагиф Абилов (object) wrote,
Вагиф Абилов
object

Профессиональное

Убил день на проблему с компонентами, которые вдруг под Windows XP перестали работать по-человечески. Под катом - описание проблемы и решения. Полезно для программирующих доступ к базам данных через COM+.


Problem

We have a component that is configured as transactional ("required"). It calls a stored procedure. SP is a compound procedure that calls several other stored procedures. Some of the called SPs can insert some data, but if certain conditions are not met, the whole transaction is supposed to be rolled back. This is achieved by marking a COM+ component as transactional and calling SetAbort:

In Activate:
HRESULT hr = m_spObjectContext->CreateInstance(__uuidof(Connection), __uuidof(_Connection), (void** &m_adoConnection);

In the actual method:

if( hr == S_OK )
m_spObjectContext->SetComplete();
else
m_spObjectContext->SetAbort();

Suddenly it stopped working on some machines. Code executes fine, HRESULT is reported correctly, SetAbort returns S_OK. But database calls act like they are all committed! Impossible...

Resolution

After upgrading our machines to WinXP we experienced long delays in some database calls duration. We found a recommendation to disable OLE DB resource pooling services. For some reasons it was recommended to use value -4 in OLE DB Services flags:

"OLE DB Services = 0" No Services
"OLE DB Services = -1" All Services (default)
"OLE DB Services = -2" All Services Except Pooling
"OLE DB Services = -4" All Services Except Pooling and Auto-Enlistment
"OLE DB Services = -5" All Services Except Client Cursor
"OLE DB Services = -6" All Services Except Client Cursor and Pooling.

As you see, "OLE DB Services = -4" means disabling both resource pooling and auto-enlistment. This broke our COM+ transactional components. Using value "-2" helped.

Bottom line: do not disable transaction auto-enlistment for transactional COM+ component. Actually, quite obvious, should have thought about it.
Subscribe

  • Некруглые круглые числа

    Около года ничего не писал сюда на политические темы. Да и вообще почти ничего не писал. Но сегодня, отправив письмо приятелю с выкладками,…

  • Музыкальный проект

    Последние полгода я наконец-то засел за реализацию старых музыкальных идей, которые постепенно воплощаются в песни, выкладываемые на SoundCloud:…

  • С Новым годом!

  • Post a new comment

    Error

    default userpic

    Your reply will be screened

    Your IP address will be recorded 

    When you submit the form an invisible reCAPTCHA check will be performed.
    You must follow the Privacy Policy and Google Terms of use.
  • 0 comments