Displaying 1 result from an estimated 1 matches for "ediscuss".
Did you mean:
discuss
2007 Jul 02
0
How to use MS Word features from Rails app running as servic
...I run the
app using
mongrel_rails start ... on command prompt.
I use the Win32OLE support for Ruby:
doc = WIN32OLE.new(''Word.Application'')
However, at the deployment site, I have configured the app to run as a
Windows Service using the mongrel:
mongrel_rails service::install -N EDiscussions -c appdir -p 80 -e
production
The application runs fine except for the actions that use Word features.
Debug statements indicate that the program does not get past the line:
doc = WIN32OLE.new(''Word.Application'')
The service is configured to run using Local System account an...