*Kick*
Topic nog maar even omhoog schoppen. We komen op dit moment niet echt verder. We hebben met de Assembly Binding Log Viewer gekeken, maar die geeft geen foutmeldingen. Alle assemblies worden geladen:
Onderstaand het log van mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
code:
1
2
3
4
5
6
7
8
9
10
| *** Assembly Binder Log Entry (28-12-2009 @ 12:12:52) ***
The operation was successful.
Bind result: hr = 0x0. The operation completed successfully.
Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable C:\Beheer\Software\VCDcrediteuren\WinApp\VCD Crediteuren.exe
--- A detailed error log follows.
LOG: Found assembly by looking in the GAC. |
We krijgen nog wel een waarschuwing op mscorlib.resources:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| *** Assembly Binder Log Entry (28-12-2009 @ 12:13:06) ***
The operation failed.
Bind result: hr = 0x80070002. The system cannot find the file specified.
Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable C:\Beheer******************.exe
--- A detailed error log follows.
=== Pre-bind state information ===
LOG: User = *****************\administrator
LOG: DisplayName = mscorlib.resources, Version=2.0.0.0, Culture=nl, PublicKeyToken=b77a5c561934e089
(Fully-specified)
LOG: Appbase = file:///C:/Beheer/**************/WinApp/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = NULL
Calling assembly : (Unknown).
===
LOG: Start binding of native image mscorlib.resources, Version=2.0.0.0, Culture=nl, PublicKeyToken=b77a5c561934e089.
WRN: No matching native image found. |
maar dat lijkt niet relevant, omdat de foutmelding ook aangeeft dat de culture=neutral van mscorlib.
Met een debugviewer hebben we nog wat meer informatie gekregen:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
| [11048] 06.01.10 13:33:50.277 CurrentObject: nl.vcd.vcllibrary.CreditorSearch(1)
[11048] 06.01.10 13:33:50.277 Action 'c305b932-e3e7-4da0-ac62-776c79b3bbc0' done
[11048] 06.01.10 13:33:50.340 ================================================================================
[11048] The error occured:
[11048]
[11048] Type: TypeLoadException
[11048] Message: Could not load type 'System.ArgumentExc?pt?on' from assembly 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.
[11048] Data: 0 entries
[11048] Stack trace:
[11048]
[11048] at DevExpress.XtraGrid.GridGroupSummaryItemCollection.OnInsert(Int32 index, Object item)
[11048] at System.Collections.CollectionBase.System.Collections.IList.Add(Object value)
[11048] at DevExpress.XtraGrid.GridSummaryItemCollection.Add(GridSummaryItem item) |
Wat opvalt is de twee vraagtekens in het woord ArgumentException. Het lijkt me dat deze class (met de vraagtekens) niet bestaat in mscorlib.dll. Blijft natuurlijk de vraag waarom ze er staan, we doen niks bijzonders voor zover bekend. Op vele andere systemen (XP, Vista, Server 2000/2003 en een andere 2008 omgeving) werkt alles gewoon naar behoren. De locale settings van de server staan op Dutch, maar dat staan ze op mijn Vista werkstation ook (en daarop werkt het gewoon).
Wat kan er nu anders zijn op de betreffende systemen?