<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ExportToJPEG crash with error on ArcGIS Server python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553738#M73595</link>
    <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/849016"&gt;@mgeom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering if you're using exportToPDF when you mean to use exportToJPEG:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
aprx = arcpy.mp.ArcGISProject(r"D:\path\myAPRX.aprx")
layout = aprx.listLayouts('layout_name')[0]
mf = layout.listElements('MAPFRAME_ELEMENT', '*')[0]
extent = arcpy.Extent(446998.96875,  214866.71875, 446579.875, 215163.046875)
mf.camera.setExtent(extent)
mf.exportToJPEG('path\out.jpg')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: Here is a link of someone else doing similar: &lt;A href="https://community.esri.com/t5/arcgis-pro-questions/python-script-to-export-layout-to-jpg/td-p/1114506" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-questions/python-script-to-export-layout-to-jpg/td-p/1114506&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2024 13:27:45 GMT</pubDate>
    <dc:creator>CodyPatterson</dc:creator>
    <dc:date>2024-10-30T13:27:45Z</dc:date>
    <item>
      <title>ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553734#M73594</link>
      <description>&lt;PRE&gt;Hello,
I'm trying to export a JPEG with a geoprocessing task running on an Arcgis server.
The ExportToJPEG line of code crashes with an error with ArcGIS Server python, but works fine with local ArcGIS Pro python.
I can't figure out what's wrong.
Here is the error:&lt;/PRE&gt;&lt;P&gt;Job Messages:&lt;/P&gt;&lt;P&gt;esriJobMessageTypeInformative: Submitted.&lt;BR /&gt;esriJobMessageTypeInformative: Executing...&lt;BR /&gt;esriJobMessageTypeError: Failed.&lt;BR /&gt;esriJobMessageTypeInformative: java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.RuntimeException: com.esri.arcgis.discovery.admin.rediscovery.util.ArcGISServiceException: Impossible de traiter la requête.&lt;/P&gt;&lt;PRE&gt;Here's a simple code test I did, it crashes at the last line:&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
aprx = arcpy.mp.ArcGISProject(r"D:\path\myAPRX.aprx")
layout = aprx.listLayouts('layout_name')[0]
mf = layout.listElements('MAPFRAME_ELEMENT', '*')[0]
extent = arcpy.Extent(446998.96875,  214866.71875, 446579.875, 215163.046875)
mf.camera.setExtent(extent)
mf.exportToPDF('path\out.jpg')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 13:18:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553734#M73594</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-10-30T13:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553738#M73595</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/849016"&gt;@mgeom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering if you're using exportToPDF when you mean to use exportToJPEG:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
aprx = arcpy.mp.ArcGISProject(r"D:\path\myAPRX.aprx")
layout = aprx.listLayouts('layout_name')[0]
mf = layout.listElements('MAPFRAME_ELEMENT', '*')[0]
extent = arcpy.Extent(446998.96875,  214866.71875, 446579.875, 215163.046875)
mf.camera.setExtent(extent)
mf.exportToJPEG('path\out.jpg')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: Here is a link of someone else doing similar: &lt;A href="https://community.esri.com/t5/arcgis-pro-questions/python-script-to-export-layout-to-jpg/td-p/1114506" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-questions/python-script-to-export-layout-to-jpg/td-p/1114506&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 13:27:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553738#M73595</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2024-10-30T13:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553740#M73596</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Thank you for your quick feedback.&lt;/P&gt;&lt;P&gt;I made a small error in the code. But yes, I would like to export a jpg with ExportToJPEG&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 13:35:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553740#M73596</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-10-30T13:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553742#M73597</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Thank you for your quick feedback.&lt;/P&gt;&lt;P&gt;I made a small error in the code. But yes, I would like to export a jpg with ExportToJPEG&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 13:43:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1553742#M73597</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-10-30T13:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556259#M73598</link>
      <description>&lt;P&gt;Any help please ?&lt;/P&gt;&lt;P&gt;It always chrashes at this level with error :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.RuntimeException: com.esri.arcgis.discovery.admin.rediscovery.util.ArcGISServiceException: Unable to process request.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;mf.exportToJPEG('path\out.jpg')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 13:51:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556259#M73598</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-11-07T13:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556572#M73599</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/849016"&gt;@mgeom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the late response, could you try something like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;mf.exportToJPEG('path\\out.jpg')&lt;/LI-CODE&gt;&lt;P&gt;Where the \ is escaped?&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:45:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556572#M73599</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2024-11-07T21:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556764#M73600</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/712076"&gt;@CodyPatterson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you for your answer&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;But it still doesn't work &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I don't understand the origin of the error&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 13:10:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556764#M73600</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-11-08T13:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556767#M73601</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/849016"&gt;@mgeom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm that is quite strange, the error that mentions java is typically related to a java function failure which could be caused by really anything it doesn't like. Since the error is extremely non-descriptive, it is nearly impossible to tell what could be causing it.&lt;/P&gt;&lt;P&gt;A final thing I would try, is set your ArcGIS Server logging to info, and attempt to run the script again, when it errors out in this manner, attempt to observe the ArcGIS Server logs to see if there is anything of description there. If so, please attach a screenshot as I believe that a function on there may be failing.&lt;/P&gt;&lt;P&gt;Past this, I would recommend reaching out to ESRI support, as a larger problem may be present.&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 13:16:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556767#M73601</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2024-11-08T13:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556775#M73602</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I set the log level to 'info' as you indicate, b&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;ut it doesn't give me much infos in the logs, just&amp;nbsp; very vague information&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I will create a ticket at esri as you say &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you very much for your help&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 13:44:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556775#M73602</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-11-08T13:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556777#M73603</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;I set the log level to 'info' as you indicate, b&lt;/SPAN&gt;&lt;SPAN class=""&gt;ut it doesn't give me much infos in the logs, just&amp;nbsp; very vague information&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I will create a ticket at esri as you say&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you very much for your help&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 13:45:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1556777#M73603</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2024-11-08T13:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1560300#M73604</link>
      <description>&lt;P&gt;I would triple check all your paths.&amp;nbsp; I ran this on both 2.x and 3.x and it ran with no issue.&amp;nbsp; The only difference is I did it inside pro and used CURRENT for my path.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 16:32:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1560300#M73604</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2024-11-19T16:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1574590#M73605</link>
      <description>&lt;P&gt;Was this ever solved? I'm running into a similar issue and would like to know what was discovered.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 23:11:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1574590#M73605</guid>
      <dc:creator>West-d-gis</dc:creator>
      <dc:date>2025-01-10T23:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1576630#M73606</link>
      <description>&lt;P&gt;I am having the same issue, same error with a GP service that exports a map series. Anyone been able to find a solution?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 22:10:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1576630#M73606</guid>
      <dc:creator>JoshuaGray</dc:creator>
      <dc:date>2025-01-16T22:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1576774#M73607</link>
      <description>&lt;P&gt;What version of Pro are you using?&amp;nbsp; I think in 2.x you cannot export a map series to .jpg, but in 3.x you can.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 14:26:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1576774#M73607</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2025-01-17T14:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1591336#M73855</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you find a solution? what was it? I have same error after upgrading arcgis server ..worked fine before.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Georgeta&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 18:49:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1591336#M73855</guid>
      <dc:creator>GeorgetaPopa10</dc:creator>
      <dc:date>2025-03-03T18:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1592644#M73870</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;No, it still doesn't work!&amp;nbsp;&lt;SPAN&gt;I &lt;/SPAN&gt;contacted esri support, but the topic is still pending.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What are your previous and current versions of ArcGIS Server ? In which environment are you? single machine or cluster?&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 06:44:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1592644#M73870</guid>
      <dc:creator>mgeom</dc:creator>
      <dc:date>2025-03-06T06:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1595797#M73918</link>
      <description>&lt;P&gt;I'm experiencing the same issue. I published a geoprocessing service that uses layout.exportToPDF, but it fails at the exportToPDF line. I also tried switching to exportToPNG and exportToJPEG, but the issue persists. Below are the job messages I encountered:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;I&gt;esriJobMessageTypeInformative&lt;/I&gt;: Submitted.&lt;/LI&gt;&lt;LI&gt;&lt;I&gt;esriJobMessageTypeInformative&lt;/I&gt;: Executing...&lt;/LI&gt;&lt;LI&gt;&lt;I&gt;esriJobMessageTypeError&lt;/I&gt;: Failed.&lt;/LI&gt;&lt;LI&gt;&lt;I&gt;esriJobMessageTypeInformative&lt;/I&gt;: java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.RuntimeException: com.esri.arcgis.discovery.admin.rediscovery.util.ArcGISServiceException: Could not service request.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sat, 15 Mar 2025 03:00:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1595797#M73918</guid>
      <dc:creator>ShawnShao1</dc:creator>
      <dc:date>2025-03-15T03:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: ExportToJPEG crash with error on ArcGIS Server python</title>
      <link>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1609235#M74083</link>
      <description>&lt;P&gt;We contacted ESRI Support Services with this issue and they had a fix that worked for us! Our affected servers had updated to VMWare Tools 12.5.0, and that version caused the issue. We upgraded to 12.5.1 and that took care of it, though downgrading is apparently also an option.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.vertigis.com%2Fhc%2Fen-us%2Farticles%2F22271790365074-Updating-VMWare-Tools-to-v12-5-0-may-cause-issues-with-SOEs-in-ArcGIS-Server&amp;amp;data=05%7C02%7Cssanders%40vedp.org%7Ce09321de60314663a14608dd7d0f2277%7C8a0e753120dc49a7b88eb68840ca4168%7C0%7C0%7C638804226149290871%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=MuWuZT8%2Fd7ennYb3HAalulnDDc76PxZI8lzjYUFJYnE%3D&amp;amp;reserved=0" href="https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.vertigis.com%2Fhc%2Fen-us%2Farticles%2F22271790365074-Updating-VMWare-Tools-to-v12-5-0-may-cause-issues-with-SOEs-in-ArcGIS-Server&amp;amp;data=05%7C02%7Cssanders%40vedp.org%7Ce09321de60314663a14608dd7d0f2277%7C8a0e753120dc49a7b88eb68840ca4168%7C0%7C0%7C638804226149290871%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=MuWuZT8%2Fd7ennYb3HAalulnDDc76PxZI8lzjYUFJYnE%3D&amp;amp;reserved=0" target="_blank" rel="noreferrer noopener"&gt;https://support.vertigis.com/hc/en-us/articles/22271790365074-Updating-VMWare-Tools-to-v12-5-0-may-cause-issues-with-SOEs-in-ArcGIS-Server&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope everyone has the same luck with it!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 14:24:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/exporttojpeg-crash-with-error-on-arcgis-server/m-p/1609235#M74083</guid>
      <dc:creator>SunnySanders</dc:creator>
      <dc:date>2025-04-25T14:24:24Z</dc:date>
    </item>
  </channel>
</rss>

