Visual C++ .NET - Error System.TypeInitializationException

 
Vista:

Error System.TypeInitializationException

Publicado por Vaelgnor (3 intervenciones) el 14/12/2015 15:14:48
Saludos,

Estoy teniendo un error que me tiene la cabeza frita, porque he intentado de todo para solucionarlo. La cosa es que necesito cierta información interna del pc donde se ejecute el programa que estoy creando y tengo un código para sacar la información, es el siguiente:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
HRESULT hres;
 
 
    wsprintf( baseBoardManufacturer, "");
    wsprintf( baseBoardModel, "");
    wsprintf( macAddress, "");
 
 
 
 
    // Step 1: --------------------------------------------------
    // Initialize COM. ------------------------------------------
 
    hres =  CoInitializeEx(0, COINIT_MULTITHREADED);
    if (FAILED(hres))
    {
//        cout << "Failed to initialize COM library. Error code = 0x"
//            << hex << hres << endl;
        return false;                  // Program has failed.
    }
 
    // Step 2: --------------------------------------------------
    // Set general COM security levels --------------------------
    // Note: If you are using Windows 2000, you need to specify -
    // the default authentication credentials for a user by using
    // a SOLE_AUTHENTICATION_LIST structure in the pAuthList ----
    // parameter of CoInitializeSecurity ------------------------
 
    hres =  CoInitializeSecurity(
        NULL,
        -1,                          // COM authentication
        NULL,                        // Authentication services
        NULL,                        // Reserved
        RPC_C_AUTHN_LEVEL_DEFAULT,   // Default authentication
        RPC_C_IMP_LEVEL_IMPERSONATE, // Default Impersonation  
        NULL,                        // Authentication info
        EOAC_NONE,                   // Additional capabilities
        NULL                         // Reserved
        );
 
 
    if (FAILED(hres))
    {
//        cout << "Failed to initialize security. Error code = 0x"
//            << hex << hres << endl;
        CoUninitialize();
        return false;                    // Program has failed.
    }
 
    // Step 3: ---------------------------------------------------
    // Obtain the initial locator to WMI -------------------------
 
    IWbemLocator *pLoc = NULL;
 
    hres = CoCreateInstance(
        CLSID_WbemLocator,
        0,
        CLSCTX_INPROC_SERVER,
        IID_IWbemLocator, (LPVOID *) &pLoc);
 
    if (FAILED(hres))
    {
//        cout << "Failed to create IWbemLocator object."
//            << " Err code = 0x"
//            << hex << hres << endl;
        CoUninitialize();
        return false;                 // Program has failed.
    }
 
    // Step 4: -----------------------------------------------------
    // Connect to WMI through the IWbemLocator::ConnectServer method
 
    IWbemServices *pSvc = NULL;
 
    // Connect to the root\cimv2 namespace with
    // the current user and obtain pointer pSvc
    // to make IWbemServices calls.
    hres = pLoc->ConnectServer(
         _bstr_t(L"ROOT\\CIMV2"), // Object path of WMI namespace
         //bstr_t(L"\\\\noorgani-8xwxwf\\root\\cimv2"),
         //bstr_t(L"\\\\fbt-4bf51dc0762\\root\\cimv2"),
 
         NULL,                    // User name. NULL = current user
         NULL,                    // User password. NULL = current
         0,                       // Locale. NULL indicates current
         NULL,                    // Security flags.
         0,                       // Authority (e.g. Kerberos)
         0,                       // Context object
         &pSvc                    // pointer to IWbemServices proxy
         );
 
    if (FAILED(hres))
    {
//        cout << "Could not connect. Error code = 0x"
//             << hex << hres << endl;
        pLoc->Release();
        CoUninitialize();
        return false;                // Program has failed.
    }
 
