Piotr Czapla
Piotr Czapla

Reputation: 26552

How to make a persistent com server in Python

I'd like to create a COM server that can hold it state across the calls. My goal is to have a thread-safe in-memory database. And provide an access to it via COM interface.

Is that possible?

Upvotes: 1

Views: 306

Answers (2)

Piotr Czapla
Piotr Czapla

Reputation: 26552

Given the lack of popularity of COM I've ended up providing XMLRPC interface at least I know how to diagnose errors if they occur.

Upvotes: 1

Related Questions