[progress Communities] [progress Openedge Abl] Forum Post: Re: How To Debug Pdsoe Could Not...

  • Thread starter Thread starter Garry Hall
  • Start date Start date
Status
Not open for further replies.
G

Garry Hall

Guest
Maybe the following snippet might be useful to you. It shows from where an assembly was loaded, GAC vs file system. It will display an error for one of the internal assemblies, you can ignore that. DEF VAR oAppDomain AS System.AppDomain NO-UNDO. DEF VAR oAssemblies AS System.Reflection.Assembly EXTENT NO-UNDO. DEFINE VARIABLE ictr AS INTEGER NO-UNDO. oAppDomain = System.AppDomain:CurrentDomain. oAssemblies = oAppDomain:GetAssemblies(). DO ictr = 1 TO EXTENT(oAssemblies): DISPLAY oAssemblies[ictr]:FullName FORMAT "x(128)" oAssemblies[ictr]:Location FORMAT "x(70)" WITH DOWN FRAME f1 WIDTH 132. DOWN WITH FRAME f1. END.

Continue reading...
 
Status
Not open for further replies.
Back
Top