Thank you. I am not a programmer myself. How would either InnerException or AggregateException be used in this case?I tried:try: gdalc.Gdal.AllRegister() except System.AggregateException as e: print "exception: ", e.InnerExceptions But that didn't seem to be correct.
From: Markus Schaber <m.scha...@codesys.com> To: Djordje Spasic <issworld2...@yahoo.com>; "ironpython-users@python.org" <ironpython-users@python.org> Sent: Tuesday, November 17, 2015 11:31 AM Subject: RE: [Ironpython-users] PINVOKE exception from loaded .NET assembly #yiv9011599688 #yiv9011599688 -- _filtered #yiv9011599688 {font-family:Helvetica;panose-1:2 11 6 4 2 2 2 2 2 4;} _filtered #yiv9011599688 {font-family:Helvetica;panose-1:2 11 6 4 2 2 2 2 2 4;} _filtered #yiv9011599688 {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;} _filtered #yiv9011599688 {font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;} _filtered #yiv9011599688 {font-family:Consolas;panose-1:2 11 6 9 2 2 4 3 2 4;} _filtered #yiv9011599688 {font-family:Verdana;panose-1:2 11 6 4 3 5 4 4 2 4;}#yiv9011599688 #yiv9011599688 p.yiv9011599688MsoNormal, #yiv9011599688 li.yiv9011599688MsoNormal, #yiv9011599688 div.yiv9011599688MsoNormal {margin:0cm;margin-bottom:.0001pt;font-size:12.0pt;}#yiv9011599688 a:link, #yiv9011599688 span.yiv9011599688MsoHyperlink {color:blue;text-decoration:underline;}#yiv9011599688 a:visited, #yiv9011599688 span.yiv9011599688MsoHyperlinkFollowed {color:purple;text-decoration:underline;}#yiv9011599688 code {}#yiv9011599688 pre {margin:0cm;margin-bottom:.0001pt;font-size:10.0pt;}#yiv9011599688 p.yiv9011599688MsoAcetate, #yiv9011599688 li.yiv9011599688MsoAcetate, #yiv9011599688 div.yiv9011599688MsoAcetate {margin:0cm;margin-bottom:.0001pt;font-size:8.0pt;}#yiv9011599688 span.yiv9011599688HTMLVorformatiertZchn {font-family:Consolas;}#yiv9011599688 span.yiv9011599688E-MailFormatvorlage20 {color:windowtext;font-weight:normal;font-style:normal;}#yiv9011599688 span.yiv9011599688SprechblasentextZchn {}#yiv9011599688 .yiv9011599688MsoChpDefault {font-size:10.0pt;} _filtered #yiv9011599688 {margin:70.85pt 70.85pt 2.0cm 70.85pt;}#yiv9011599688 div.yiv9011599688WordSection1 {}#yiv9011599688 Hi, The inner exception (if present) can be accessed via the InnerException property of the “outer” exception: https://msdn.microsoft.com/de-de/library/system.exception.innerexception%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396 (This is a .NET feature, not an IronPython specific one.) There’s also an AggregateException which is used in some cases: https://msdn.microsoft.com/de-de/library/system.aggregateexception%28v=vs.110%29.aspx Grüße, Markus From: Djordje Spasic [mailto:issworld2...@yahoo.com] Sent: Tuesday, November 17, 2015 11:16 AM To: Markus Schaber; ironpython-users@python.org Subject: Re: [Ironpython-users] PINVOKE exception from loaded .NET assembly Hi Markus, Thank you for the reply. How can I access the inner exception in ironpython? I tried this: import clr clr.AddReferenceToFileAndPath("c:/gdal/gdal2bb/gdal_csharp.dll") import OSGeo.GDAL as gdalc try: gdalc.Gdal.AllRegister() except System.Exception as e: print e.Message But it raises the same message: The type initializer for 'OSGeo.GDAL.GdalPINVOKE' threw an exception. So this is not an inner exception? Regards, Djordje From: Markus Schaber <m.scha...@codesys.com> To: Djordje Spasic <issworld2...@yahoo.com> Sent: Tuesday, November 17, 2015 7:57 AM Subject: RE: [Ironpython-users] PINVOKE exception from loaded .NET assembly Hello, From: Djordje > I am trying call a method from loaded .NET assembly in python, but for some > reason, I am getting a PINVOKE exception. Is there some way to print what is > the reason for that exception? Maybe you could try to access the inner exception? Best regards Markus Schaber CODESYS® a trademark of 3S-Smart Software Solutions GmbH Inspiring Automation Solutions ________________________________________ 3S-Smart Software Solutions GmbH Dipl.-Inf. Markus Schaber | Product Development Core Technology Memminger Str. 151 | 87439 Kempten | Germany Tel. +49-831-54031-979 | Fax +49-831-54031-50 E-Mail: m.scha...@codesys.com | Web: codesys.com | CODESYS store: store.codesys.com CODESYS forum: forum.codesys.com Managing Directors: Dipl.Inf. Dieter Hess, Dipl.Inf. Manfred Werner | Trade register: Kempten HRB 6186 | Tax ID No.: DE 167014915 ________________________________________ This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
_______________________________________________ Ironpython-users mailing list Ironpython-users@python.org https://mail.python.org/mailman/listinfo/ironpython-users