Posted on 11/04/2024 17:44:38
Hi Hreinn
Depending on your IIS settings, the stack will be send or not.
You can see the the full error if you configure your IIS to return it - set error mode to detailed and ensure it is not locked to local machine only: https://learn.microsoft.com/en-us/iis/configuration/system.webserver/httperrors/
An example of the settings your are looking for
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true"/>
</system.webServer>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
Also the exception of GetImage can be found inside Dynamicweb event viewer
And if you have full access to the server, you can also see it in Windows event viewer
As Kevin stated, it could be a missing dll. But it can also be missing permissions to the temp folder. If you are running locally you can try to change the IIS App Pool user to localsystem or networkservice which have elevated privelliges.
BR Nicolai