B
Bruno Le hyaric
Hi,
I'm trying to make a generic COM web server that permits to interact
with any COM object through a web browser...
I've tryed first to do that using Python, but the reflexivity wasn't
good enough (not working with COM object methods).
Ruby reflexivity works well with COM objects except with put properties.
I need to get the type of the property I want to set?
I try :
prop = obj.ole_put_methods.first
prop.params
=> []
prop.size_params
=> 1 (not coherent with previous result)
prop.return_type
=> VOID
is there a lack in win32ole reflexivity?
I'm trying to make a generic COM web server that permits to interact
with any COM object through a web browser...
I've tryed first to do that using Python, but the reflexivity wasn't
good enough (not working with COM object methods).
Ruby reflexivity works well with COM objects except with put properties.
I need to get the type of the property I want to set?
I try :
prop = obj.ole_put_methods.first
prop.params
=> []
prop.size_params
=> 1 (not coherent with previous result)
prop.return_type
=> VOID
is there a lack in win32ole reflexivity?