<?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: IBM MQ extension includes cpython linux .so file? in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294947#M7063</link>
    <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21611"&gt;@diego_morales&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the explanation.&lt;/P&gt;&lt;P&gt;I was aware of the native dependencies, but had the idea they were distributed as whl's. That's at least what we usually see with libraries like cryptography, which are included in separate linux and windows whl's. I believe this ibm_mq is really the only extension where I have seen the binaries inside the "main" whl of the extension.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Feb 2026 22:16:54 GMT</pubDate>
    <dc:creator>AntonioSousa</dc:creator>
    <dc:date>2026-02-18T22:16:54Z</dc:date>
    <item>
      <title>IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294939#M7061</link>
      <description>&lt;P&gt;While debugging an error I'm having with the IBM MQ extension, I have noticed that it includes in the extension ibm_mq-3.9.5-py3-none-any.whl, the following binary files, inside the ibm_mq/pymqi directory:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;pymqe.cp310-win_amd64.pyd&lt;/LI&gt;
&lt;LI&gt;pymqe.cpython-310-x86_64-linux-gnu.so&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;As I believe I have not seen this before, was wondering (as an Extension developer) why it was done this way? Some optimization trick? Because I believe it would have been setup better as a setup.py dependency, with the corresponding .whl file in the extension.&amp;nbsp;Or ist&amp;nbsp;it&amp;nbsp;a&amp;nbsp;dependency&amp;nbsp;from&amp;nbsp;the&amp;nbsp;other&amp;nbsp;jar&amp;nbsp;file?&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/11520"&gt;@Mike_L&lt;/a&gt;&amp;nbsp;, can someone from you team give a hint?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 09:09:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294939#M7061</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2026-02-23T09:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294946#M7062</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/17213"&gt;@AntonioSousa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It cannot be added in setup.py because it has to be built using the IBM MQ SDK local to the machine. That .pyd and .so files look for the IBM MQ SDK libraries on the machine it is built, then compiles its CPython using those libraries.&lt;/P&gt;
&lt;P&gt;They need to be pre-built on each OS and then added manually for that reason. It only executes the one it recognizes by the OS when the extension runs.&lt;/P&gt;
&lt;P&gt;Hope this answers your question.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Diego&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 21:36:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294946#M7062</guid>
      <dc:creator>diego_morales</dc:creator>
      <dc:date>2026-02-18T21:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294947#M7063</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21611"&gt;@diego_morales&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the explanation.&lt;/P&gt;&lt;P&gt;I was aware of the native dependencies, but had the idea they were distributed as whl's. That's at least what we usually see with libraries like cryptography, which are included in separate linux and windows whl's. I believe this ibm_mq is really the only extension where I have seen the binaries inside the "main" whl of the extension.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 22:16:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294947#M7063</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2026-02-18T22:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294951#M7064</link>
      <description>&lt;P&gt;Indeed, they usually are. These ones require that combination of native MQ SDK libraries to compile, so a simple .whl won't do. That extension is also unique in many ways considering IBM made MQ very customizable in different OS and distributions and they all behave different. The extension had to accommodate for all that as well.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 23:50:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/294951#M7064</guid>
      <dc:creator>diego_morales</dc:creator>
      <dc:date>2026-02-18T23:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/295027#M7077</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21611"&gt;@diego_morales&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;I have a question regarding the IBM MQ extension. We have this extension running in a Managed environment without any issues, but we recently migrated to SaaS (the configuration is identical to the Managed setup; the only new component is the ActiveGate in SaaS). Unfortunately, in SaaS we are getting these errors. The firewall on the new ActiveGate is open for the same ports as in the Managed environment.&lt;/P&gt;&lt;P&gt;Do you have any idea what might be causing the issue or what we should focus on?&lt;BR /&gt;What’s strange is that besides errors and warnings, the status also shows “OK”, but we still don’t receive any data.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Warn&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Content&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;Endpoints OK: &lt;SPAN class=""&gt;0&lt;/SPAN&gt; WARNING: &lt;SPAN class=""&gt;0&lt;/SPAN&gt; ERROR: &lt;SPAN class=""&gt;1&lt;/SPAN&gt; Unhealthy endpoints: xxxx - GENERIC_ERROR DEC:15C ERROR: Unable to connect to queue manager xxxxx. Could not connect to Queue Manager: Code: MQCC_FAILED, Reason: MQRC_HOST_NOT_AVAILABLE. Message: MQJE001: Completion Code '&lt;SPAN class=""&gt;2&lt;/SPAN&gt;', Reason '&lt;SPAN class=""&gt;2538&lt;/SPAN&gt;'.&lt;BR /&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Error&lt;/STRONG&gt;&lt;BR /&gt;Content&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;TIATUOAQM: &lt;SPAN class=""&gt;[NEW]&lt;/SPAN&gt; - GENERIC_ERROR DEC:15C ERROR: Unable to connect to queue manager TIATUOAQM. Could not connect to Queue Manager: Code: MQCC_FAILED, Reason: MQRC_HOST_NOT_AVAILABLE. Message: MQJE001: Completion Code '&lt;SPAN class=""&gt;2&lt;/SPAN&gt;', Reason '&lt;SPAN class=""&gt;2538&lt;/SPAN&gt;'.&lt;/DIV&gt;&lt;/DIV&gt;&lt;STRONG&gt;Info&lt;/STRONG&gt;&lt;BR /&gt;&lt;DIV class=""&gt;Content&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;Endpoints OK: &lt;SPAN class=""&gt;1&lt;/SPAN&gt; WARNING: &lt;SPAN class=""&gt;0&lt;/SPAN&gt; ERROR: &lt;SPAN class=""&gt;0&lt;BR /&gt;&lt;STRONG&gt;Info&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class=""&gt;Content&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;xxxxx: &lt;SPAN class=""&gt;[NEW]&lt;/SPAN&gt; - OK&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;The only thing I noticed is that Managed has for examle in event logs&lt;BR /&gt;dt.entity.extensions:extension&lt;BR /&gt;CUSTOM_DEVICE-xxxxxxxxxxx&lt;BR /&gt;but SaaS has&lt;BR /&gt;dt.openpipeline.pipelines&lt;BR /&gt;system.events:default&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 20 Feb 2026 07:17:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/295027#M7077</guid>
      <dc:creator>jiri_stefanek</dc:creator>
      <dc:date>2026-02-20T07:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: IBM MQ extension includes cpython linux .so file?</title>
      <link>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/295029#M7078</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/30685"&gt;@jiri_stefanek&lt;/a&gt;&amp;nbsp;your error clearly states the extension cannot connect to MQ manager. Most missing firewall clearances between AG and MQ (if you deployed a new AG for SaaS). Or a different configuration.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 09:00:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/IBM-MQ-extension-includes-cpython-linux-so-file/m-p/295029#M7078</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-02-20T09:00:43Z</dc:date>
    </item>
  </channel>
</rss>

