<?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: (WORKAROUND) o11n-package:import-package unable to sync workflows from vRO 8.10.2 in vCenter Orchestrator Plug-in SDK Discussions</title>
    <link>https://communities.vmware.com/t5/vCenter-Orchestrator-Plug-in-SDK/o11n-package-import-package-unable-to-sync-workflows-from-vRO-8/m-p/2972175#M771</link>
    <description>&lt;P&gt;OK, so since no one had any idea on this I figured I would update the thread with my solution.&lt;/P&gt;&lt;P&gt;My workaround to enable this type of capability was to leverage the vco-cli JAR, and execute the necessary command during the 'generate-resources' phase of the build.&lt;/P&gt;&lt;P&gt;You can pull down the vco-cli JAR from a few places, but I pulled it down from the LCM appliance, at this path:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;/opt/vmware/vlcm/blackstone/vco-cli/&amp;lt;version&amp;gt;/vco-cli-java-&amp;lt;version&amp;gt;.jar&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Once I had that in my package project, I figured out the commands to use it which was pretty easy.&lt;/P&gt;&lt;P&gt;So, I added this to my plugin-package/pom.xml file:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&amp;lt;&lt;SPAN&gt;artifactId&lt;/SPAN&gt;&amp;gt;exec-maven-plugin&amp;lt;/&lt;SPAN&gt;artifactId&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;version&lt;/SPAN&gt;&amp;gt;3.0.0&amp;lt;/&lt;SPAN&gt;version&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;groupId&lt;/SPAN&gt;&amp;gt;org.codehaus.mojo&amp;lt;/&lt;SPAN&gt;groupId&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;executions&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;SPAN&gt;  &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;execution&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;  &amp;lt;!-- Run vCO-CLI to pull the package contents prior to repackaging --&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;id&lt;/SPAN&gt;&amp;gt;Sync Content from Orchestrator&amp;lt;/&lt;SPAN&gt;id&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;phase&lt;/SPAN&gt;&amp;gt;generate-resources&amp;lt;/&lt;SPAN&gt;phase&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;goals&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;goal&lt;/SPAN&gt;&amp;gt;exec&amp;lt;/&lt;SPAN&gt;goal&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;/&lt;SPAN&gt;goals&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;configuration&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;executable&lt;/SPAN&gt;&amp;gt;java&amp;lt;/&lt;SPAN&gt;executable&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;arguments&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dlog4j2.formatMsgNoLookups=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DincludeConfigurationSecureStringValues=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DignoreServerCertificate=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DexportVersionHistory=false&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DexactPackageNameMatch=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dusername=${orchestratorUser}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dpassword=${orchestratorPass}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DserverHost=${orchestratorHost}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DserverPort=443&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-jar&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;vco-cli-java-8.10.0.jar&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;de&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;${remotePackageName}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;${project.basedir}/src/main/resources&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;/&lt;SPAN&gt;arguments&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;/&lt;SPAN&gt;configuration&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;  &amp;lt;/&lt;SPAN&gt;execution&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;/&lt;SPAN&gt;executions&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;/&lt;SPAN&gt;plugin&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;I tried a couple of other ways to do this, such as using LCM to push the content to Git and then I would pull that repo, but it looks like LCM rewrites the contents of the Workflows and such to where they are not usable with the Maven packaging plugin.&lt;/P&gt;&lt;P&gt;This solution is at least automated with a few properties in my settings.xml in the M2 repository.&lt;/P&gt;&lt;P&gt;I hope this helps someone down the line.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 08 Jun 2023 01:54:53 GMT</pubDate>
    <dc:creator>JFCooleBA</dc:creator>
    <dc:date>2023-06-08T01:54:53Z</dc:date>
    <item>
      <title>o11n-package:import-package unable to sync workflows from vRO 8.10.2</title>
      <link>https://communities.vmware.com/t5/vCenter-Orchestrator-Plug-in-SDK/o11n-package-import-package-unable-to-sync-workflows-from-vRO-8/m-p/2967047#M770</link>
      <description>&lt;P&gt;I am building a plugin and created some stock workflows I want to distribute with it.&lt;/P&gt;&lt;P&gt;The package content in question is purely Workflows at this time.&lt;/P&gt;&lt;P&gt;I am running this command from my machine to do the package import with Maven:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;mvn o11n-package:import-package -DserverUrl=vro01.domain.local -Dusername=administrator@vsphere.local -Dpassword=******** -DpackageName=mypluginpackage&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;But, when I attempt to run the import-package goal, I get this error:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;[ERROR] Failed to execute goal com.vmware.o11n.mojo.pkg:o11n-package-maven-plugin:8.4.2:import-package (default-cli) on project o11nplugin-myplugin-package: Unable to import package [mypluginpackage], from server '[vro01.domain.local]': &lt;BR /&gt;Error while extracting response for type [class com.vmware.o11n.sdk.rest.client.stubs.InventoryItemsList] and content type [application/xml;charset=UTF-8]; &lt;BR /&gt;nested exception is org.springframework.http.converter.HttpMessageNotReadableException: Could not unmarshal to [class com.vmware.o11n.sdk.rest.client.stubs.InventoryItemsList]: &lt;BR /&gt;&lt;U&gt;&lt;STRONG&gt;unexpected element (uri:"http://www.vmware.com/vco", local:"inventory-items")&lt;/STRONG&gt;&lt;/U&gt;. Expected elements are &amp;lt;{}actions&amp;gt;,&amp;lt;{}categories&amp;gt;,&amp;lt;{}configurations&amp;gt;,&amp;lt;{}interactions&amp;gt;,&amp;lt;{}inventory-items&amp;gt;,&amp;lt;{}owners&amp;gt;,&amp;lt;{}packages&amp;gt;,&amp;lt;{}resources&amp;gt;,&amp;lt;{}tags&amp;gt;; &lt;BR /&gt;nested exception is javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.vmware.com/vco", local:"inventory-items"). &lt;BR /&gt;Expected elements are &amp;lt;{}actions&amp;gt;,&amp;lt;{}categories&amp;gt;,&amp;lt;{}configurations&amp;gt;,&amp;lt;{}interactions&amp;gt;,&amp;lt;{}inventory-items&amp;gt;,&amp;lt;{}owners&amp;gt;,&amp;lt;{}packages&amp;gt;,&amp;lt;{}resources&amp;gt;,&amp;lt;{}tags&amp;gt; -&amp;gt; [Help 1]&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;I monitored the &lt;STRONG&gt;vco-server-app_access.log&lt;/STRONG&gt; and saw that it was able to communicate to the /catalog endpoint and return HTTP 200 responses, so I know my credentials are at least OK.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;2023-05-05T18:45:29.287Z INFO vco [host='vco-app-857b668df-8j2nb' thread='http-nio-8280-exec-6' user='Administrator@VSPHERE.LOCAL' org='-' trace='-'] - 10.244.0.92 - - [05/May/2023:18:45:29 +0000] GET /vco/api/catalog/System/Package/?conditions=name%7Emypluginpackage HTTP/1.1 200 128 7 ms&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2023-05-05T18:45:47.303Z INFO vco [host='vco-app-857b668df-8j2nb' thread='http-nio-8280-exec-2' user='Administrator@VSPHERE.LOCAL' org='-' trace='-'] - 10.244.0.92 - - [05/May/2023:18:45:47 +0000] GET /vco/api/catalog/System/UserInteraction HTTP/1.1 200 32 4 ms&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;This Orchestrator authenticates with CIS/vCenter only.&lt;/P&gt;&lt;P&gt;I've also tried using newer versions of the SDK, such as 8.9.0 but I get the same result.&lt;/P&gt;&lt;P&gt;Here is my Maven/JDK information:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T08:41:47-08:00)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maven home: /opt/apache-maven/apache-maven-3.3.9&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Java version: 20, vendor: Oracle Corporation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Java home: /Library/Java/JavaVirtualMachines/jdk-20.jdk/Contents/Home&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Default locale: en_US, platform encoding: UTF-8&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;OS name: "mac os x", version: "13.3.1", arch: "x86_64", family: "mac"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Anyone have any ideas why this could be occurring?&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 18:50:01 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vCenter-Orchestrator-Plug-in-SDK/o11n-package-import-package-unable-to-sync-workflows-from-vRO-8/m-p/2967047#M770</guid>
      <dc:creator>JFCooleBA</dc:creator>
      <dc:date>2023-05-05T18:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: (WORKAROUND) o11n-package:import-package unable to sync workflows from vRO 8.10.2</title>
      <link>https://communities.vmware.com/t5/vCenter-Orchestrator-Plug-in-SDK/o11n-package-import-package-unable-to-sync-workflows-from-vRO-8/m-p/2972175#M771</link>
      <description>&lt;P&gt;OK, so since no one had any idea on this I figured I would update the thread with my solution.&lt;/P&gt;&lt;P&gt;My workaround to enable this type of capability was to leverage the vco-cli JAR, and execute the necessary command during the 'generate-resources' phase of the build.&lt;/P&gt;&lt;P&gt;You can pull down the vco-cli JAR from a few places, but I pulled it down from the LCM appliance, at this path:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;/opt/vmware/vlcm/blackstone/vco-cli/&amp;lt;version&amp;gt;/vco-cli-java-&amp;lt;version&amp;gt;.jar&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Once I had that in my package project, I figured out the commands to use it which was pretty easy.&lt;/P&gt;&lt;P&gt;So, I added this to my plugin-package/pom.xml file:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&amp;lt;&lt;SPAN&gt;artifactId&lt;/SPAN&gt;&amp;gt;exec-maven-plugin&amp;lt;/&lt;SPAN&gt;artifactId&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;version&lt;/SPAN&gt;&amp;gt;3.0.0&amp;lt;/&lt;SPAN&gt;version&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;groupId&lt;/SPAN&gt;&amp;gt;org.codehaus.mojo&amp;lt;/&lt;SPAN&gt;groupId&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;&lt;SPAN&gt;executions&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;SPAN&gt;  &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;execution&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;  &amp;lt;!-- Run vCO-CLI to pull the package contents prior to repackaging --&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;id&lt;/SPAN&gt;&amp;gt;Sync Content from Orchestrator&amp;lt;/&lt;SPAN&gt;id&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;phase&lt;/SPAN&gt;&amp;gt;generate-resources&amp;lt;/&lt;SPAN&gt;phase&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;goals&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;goal&lt;/SPAN&gt;&amp;gt;exec&amp;lt;/&lt;SPAN&gt;goal&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;/&lt;SPAN&gt;goals&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;    &amp;lt;&lt;SPAN&gt;configuration&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;executable&lt;/SPAN&gt;&amp;gt;java&amp;lt;/&lt;SPAN&gt;executable&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;&lt;SPAN&gt;arguments&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dlog4j2.formatMsgNoLookups=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DincludeConfigurationSecureStringValues=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DignoreServerCertificate=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DexportVersionHistory=false&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DexactPackageNameMatch=true&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dusername=${orchestratorUser}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-Dpassword=${orchestratorPass}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DserverHost=${orchestratorHost}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-DserverPort=443&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;-jar&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;vco-cli-java-8.10.0.jar&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;de&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;${remotePackageName}&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;        &amp;lt;&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;${project.basedir}/src/main/resources&amp;lt;/&lt;SPAN&gt;argument&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;      &amp;lt;/&lt;SPAN&gt;arguments&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;    &amp;lt;/&lt;SPAN&gt;configuration&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;  &amp;lt;/&lt;SPAN&gt;execution&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;/&lt;SPAN&gt;executions&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&amp;lt;/&lt;SPAN&gt;plugin&lt;/SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;I tried a couple of other ways to do this, such as using LCM to push the content to Git and then I would pull that repo, but it looks like LCM rewrites the contents of the Workflows and such to where they are not usable with the Maven packaging plugin.&lt;/P&gt;&lt;P&gt;This solution is at least automated with a few properties in my settings.xml in the M2 repository.&lt;/P&gt;&lt;P&gt;I hope this helps someone down the line.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 08 Jun 2023 01:54:53 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vCenter-Orchestrator-Plug-in-SDK/o11n-package-import-package-unable-to-sync-workflows-from-vRO-8/m-p/2972175#M771</guid>
      <dc:creator>JFCooleBA</dc:creator>
      <dc:date>2023-06-08T01:54:53Z</dc:date>
    </item>
  </channel>
</rss>

