[python-win32] windows service sample using py2exe

2008-04-11 Thread franck34
# Warning: setup.py require cmdline_style='pywin32' # Usage: # service.exe install # service.exe start # service.exe stop # service.exe remove # you can see output of this program running python site-packages\win32\lib\win32traceutil # setup.py #from distutils.core import setup #import py2exe #

[python-win32] windows service sample using pyInstaller

2008-04-11 Thread franck34
# Usage: # service.exe install # service.exe start # service.exe stop # service.exe remove # you can see output of this program running python site-packages\win32\lib\win32traceutil import win32service import win32serviceutil import win32event import win32evtlogutil import win32traceutil import

[python-win32] Convert PyIDispatch object to struct IDispatch*

2008-04-11 Thread Huayang Xia
I am trying to use ctypes to call dll functions. One of the functions requires argument struct IDispatch* . I do have a PyIDispatch object in python. How can I convert this PyIDispatch object to struct IDispatch* ? Thanks in advance. ___ python-win32

Re: [python-win32] Convert PyIDispatch object to struct IDispatch*

2008-04-11 Thread Thomas Heller
Huayang Xia schrieb: I am trying to use ctypes to call dll functions. One of the functions requires argument struct IDispatch* . I do have a PyIDispatch object in python. How can I convert this PyIDispatch object to struct IDispatch* ? Thanks in advance. The only way (that I know of) to

[python-win32] python and soap?

2008-04-11 Thread Sagar Khushalani
i guess this question has been asked lots of times, but can anyone suggest any good way of using SOAP and python 2.5? if not, is there any other versions (2.3) that i can use? i need it for a school project and so have to use SOAP... thanks in advance! - sagar Sagar Khushalani

Re: [python-win32] python and soap?

2008-04-11 Thread Gerdus van Zyl
See this blog post: http://www.kunxi.org/archives/2008/01/pythonsoap-second-encounter/ http://pywebsvcs.sourceforge.net/ http://trac.optio.webfactional.com/ The choice depends on your requirements. On Fri, Apr 11, 2008 at 8:58 PM, Sagar Khushalani [EMAIL PROTECTED] wrote: i guess this