473,466 Members | 1,401 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Importing WMI module into Python CGI script fails

MK

I'm working with IIS on W2K server. I'm trying to
use module "wmi" in a CGI script but with no success.

The following works:

import cgitb; cgitb.enable()
cgi.test()
.... but the following isn't working:

import cgitb; cgitb.enable()
import wmi ## fails here, with msg "wmi undefined"
cgi.test()
Any ideas? I can import all the other modules (e.g. sys)
except "wmi". Also, when I run the same script in IDLE
(cgi stuff removed), it works. Sys.path has all the needed
directories, including script's directory, and WMI's
directory.


Jul 18 '05 #1
4 6246
MK wrote:

I'm working with IIS on W2K server. I'm trying to
use module "wmi" in a CGI script but with no success.

The following works:

import cgitb; cgitb.enable()
cgi.test()

... but the following isn't working:

import cgitb; cgitb.enable()
import wmi ## fails here, with msg "wmi undefined"
cgi.test()


Does it really just say "wmi undefined"? If not, please
cut and paste the precise traceback which you really get.

-Peter
Jul 18 '05 #2
MK

"Peter Hansen" <pe***@engcorp.com> wrote

[...]

Hello Peter! This is what I get back in browser's window:

com_error
Python 2.2.2: C:\python\python.exe
Sun Jul 20 20:45:23 2003

A problem occurred in a Python script. Here is the sequence of function
calls leading up to the error, in the order they occurred.

----------------------------------------------------------------------------
----

C:\python\testcgi\index.pycgi
2 import cgitb; cgitb.enable()

3 import wmi [MK comment: this line colored with a bright color!]

4 import sys

5

6 cgi.test()

wmi undefined

----------------------------------------------------------------------------
----

C:\python\testcgi\wmi.py
114 # Do just enough to ensure constants are available

115 #

116 obj = win32com.client.GetObject ("winmgmts:") [MK comment: colored
with a bright color!]

117 win32com.client.gencache.EnsureDispatch (obj._oleobj_)

118 del obj

obj undefined, win32com = <module 'win32com' from
'C:\python\lib\site-packages\win32com\__init__.pyc'>, win32com.client =
<module 'win32com.client' from
'C:\python\lib\site-packages\win32com\client\__init__.pyc'>,
win32com.client.GetObject = <function GetObject at 0x00A42DA8>

----------------------------------------------------------------------------
----

C:\python\lib\site-packages\win32com\client\__init__.py in
GetObject(Pathname='winmgmts:', Class=None, clsctx=23)
71 return GetActiveObject(Class, clsctx)

72 else:

73 return Moniker(Pathname, clsctx) [MK comment: colored with a
bright color!]

74

75 def GetActiveObject(Class, clsctx = pythoncom.CLSCTX_ALL):

global Moniker = <function Moniker at 0x00A3D210>, Pathname = 'winmgmts:',
clsctx = 23

----------------------------------------------------------------------------
----

C:\python\lib\site-packages\win32com\client\__init__.py in
Moniker(Pathname='winmgmts:', clsctx=23)
86 Python friendly version of GetObject's moniker functionality.

87 """

88 moniker, i, bindCtx = pythoncom.MkParseDisplayName(Pathname)

89 dispatch = moniker.BindToObject(bindCtx, None,
pythoncom.IID_IDispatch)

90 return __WrapDispatch(dispatch, Pathname, clsctx = clsctx)

moniker undefined, i undefined, bindCtx undefined, global pythoncom =
<module 'pythoncom' from 'C:\WINNT\System32\pythoncom22.dll'>,
pythoncom.MkParseDisplayName = <built-in function MkParseDisplayName>,
Pathname = 'winmgmts:'
com_error: (-2147217405, 'OLE error 0x80041003', None, None)
__doc__ = None
__getitem__ = <bound method com_error.__getitem__ of
<pywintypes.com_error instance at 0x005A72E0>>
__init__ = <bound method com_error.__init__ of <pywintypes.com_error
instance at 0x005A72E0>>
__module__ = 'pywintypes'
__str__ = <bound method com_error.__str__ of <pywintypes.com_error
instance at 0x005A72E0>>
args = (-2147217405, 'OLE error 0x80041003', None, None)

Jul 18 '05 #3
MK wrote:

This is what I get back in browser's window:
Browser? What are you trying to do, that runs Python code in the
browser window? Try running your code directly instead of through
CGI and see what happens. It's easier to debug that way.
C:\python\lib\site-packages\win32com\client\__init__.py in
Moniker(Pathname='winmgmts:', clsctx=23)

com_error: (-2147217405, 'OLE error 0x80041003', None, None)


The above two snippets suggest that you are trying to access some
COM object called "winmgmts:" but don't have permission. I have
no idea about COM/ActiveX so I can't help, but perhaps someone
else can. Searching on Google for the above error code gives
lots of results, including:

In the call to pWbemServices->GetObject an error of 0x80041003 is
returned which according to MSDN documentation is

WBEM_E_ACCESS_DENIED
The current user does not have permission to perform the action

I'd suggest you (a) learn more about Python, since you don't seem
to know how to interpret error tracebacks, and (b) describe in more
detail what you are trying to accomplish, because the problem is
not with the "wmi" module per se, but at a lower level, and appears
to be related to your not having the correct user permissions for
the object you are accessing.

Sorry I can't help more.

-Peter
Jul 18 '05 #4
MK
"Peter Hansen" <pe***@engcorp.com> wrote

[...]
I'd suggest you (a) learn more about Python, since you don't seem
to know how to interpret error tracebacks, and (b) describe in more
detail what you are trying to accomplish, because the problem is
not with the "wmi" module per se, but at a lower level, and appears
to be related to your not having the correct user permissions for
the object you are accessing.

Fair enough. Thanks for suggestions!

I will keep digging.
MK


Jul 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Tubby Tudor | last post by:
What is the best way to call one python script from within another python script? For example: one.py finishes succesfully and calls two.py which finishes OK and then calls three.py Thanks...
6
by: Paul Winkler | last post by:
This is driving me up the wall... any help would be MUCH appreciated. I have a module that I've whittled down into a 65-line script in an attempt to isolate the cause of the problem. (Real...
0
by: phoolimin | last post by:
Dear all, I am trying to embed python into another scripting language, to do this I need to solve a number of problems on importing or compiling python script. First let me state what exactly I...
5
by: Efrat Regev | last post by:
Hello, I need to call GNU/make from within a Python script. This raised some problems: 1. The script is not in the directory of the makefile, and changing the locations of either is not an...
2
by: Viewer T. | last post by:
I am trying to write a script that deletes certain files based on certain criteria. What I am trying to do is to automate the process of deleting certain malware files that disguise themselves...
4
by: Chris8Boyd | last post by:
I am embedding Python in a MSVC++ (2005) application. The application creates some environment and then launches a Python script that will call some functions exported from the MSVC++ application....
0
by: Basha J P M | last post by:
I am beginner in python. I am working through the tutorial examples from http://www.swig.org/ and have run into some problems. I took the following command instructions from the tutorial on...
1
by: replysonika | last post by:
Hello, I run a Java app with subprocess from Python script. This python script is called from another Python Wrapper. python = subprocess.Popen(, stdout=subprocess.PIPE,...
0
by: Stef le Breton | last post by:
Hi, I need to compile a pyhton tool into an executable as the destination plateform (Solaris, Linux) are not deployed with Python or not all needed modules. I found pyinstaller and follow the...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.