<?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>stoevm Tracker</title>
    <link>https://communities.vmware.com/wbsdv95928/tracker</link>
    <description>stoevm Tracker</description>
    <pubDate>Sat, 18 Nov 2023 03:24:57 GMT</pubDate>
    <dc:date>2023-11-18T03:24:57Z</dc:date>
    <item>
      <title>Re: Remote plugin sample Websocket not working</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Remote-plugin-sample-Websocket-not-working/m-p/2995897#M6198</link>
      <description>&lt;P&gt;Hi, Thank you for catching this bug.&lt;/P&gt;&lt;P&gt;I managed to reproduce the issue. It is not a constant bug so it was interesting task to find out the problem.&lt;BR /&gt;Before I give the explanation what goes wrong, just wanted to say that the WS should go through the proxied url as well.&lt;/P&gt;&lt;P&gt;Problem:&lt;/P&gt;&lt;P&gt;What is the current workflow:&lt;/P&gt;&lt;P&gt;1) A request is sent to the java code to generate a secure token. (ref: messaging-service.ts, WebSocketSessionTicketService)&lt;BR /&gt;2) Then the UI uses this token when creating WS (ref: messaging-service.ts)&lt;BR /&gt;3) The java code checks if this is the token that was previously generated. (ref WebSocketSessionTicketService::validateTicket)&lt;/P&gt;&lt;P&gt;The problem is at step 2 where the token sent from the UI is not encoded and the app tries to encode it (for example changing + to a space character which breaks the workflow).&lt;/P&gt;&lt;P&gt;This can be solved by encoding the token before passing it to the WebSocket.&lt;/P&gt;&lt;P&gt;The solution should be done in the messaging-service.ts by encoding the sessionTicket before sending it to the backend with the WS.&lt;BR /&gt;Since the WebSocket JS API does not allow header modification, this might be the only way to fix this from the JS side. Possible solution is to do the needed encoding transformations during ticket generation but requires much more coding.&lt;/P&gt;&lt;P&gt;Example fix:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;const &lt;/SPAN&gt;anchorElement = &lt;SPAN&gt;document&lt;/SPAN&gt;.&lt;SPAN&gt;createElement&lt;/SPAN&gt;(&lt;SPAN&gt;'a'&lt;/SPAN&gt;)&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;anchorElement.&lt;SPAN&gt;href &lt;/SPAN&gt;= &lt;SPAN&gt;'messaging' &lt;/SPAN&gt;+&lt;BR /&gt;      &lt;SPAN&gt;`?session-ticket=&lt;/SPAN&gt;${&lt;SPAN&gt;encodeURIComponent&lt;/SPAN&gt;(sessionTicket)}&lt;SPAN&gt;`&lt;/SPAN&gt;&lt;SPAN&gt;;  // HERE IS THE FIX&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;const &lt;/SPAN&gt;messagingUrl =&lt;BR /&gt;      &lt;SPAN&gt;`wss://&lt;/SPAN&gt;${anchorElement.&lt;SPAN&gt;host&lt;/SPAN&gt;}${anchorElement.&lt;SPAN&gt;pathname&lt;/SPAN&gt;}${anchorElement.&lt;SPAN&gt;search&lt;/SPAN&gt;}&lt;SPAN&gt;`&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Try out this fix to verify if it fixes the issue that you are observing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;Martin&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Nov 2023 10:05:51 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Remote-plugin-sample-Websocket-not-working/m-p/2995897#M6198</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2023-11-16T10:05:51Z</dc:date>
    </item>
    <item>
      <title>vSphere Client SDK 8.0 U2 release</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vSphere-Client-SDK-8-0-U2-release/m-p/2988369#M6191</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;A vSphere Client SDK has been release for the vSphere 8.0 U2 release.&lt;BR /&gt;The U2 vSphere Client SDK and release notes can be found on &lt;A href="https://developer.vmware.com/web/sdk/8.0/client" target="_blank"&gt;https://developer.vmware.com/web/sdk/8.0/client&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 15:26:55 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vSphere-Client-SDK-8-0-U2-release/m-p/2988369#M6191</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2023-09-26T15:26:55Z</dc:date>
    </item>
    <item>
      <title>VMware Explore Las Vegas Hackathon</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/VMware-Explore-Las-Vegas-Hackathon/m-p/2979655#M6185</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Our team will participate in this year's VMware Explore in Las Vegas with one session and a project in the Hackathon.&lt;/P&gt;&lt;P&gt;The session subject is:&amp;nbsp;&lt;SPAN&gt;Journey to Develop, Install and Manage a vSphere Client Plug-In.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The hackathon project is open for others to join. Our project is focused on remote plugins and some new technologies to do analytics on the vCenter objects, titled:&amp;nbsp;&lt;EM&gt;Optimising&amp;nbsp;vSphere performance made easy&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You can use the&amp;nbsp;&lt;A href="https://docs.google.com/forms/d/e/1FAIpQLSdxO789C_X7Y-fF7vnP_HYw3ifKhhSa7GJGE6GlNdipQDgfqQ/viewform" target="_self"&gt;registration form&lt;/A&gt;&amp;nbsp;to sign for this awesome hackathon project.&lt;/P&gt;&lt;P&gt;See you at the VMware Explore!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 07:51:02 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/VMware-Explore-Las-Vegas-Hackathon/m-p/2979655#M6185</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2023-07-28T07:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Unable to get serverGuid in vsphere-ui plugin 6.7</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-get-serverGuid-in-vsphere-ui-plugin-6-7/m-p/2968198#M6173</link>
      <description>&lt;P&gt;Hi kumargandhi&lt;/P&gt;&lt;P&gt;With the new forwarding feature implemented in the SDK you do not even need the correct API endpoint in the UI.&lt;BR /&gt;All you need is the target VC for which the call is intended.&lt;/P&gt;&lt;P&gt;The clone-ticket can be send to any VC in the linked environment, and it will be forwarded to the VC from which vSphere Client the plugin is used. (this feature works for VCs &amp;gt;= 7.0u2 version)&lt;BR /&gt;More information on this can be found in the vsphere client docs:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://vdc-download.vmware.com/vmwb-repository/dcr-public/009a36e4-2f17-46fc-ac27-ea9f8bf8c923/9988800b-a054-42d0-ae61-18f0ceafff24/vSphereClientSDK-801.pdf" target="_blank"&gt;https://vdc-download.vmware.com/vmwb-repository/dcr-public/009a36e4-2f17-46fc-ac27-ea9f8bf8c923/9988800b-a054-42d0-ae61-18f0ceafff24/vSphereClientSDK-801.pdf&lt;/A&gt;&lt;BR /&gt;Section:&amp;nbsp;How to Delegate Session Authority to the Plug-in Server&lt;/P&gt;&lt;P&gt;If your plugin is to work after 7.0u2 you can take advantage of this new feature. Otherwise before 7.0u2 the plugin needs to trust all vCenters in the linked environment and use the getApiEndpoint.&lt;/P&gt;&lt;P&gt;The getApiEndpoint is not dependent on the linked environment, basically the guid is the one which determines for which VC the vsphere client will clone the session. This means that the api-endpoint is the same no matter for which VC you need a cloned ticket.&lt;/P&gt;&lt;P&gt;Again it is best to use the new functionality which eliminates the need for the getApiEndpoint API call.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 10:03:29 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-get-serverGuid-in-vsphere-ui-plugin-6-7/m-p/2968198#M6173</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2023-05-12T10:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Plugin Development: SOAP CloneSession() call returns session is not authenticated.</title>
      <link>https://communities.vmware.com/t5/vCenter-Server-Discussions/Remote-Plugin-Development-SOAP-CloneSession-call-returns-session/m-p/2960222#M94220</link>
      <description>&lt;P&gt;A solution using the pyvmomi has been shown in the vSphere Client SDK forums from vedaniks,&amp;nbsp;&lt;BR /&gt;&lt;A href="https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Clone-Session-using-Python/m-p/2926635#M6100" target="_blank"&gt;https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Clone-Session-using-Python/m-p/2926635#M6100&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 11:19:59 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vCenter-Server-Discussions/Remote-Plugin-Development-SOAP-CloneSession-call-returns-session/m-p/2960222#M94220</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2023-03-21T11:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to clone ticket using /api/ui/vcenter/session/clone-ticket</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-clone-ticket-using-api-ui-vcenter-session-clone-ticket/m-p/2926646#M6102</link>
      <description>&lt;P&gt;Hi vedaniks,&lt;/P&gt;&lt;P&gt;On a global view you can not fetch the vc_guid, because there are corner cases where this results in an undefined behavior.&amp;nbsp;For example one remote plugin instance registered on multiple vCenters. At this point there will be multiple guids for that global view.&lt;/P&gt;&lt;P&gt;The idea for remote plugins is to have the guids of the registered vCenters configured during plugin installation, for example in a conf file or through some REST endpoints.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This way the plugin will know to which vCenters it is supposed to be talking to and the plugin UI will not be required to retrieve such information. This is the case for global views since there is no object and the plugin ( if it wants to retrieve info from the vCenters) can do it through the configured vCenter guids (thumbprints and so on...) .&lt;/P&gt;&lt;P&gt;For a context object it is important to retrieve the object and the guid since you want(in most cases) to show information relevant only for that vCenter ( and object ).&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 11:33:15 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-clone-ticket-using-api-ui-vcenter-session-clone-ticket/m-p/2926646#M6102</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-08-31T11:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: CloneSession() throws "Login failed because the session could not be re-registered"</title>
      <link>https://communities.vmware.com/t5/vSphere-SDK-for-Perl-Discussions/CloneSession-throws-quot-Login-failed-because-the-session-could/m-p/2921896#M2876</link>
      <description>&lt;P&gt;Moving this to the vSphere SDK for Perl Discussions for better resolution.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 14:30:53 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-SDK-for-Perl-Discussions/CloneSession-throws-quot-Login-failed-because-the-session-could/m-p/2921896#M2876</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-08-02T14:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Vmware ESXi</title>
      <link>https://communities.vmware.com/t5/ESXi-Discussions/Vmware-ESXi/m-p/2917758#M282693</link>
      <description>&lt;P&gt;Hi ITTech7,&lt;/P&gt;&lt;P&gt;This forum is for vSphere Client SDK plugins related questions, please use the general vSphere forum to post your question.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Martin&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 13:28:32 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/ESXi-Discussions/Vmware-ESXi/m-p/2917758#M282693</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-07-07T13:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: vcenter 7.0 U2 vs vcenter 6.7 U3 sandbox for remote client plugins</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2905074#M6043</link>
      <description>&lt;P&gt;Hi harsha219,&lt;/P&gt;&lt;P&gt;I checked and&amp;nbsp;unfortunately we no longer have a mechanism to release such changes in the 6.7 release cycle.&lt;/P&gt;&lt;P&gt;Martin.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 11:08:30 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2905074#M6043</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-04-20T11:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: vcenter 7.0 U2 vs vcenter 6.7 U3 sandbox for remote client plugins</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902256#M6040</link>
      <description>&lt;P&gt;Let me check if it is possible to add such a feature for an upcoming patch for version 6.7U3.&lt;BR /&gt;I will update you once I have the details.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 11:16:34 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902256#M6040</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-04-04T11:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: vcenter 7.0 U2 vs vcenter 6.7 U3 sandbox for remote client plugins</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902249#M6038</link>
      <description>&lt;P&gt;For local plugins it works because they do not have the sandbox attribute attached to their iframe.&amp;nbsp;&lt;BR /&gt;When you open developers console when observing one of your plugins view in the vSphere Client and look at the iframe encapsulating your plugin, you will see that local and remote plugins are encapsulated with a different iframe element.&lt;BR /&gt;&lt;A href="https://www.w3schools.com/tags/att_iframe_sandbox.asp" target="_blank"&gt;https://www.w3schools.com/tags/att_iframe_sandbox.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For local plugins there are no restrictions in the iframe sandbox rules, because a lot of plugins would simply not work, however this creates possible security flaws.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For remote plugins the security is the main concern, thus not all sandbox attributes are allowed, we started with a minimal set in 6.7U3 (which for example does not contain allow-popups), after some requests from plugin writers we have added it and it is present in the 7.0U2 as you mentioned).&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is not clear to me, if you have developed a local plugin working as expected for 6.7U3, why would you develop the remote plugin to cover those versions as well ?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 10:54:35 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902249#M6038</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-04-04T10:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: vcenter 7.0 U2 vs vcenter 6.7 U3 sandbox for remote client plugins</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902189#M6036</link>
      <description>&lt;P&gt;Hi harsha,&lt;/P&gt;&lt;P&gt;The allow-popups is not allowed in 6.7U3, there is no such implementation, it was added post-factum.&lt;BR /&gt;There is no way to enable it, since the implementation is missing.&lt;BR /&gt;&lt;BR /&gt;About the suggestions, can you elaborate more on what is the use-case that you try to accomplish ?&amp;nbsp;&lt;BR /&gt;Most use-cases can be migrated from popups to opening a modal and in most cases this is the best practice. However it depends on the use-case in question.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 07:23:07 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vcenter-7-0-U2-vs-vcenter-6-7-U3-sandbox-for-remote-client/m-p/2902189#M6036</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-04-04T07:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get vm certificate expiration dates with vsphere api</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/How-to-get-vm-certificate-expiration-dates-with-vsphere-api/m-p/2895753#M6018</link>
      <description>&lt;P&gt;Hi spsrs,&lt;/P&gt;&lt;P&gt;This a domain specific question and not related to the vSphere Client SDK.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please post this question in the &lt;A href="https://communities.vmware.com/t5/vSphere-Management-SDK/bd-p/4524" target="_self"&gt;vSphere Management SDK forum&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 11:40:41 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/How-to-get-vm-certificate-expiration-dates-with-vsphere-api/m-p/2895753#M6018</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-02-28T11:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to collect Cluster Health with Rest API</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/How-to-collect-Cluster-Health-with-Rest-API/m-p/2895752#M6017</link>
      <description>&lt;P&gt;Hi spsrs,&lt;/P&gt;&lt;P&gt;This a domain specific question and not related to the vSphere Client SDK.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please post this question in the &lt;A href="https://communities.vmware.com/t5/vSphere-Management-SDK/bd-p/4524" target="_self"&gt;vSphere Management SDK forum&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 11:40:35 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/How-to-collect-Cluster-Health-with-Rest-API/m-p/2895752#M6017</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-02-28T11:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot find the remote plugin programming guide for 7.0 anymore</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Cannot-find-the-remote-plugin-programming-guide-for-7-0-anymore/m-p/2895749#M6016</link>
      <description>&lt;P&gt;Hi rajagopalans,&lt;/P&gt;&lt;P&gt;I managed to fix the link to point to the correct URI.&lt;/P&gt;&lt;P&gt;Thanks for bringing this up.&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 11:27:11 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Cannot-find-the-remote-plugin-programming-guide-for-7-0-anymore/m-p/2895749#M6016</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-02-28T11:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to clone ticket using /api/ui/vcenter/session/clone-ticket</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-clone-ticket-using-api-ui-vcenter-session-clone-ticket/m-p/2895736#M6015</link>
      <description>&lt;P&gt;Hi vedaniks&amp;nbsp;&lt;/P&gt;&lt;P&gt;The whole result returned from the getSessionInfo should be used as shown in the code snippet.&lt;/P&gt;&lt;P&gt;Logs should be available in the /storage/log/vmware/vsphere-ui/logs/vsphere_client_virgo.log.&lt;/P&gt;&lt;P&gt;Please locate the error log why 401 is thrown and post it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 10:15:58 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-clone-ticket-using-api-ui-vcenter-session-clone-ticket/m-p/2895736#M6015</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-02-28T10:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to deploy sample remote plugin for the vSphere Client (plugin does not appear in vSphere</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-deploy-sample-remote-plugin-for-the-vSphere-Client/m-p/2895732#M6014</link>
      <description>&lt;P&gt;Hi puneeth-sai&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The thumbprint must be in a colon separated format.&amp;nbsp;&lt;BR /&gt;Namely the thumbprint that you provided&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;555db10de0333e10ab1ef4866261f07f93fef69b&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;should look like this&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;55:5D:B1:0D:E0:33:3E:10:AB:1E:F4:86:62:61:F0:7F:93:FE:F6:9B&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 10:03:16 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/Unable-to-deploy-sample-remote-plugin-for-the-vSphere-Client/m-p/2895732#M6014</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2022-02-28T10:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: amldump for UEFI table</title>
      <link>https://communities.vmware.com/t5/vSphere-Management-SDK/amldump-for-UEFI-table/m-p/2881351#M14622</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This forum is for the vSphere Client SDK and UI plugins.&lt;/P&gt;&lt;P&gt;Please try the&amp;nbsp;&lt;A href="https://communities.vmware.com/t5/vSphere-Management-SDK/bd-p/4524" target="_self"&gt;vSphere-Management SDK forum&lt;/A&gt;&amp;nbsp;for this kind of questions.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 11:57:31 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Management-SDK/amldump-for-UEFI-table/m-p/2881351#M14622</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2021-12-03T11:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Automated scheduled power off/ on</title>
      <link>https://communities.vmware.com/t5/vSphere-Management-SDK/Automated-scheduled-power-off-on/m-p/2881350#M14620</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do you want to schedule VM power off and on in your plugin code ?&lt;BR /&gt;&lt;BR /&gt;Just a note that this forum is for the vSphere Client SDK and UI plugins.&lt;/P&gt;&lt;P&gt;Please try the&amp;nbsp;&lt;A href="https://communities.vmware.com/t5/vSphere-Management-SDK/bd-p/4524" target="_self"&gt;vSphere-Management SDK forum&lt;/A&gt;&amp;nbsp;for this kind of questions.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 11:54:12 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Management-SDK/Automated-scheduled-power-off-on/m-p/2881350#M14620</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2021-12-03T11:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: vSphere 7.0U3 UI regressions for custom objects</title>
      <link>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vSphere-7-0U3-UI-regressions-for-custom-objects/m-p/2878525#M5984</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;The fix did not get into the 7.0U3 release cycle.&lt;BR /&gt;I can say for sure that it will be included in the next non-patch release.&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience that this bug introduced,&lt;BR /&gt;Martin&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 09:32:29 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Client-SDK-Discussions/vSphere-7-0U3-UI-regressions-for-custom-objects/m-p/2878525#M5984</guid>
      <dc:creator>stoevm</dc:creator>
      <dc:date>2021-11-17T09:32:29Z</dc:date>
    </item>
  </channel>
</rss>