//    cout << "Connected to ROOT\\CIMV2 WMI namespace" << endl;
 
 
    // Step 5: --------------------------------------------------
    // Set security levels on the proxy -------------------------
 
    hres = CoSetProxyBlanket(
       pSvc,                        // Indicates the proxy to set
       RPC_C_AUTHN_WINNT,           // RPC_C_AUTHN_xxx
       RPC_C_AUTHZ_NONE,            // RPC_C_AUTHZ_xxx
       NULL,                        // Server principal name
       RPC_C_AUTHN_LEVEL_CALL,      // RPC_C_AUTHN_LEVEL_xxx
       RPC_C_IMP_LEVEL_IMPERSONATE, // RPC_C_IMP_LEVEL_xxx
       NULL,                        // client identity
       EOAC_NONE                    // proxy capabilities
    );
 
    if (FAILED(hres))
    {
//        cout << "Could not set proxy blanket. Error code = 0x"
//            << hex << hres << endl;
        pSvc->Release();
        pLoc->Release();
        CoUninitialize();
        return false;               // Program has failed.
    }
 
    // Step 6: --------------------------------------------------
    // Use the IWbemServices pointer to make requests of WMI ----
 
    // For example, get the name of the operating system
    IEnumWbemClassObject* pEnumerator = NULL;
    hres = pSvc->ExecQuery(
        bstr_t("WQL"),
        //bstr_t("SELECT * FROM Win32_OperatingSystem"),
        bstr_t("SELECT * FROM Win32_BaseBoard"),
        //bstr_t("SELECT * FROM Win32_NetworkAdapter"),        
        //bstr_t("SELECT * FROM Win32_DiskDrive"),                
        WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY,
        NULL,
        &pEnumerator);
 
    if (FAILED(hres))
    {
//        cout << "Query for BaseBoard failed."
//            << " Error code = 0x"
//            << hex << hres << endl;
        pSvc->Release();
        pLoc->Release();
        CoUninitialize();
        return false;               // Program has failed.
    }
 
    // Step 7: -------------------------------------------------
    // Get the data from the query in step 6 -------------------
 
    IWbemClassObject *pclsObj = NULL;
    ULONG uReturn = 0;
 
    while (pEnumerator)
    {
        HRESULT hr = pEnumerator->Next(WBEM_INFINITE, 1,
            &pclsObj, &uReturn);
 
        if(0 == uReturn)
        {
            break;
        }
 
        VARIANT vtProp;
 
        // Get the value of the ... property
        //hr = pclsObj->Get(L"Name", 0, &vtProp, 0, 0);
        //hr = pclsObj->Get(L"Caption", 0, &vtProp, 0, 0);    // Win32_DiskDrive        
        //hr = pclsObj->Get(L"DeviceID", 0, &vtProp, 0, 0);    // Win32_DiskDrive        
        //hr = pclsObj->Get(L"Model", 0, &vtProp, 0, 0);    // Win32_DiskDrive        
        //hr = pclsObj->Get(L"SystemName", 0, &vtProp, 0, 0);    // Win32_DiskDrive        
        //hr = pclsObj->Get(L"Product", 0, &vtProp, 0, 0);    // Win32_BaseBoard
        //hr = pclsObj->Get(L"MACAddress", 0, &vtProp, 0, 0);    // Win32_NetworkAdapter
        //wcout << "Value : " << vtProp.bstrVal << endl;
 
        hr = pclsObj->Get(L"Manufacturer", 0, &vtProp, 0, 0);    // Win32_BaseBoard
        //wcout << vtProp.bstrVal << endl;
        sprintf( baseBoardManufacturer, "%.128S", vtProp.bstrVal );
        VariantClear(&vtProp);
 
        hr = pclsObj->Get(L"Product", 0, &vtProp, 0, 0);    // Win32_BaseBoard
        //wcout << vtProp.bstrVal << endl;
        sprintf( baseBoardModel, "%.128S", vtProp.bstrVal );
        VariantClear(&vtProp);
 
        pclsObj->Release();
    }
 
    //-----
 
    pEnumerator = NULL;
    hres = pSvc->ExecQuery(
        bstr_t("WQL"),
                                //"SELECT * FROM Win32_NetworkAdapter Where (adaptertypeID = 0)"
                                // y ver q realmente lista al menos uno y que el mac no son todos los numeros iguales
 
        //bstr_t("SELECT * FROM Win32_NetworkAdapter"),
        bstr_t("SELECT * FROM Win32_NetworkAdapter Where (adaptertypeID = 0)"), //!! nuevo
 
        WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY,
        NULL,
        &pEnumerator);
 
    if (FAILED(hres))
    {
//        cout << "Query for NetworkAdapter failed."
//            << " Error code = 0x"
//            << hex << hres << endl;
        pSvc->Release();
        pLoc->Release();
        CoUninitialize();
        return false;               // Program has failed.
    }
 
    // Step 7: -------------------------------------------------
    // Get the data from the query in step 6 -------------------
 
    pclsObj = NULL;
    uReturn = 0;
 
    bool trincoprimero = false;    //!! nuevo
 
    while (pEnumerator)
    {
        HRESULT hr = pEnumerator->Next(WBEM_INFINITE, 1,
            &pclsObj, &uReturn);
 
        if(0 == uReturn)
        {
            break;
        }
 
        VARIANT vtProp;
 
 
        // Get the value of the ... property
        hr = pclsObj->Get(L"NetConnectionStatus", 0, &vtProp, 0, 0);    // Win32_NetworkAdapter
 
        //if( vtProp.uintVal == 1 || vtProp.uintVal == 2 || vtProp.uintVal == 9 ) {
        if( vtProp.uintVal == 1 || vtProp.uintVal == 2 || vtProp.uintVal == 9  || vtProp.uintVal == 7) {  //!! nuevo , que tambien puede estar desconectado si utilzando por ejemplo el wifi
 
            VariantClear(&vtProp);
            hr = pclsObj->Get(L"MACAddress", 0, &vtProp, 0, 0);    // Win32_NetworkAdapter
            //wcout << "Value : " << vtProp.bstrVal << endl;
            wsprintf( macAddress, "%.128S", vtProp.bstrVal);
            VariantClear(&vtProp);
 
            trincoprimero = true;
        }
 
        pclsObj->Release();
 
        if (trincoprimero == true)
            break;
    }
 
    // Cleanup
    // ========
 
    pEnumerator->Release();
    pSvc->Release();
    pLoc->Release();
 
    CoUninitialize();

