windows - Python and the QuickBooks POS SDK: What string to use for the COM file? -


i'm trying create integration app between quickbooks pos , online shopping cart in python.

i've found example code interacting qb sdk in python (http://blog.bflarsen.com/?p=132) using win32 library, seems code out of date , string access com has been changed.

the documentation has say:

you can find examples of qbpos communication in languages other visual basic in qbpos sdk subdirectory \samples\qbpos. languages not sampled in directory, refer com interface definitions request processor api or, optionally, qbposfc library. these in abposxml , qbposfc type libraries, respectively, , can viewed various object browsers, such visual studio object browser.

however, not provide string access com.

google turns nothing. i've searched registry requestprocessor, , com can find qbposxmlrpc.requestprocessor, work, attempts connect server rather interacting quickbooks, need.

my question is, proper com file use? if there isn't one, possible turn quickbooks rpc server?

thank in advance!

i needed register dll regsvr32.

regsvr32 "c:\program files\common files\intuit\qbpossdkruntime\qbpossmlrplib.dll" #       <"c:\path\to\intuit\install\dir\...."> 

this command needs run administrator privileges.

since in "program files", quotes necessary contain string in 1 argument.

after that, com string qbposxmlrplib.requestprocessor

from win32com import client rp = client.dispatch("qbposxmlrplib.requestprocessor") 

hope helps others in future.


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -