> I'm about to start a project at my current gig where I need to
> automate interaction with Remedy. I poked around the net via Google
> and I didn't see any recent posts anywhere on interfacing Python with
> it..

> Is anyone out there using Python/COM to connect with Remedy?

Not using it regularly, but I did try some simple test programs like
this one, a few years ago, just to see if it would work:

import win32com.client as w

app = w.Dispatch("Remedy.User")

sess = app.Login("xxxxxx", "yyyyyy", 1)
print "logged in"

formlist = app.GetFormList(sess, "servername")
print formlist

app.Logout(sess)
print "logged out"


Version 5's COM abilities were pretty limited. I wondered if it would
be more useful to wrap the standard C API with ctypes.

Alan

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to