La cosa es que en el paso 6 al ejecutar pSvc->ExecQuery(...) salta el error System.TypeInitializationException, el programa compila correctamente pero es al ejecutar que se genera el error, incluso aunque no se use la función.

He intentado de todo para solventar el problema pero no hay manera, si me pudieseis ayudar estaría muy agradecido xq mi jefe empieza a estar ya mosqueado.

Muchas gracias de antemamo!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Error System.TypeInitializationException

Publicado por Requeteprogramador (7 intervenciones) el 14/12/2015 19:07:36
Si el código puede estar perfecto. Es el problema que tiene el copiar y pegar, que pegas el código pero no las opciones de compilación y linkado, ni las versiones de librerías, ni nada de nada. Bájate un proyecto wmi de codeproject, que siempre funcionan, y mira a ver lo que te hace. Si fuciona bien mira a ver qué versiones de todo usa y cómo compila y linka.

De paso pregúntale al jefe por qué si voy yo a hacerle algo me dice que no, que prefiere que se lo hagas tú.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

Error System.TypeInitializationException

Publicado por Vaelgnor (3 intervenciones) el 14/12/2015 19:29:55
Lo siento, lo solventé hace un rato y se me olvido decirlo aquí.

El último parrafo me tiene desconcertado, no se si te estas equivocando de persona o te las estás dando de listo, por si acaso te diré que si mi jefe prefiere que le haga yo el trabajo es porque sea lo que sea siempre acabo hayando la forma de hacerlo.

Gracias por tu esfuerzo de todas forma.

Salut!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar