473,569 Members | 2,428 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

WQLEventQuery:S econd local connect:Access denied![II]

Hi All,

I've already asked another question [wmi newsgroup only], but this is
finally the same issue. I cannot execute two asynchron WMI queries on the
local machine, one after the other. The original question is based on
complicated code. So I reduced the "kernel" to a small C# sample [compilable
to exe], which shows the problem. The question is:

- Is this a problem with my code, as not freeing resources etc?
- Is this possibly a WMI issue?

In the original code, I tried to remove the querying class completely, but
even this does not help. Each second query fails.

Any help would really become very welcomed, each simple tip or hint!!!

Best regards,
Manfred Braun

(Private)
Lange Roetterstrasse 7
D68167 Mannheim
Germany

mailto:_m****** *******@manfbra un.de
(Remove the anti-spam-underscore to mail me!)
Annotation:The executable has to be called with an computername as an
argument. The exe should work with each remote machine, but not with the
local one.

/*
Name: WMIAsyncQuerySa mpleReconnectSa mple5a.cs
*/
using System;
using System.Manageme nt;

class Sample_Manageme ntEventWatcher
{
public static int Main(string[] args)
{
if(args.Length != 0)
{
string comp = args[0];

MyHandler mh;
EventArrivedEve ntHandler eventArrivedEve ntHandler;
ManagementEvent Watcher watcher;

mh = new MyHandler();
eventArrivedEve ntHandler = new EventArrivedEve ntHandler(mh.Ar rived);
watcher = Sample_Manageme ntEventWatcher. getWatcher(comp );
watcher.EventAr rived += eventArrivedEve ntHandler;

//Start watching for events:
watcher.Start() ;
Console.WriteLi ne("Watcher is running, press <enter> to stop...");
Console.ReadLin e();
//Stop watching:
watcher.Stop();
watcher.EventAr rived -= eventArrivedEve ntHandler;

mh = null;
watcher = null;
eventArrivedEve ntHandler = null;

Console.WriteLi ne("Watcher is stopped, press <enter> to re-start...");
Console.ReadLin e();

mh = new MyHandler();
eventArrivedEve ntHandler = new EventArrivedEve ntHandler(mh.Ar rived);
watcher = Sample_Manageme ntEventWatcher. getWatcher(comp );
watcher.EventAr rived += eventArrivedEve ntHandler;

//Start watching for events:
try
{
watcher.Start() ; //BOMBs here !!!!!!!!!!!!!!! !!!!!!!!!!!!!!! !!!!
Console.WriteLi ne("Watcher is running, press <enter> to stop...");
Console.ReadLin e();
//Stop watching:
watcher.Stop();
watcher.EventAr rived -= eventArrivedEve ntHandler;
}
catch(Exception e)
{
Console.WriteLi ne("Exception:{ 0}", e.ToString());
}
}
else
{
Console.WriteLi ne("Args!!! [P1=Computername]");
}
return 0;
}

public static ManagementEvent Watcher getWatcher(stri ng comp)
{
ConnectionOptio ns co;
ManagementPath mp;
ManagementScope ms;
WqlEventQuery EventQuery;
ManagementEvent Watcher watcher;
string wql;

co = new ConnectionOptio ns();
co.Timeout = new TimeSpan(0, 0, 60);
co.EnablePrivil eges = true;

mp = new ManagementPath( );
mp.NamespacePat h = @"root\cimv2 ";
mp.Server = comp;
ms = new ManagementScope (mp, co);

wql = "select * from __instancecreat ionevent where targetinstance isa
'Win32_NTLogEve nt'";
EventQuery = new WqlEventQuery(w ql);
watcher = new ManagementEvent Watcher(ms, EventQuery);

co = null;
mp = null;
ms = null;
EventQuery = null;
wql = null;

return watcher;
}

public class MyHandler
{
public void Arrived(object sender, EventArrivedEve ntArgs e)
{
ManagementBaseO bject mbo =
(ManagementBase Object)e.NewEve nt["TargetInstance "];
Console.WriteLi ne("Event:{0}" , mbo["message"]);
}

}//Inner class.
}//Class
Nov 15 '05 #1
0 2486

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

Similar topics

9
6312
by: | last post by:
Hi All, I have allready tried to ask a similar question , but got no answer until now. In the meantime, I found, that I cannot understand some thread-settings for the Main() function . If I use the attribute for the Main() function, I get "access denied error", if I use a ManagementEventWatcher to connect to the local machine to receive...
6
3633
by: Andrea | last post by:
I need to detect when another application is launched. I'd need to know also when a new folder is opened in explorer. I'm developing an application to speed up access to frequently used applications.
0
7703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7618
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7926
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8138
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
5514
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5223
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2117
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 we have to send another system
0
946
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.