<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>VMware Communities : All Content - Orchestrator APIs</title>
    <link>http://communities.vmware.com/community/developer/forums/orchestrator</link>
    <description>All Content in Orchestrator APIs</description>
    <language>en</language>
    <pubDate>Thu, 05 Nov 2009 20:24:45 GMT</pubDate>
    <generator>Clearspace 1.10.12 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-11-05T20:24:45Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Plugin Object Attributes - how are they accessed</title>
      <link>http://communities.vmware.com/message/1410206</link>
      <description>&lt;br /&gt;
Further experimentation makes me think the following.&lt;br /&gt;
&lt;p /&gt;
For attributes, first it looks for get/set methods, then if none are found it directly accesses the class members.&lt;br /&gt;
&lt;p /&gt;
However, in looking for setter methods in particular, it does not make a completely correct decision which to use based on the type of the parameter.  In my case I had multiple array type attributes on a plugin object class.  I also had a setter with a List&amp;lt;T&amp;gt; signature and an overload with a T[] signature.  Some of my property sets from the JavaScript worked and some failed with a script Array to Java List conversion failure.  To work around this reliably I had to eliminate the List&amp;lt;T&amp;gt; setter methods so that only the attribute setter with the correct signature could be found.  I suspect this is an issue in the Rhino code where it just takes the first setter returned by the reflective inspection of my class rather than looking to see if one with a compatible parameter type is available.&lt;br /&gt;
&lt;p /&gt;
So, I have been able to resolve my issue, but there is some indeterminism in the selection of overloaded setters with Rhino that should be investigated and resolved. &lt;br /&gt;
&lt;p /&gt;
I'm marking this thread as answered but if any of this is incorrect, it would be good for someone on the VMO team to provide that information.</description>
      <pubDate>Thu, 05 Nov 2009 20:24:45 GMT</pubDate>
      <author>BlueDevilDan</author>
      <guid>http://communities.vmware.com/message/1410206</guid>
      <dc:date>2009-11-05T20:24:45Z</dc:date>
      <clearspace:dateToText>2 weeks, 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Orchestrator API documentation</title>
      <link>http://communities.vmware.com/message/1405704</link>
      <description>&lt;br /&gt;
For the Orhestrator web services APIs, please refer to the section Developing Web Services Client in  vCenter Orchestrator Developer's Guide.&lt;br /&gt;
&lt;p /&gt;
&lt;a class="jive-link-external" href="http://www.vmware.com/pdf/vco_40_developers_guide.pdf"&gt;http://www.vmware.com/pdf/vco_40_developers_guide.pdf&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
The Orchestrator web services APIs enables you to develop client applications which can access the workflows and execute them thorugh a network.&lt;br /&gt;
&lt;p /&gt;
For complete documentation on workflows and scripting, refer to the vCenter Developr's Guide.&lt;br /&gt;
&lt;p /&gt;
Hope this helps.</description>
      <pubDate>Mon, 02 Nov 2009 04:11:27 GMT</pubDate>
      <author>AngelaS</author>
      <guid>http://communities.vmware.com/message/1405704</guid>
      <dc:date>2009-11-02T04:11:27Z</dc:date>
      <clearspace:dateToText>3 weeks, 11 hours ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Passing JavaScript Array to a Plugin</title>
      <link>http://communities.vmware.com/message/1404592</link>
      <description>&lt;br /&gt;
Did some looking into the Rhino libraries that are being used within Orchestrator to support this.  Looks like the only thing supported is Java arrays to JavaScript arrays translation.  It appears that Java List objects are translated to JavaScript arrays when handed back to the scripting environment, but the reverse translation is not supported out of Rhino (would be a great enhancement to have there).  &lt;br /&gt;
&lt;p /&gt;
So it looks like I need to modify the implementation of my plugin to have Java array members that I expose as JavaScript object attributes.</description>
      <pubDate>Fri, 30 Oct 2009 19:25:59 GMT</pubDate>
      <author>BlueDevilDan</author>
      <guid>http://communities.vmware.com/message/1404592</guid>
      <dc:date>2009-10-30T19:25:59Z</dc:date>
      <clearspace:dateToText>3 weeks, 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Plans for generic SOAP support within workflows?</title>
      <link>http://communities.vmware.com/message/1404114</link>
      <description>&lt;br /&gt;
I tend to think of the operations defined in a WSDL as just another type of building block from which to create workflows/action.  Yes, some additional intelligence is required, but no more so than is already required to piece together actions or cli calls, or whatever other building blocks are required to construct a workflow. &lt;br /&gt;
&lt;p /&gt;
 I guess there is a slightly grey area of responsibility between the plugin developer and the VMO admin who is creating workflows.  I can certainly see a plugin developer using SOAP internally within a plugin to build higher level constructs to expose to VMO.  But on the otherhand, I can also see a WSDL that already defines high level operations that can be exposed directly in VMO without the need of a "higher" level interface.  Does that make sense?&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
I can imagine a plugin that just exposes a SOAP interface would need the following&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;An interface through which soap operations can be called&lt;/li&gt;
&lt;li&gt;Classes for the schema elements/types used by the operations&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Obviously, with a Java soap toolkit like Axis or CXF, you can generate get these for Java automatically. &lt;br /&gt;
&lt;p /&gt;
But, to expose them in VMO, you have to somehow provide a vso.xml that defines the types.  I can imagine that a plugin developer would try to generate this vso.xml file automatically (from either the WSDL, or the toolkit generated bindings).  It seems like this logic would be common to any plugin trying to expose a WSDL directly, and could therefore be implemented in a common fashion by VMO itself.</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">soap</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">wsdl</category>
      <pubDate>Fri, 30 Oct 2009 13:01:44 GMT</pubDate>
      <author>philsttr</author>
      <guid>http://communities.vmware.com/message/1404114</guid>
      <dc:date>2009-10-30T13:01:44Z</dc:date>
      <clearspace:dateToText>3 weeks, 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>Plugin Objects being available as Types in the Orchestrator UI</title>
      <link>http://communities.vmware.com/message/1396803</link>
      <description>&lt;br /&gt;
Hi Dan,&lt;br /&gt;
&lt;p /&gt;
 Thanks for identifying this gap in the docs. I'll add a description of Finders and FinderResults in an uncoming release of the docs.&lt;br /&gt;
&lt;p /&gt;
 Thanks again,&lt;br /&gt;
&lt;p /&gt;
Stuart &lt;br /&gt;
&lt;p /&gt;
vCenter Orchestrator Tech Pubs</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">plugin</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">type</category>
      <pubDate>Fri, 23 Oct 2009 10:26:24 GMT</pubDate>
      <author>stuartclements</author>
      <guid>http://communities.vmware.com/message/1396803</guid>
      <dc:date>2009-10-23T10:26:24Z</dc:date>
      <clearspace:dateToText>1 month, 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>Plugins and Java Methods that throw exceptions</title>
      <link>http://communities.vmware.com/message/1391220</link>
      <description>Thanks for the reply.  I was wanting to confirm what I was seeing since I didn't see any definitive information on this in the developer guide.&lt;br /&gt;
&lt;br /&gt;
I only had one main facade class that I was exposing that threw method exceptions and those exceptions contained a couple custom values.  What I did was created a decorator class to wrap it and had that decorator catch the exception and put those custom exception fields into attributes of the decorator class and exposed them to the Java Script layer.  So my script basically needs to check for the error rather than catch the exception.  That will work for my case.</description>
      <pubDate>Fri, 16 Oct 2009 13:17:58 GMT</pubDate>
      <author>BlueDevilDan</author>
      <guid>http://communities.vmware.com/message/1391220</guid>
      <dc:date>2009-10-16T13:17:58Z</dc:date>
      <clearspace:dateToText>1 month, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>Relationship of plugins and classloaders</title>
      <link>http://communities.vmware.com/message/1388873</link>
      <description>If you want to send me an email, it should be great.&lt;br /&gt;
&lt;br /&gt;
For example, being able to access the VI plugin from any other plugins, I think...</description>
      <pubDate>Tue, 13 Oct 2009 22:02:54 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1388873</guid>
      <dc:date>2009-10-13T22:02:54Z</dc:date>
      <clearspace:dateToText>1 month, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>Missing item in Plugin Schema question</title>
      <link>http://communities.vmware.com/message/1387763</link>
      <description>In the &amp;lt;object&amp;gt;, use a &amp;lt;attributes&amp;gt; collection and the iterate each &amp;lt;attribute&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sample:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-xml"&gt;
&lt;span class="jive-xml-tag"&gt;&amp;lt;scripting-objects&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;object script-name=&lt;span class="jive-xml-quote"&gt;&amp;quot;MyScriptingObject&amp;quot;&lt;/span&gt; ... &amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;attributes&amp;gt;&lt;/span&gt;
            &lt;span class="jive-xml-tag"&gt;&amp;lt;attribute script-name=&lt;span class="jive-xml-quote"&gt;&amp;quot;MyValue&amp;quot;&lt;/span&gt; .....&amp;gt;&lt;/span&gt;
                 &amp;lt;![CDATA[http://Custom field values.]|http://Custom field values.]]&amp;gt;
            &lt;span class="jive-xml-tag"&gt;&amp;lt;/attribute&amp;gt;&lt;/span&gt;
             ...
        &lt;span class="jive-xml-tag"&gt;&amp;lt;/attributes&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;/object&amp;gt;&lt;/span&gt;
&lt;span class="jive-xml-tag"&gt;&amp;lt;/scripting-objects&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">plugin</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">schema</category>
      <pubDate>Mon, 12 Oct 2009 20:08:11 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1387763</guid>
      <dc:date>2009-10-12T20:08:11Z</dc:date>
      <clearspace:dateToText>1 month, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>vCenter Orchestrator API - Technology Exchange Developer Day Session</title>
      <link>http://communities.vmware.com/docs/DOC-10882</link>
      <description>&lt;a class="jive-link-external" href="http://vmweb.vmware.com/vmworld/2009/techexchange/DE01.html"&gt;http://vmweb.vmware.com/vmworld/2009/techexchange/DE01.html&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">vcenter_orchestrator_api</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">technology_exchange_session</category>
      <pubDate>Thu, 08 Oct 2009 21:13:39 GMT</pubDate>
      <author>heyitspablo</author>
      <guid>http://communities.vmware.com/docs/DOC-10882</guid>
      <dc:date>2009-10-08T21:13:39Z</dc:date>
      <clearspace:dateToText>1 month, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Better documentation for plugin XML structure</title>
      <link>http://communities.vmware.com/message/1377545</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
The result type is one of your scripting objects type or base type. It's here "only" for documentation (when the scripting documentation is auto generated for each plug-in)</description>
      <pubDate>Wed, 30 Sep 2009 07:06:17 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1377545</guid>
      <dc:date>2009-09-30T07:06:17Z</dc:date>
      <clearspace:dateToText>1 month, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Can I drive UI automation thru Orchestrator</title>
      <link>http://communities.vmware.com/message/1359883</link>
      <description>&lt;br /&gt;
Hi Lu&lt;br /&gt;
&lt;p /&gt;
The way our software works (data secure software) is it locks up the hard drive and requires you to enter user name and password to unlock it. From that point onwards the OS (i.e Windows) boots up (like regular boot) and then asks for its own username &amp;#38; password. So you see we have to enter two different sets of usernames and passwords, one to unlock the Hard Drive (i.e during real-mode) and then one for the OS.#&lt;br /&gt;
&lt;p /&gt;
I've looked at WASP homepage and it seems I need to learn Powershell, which I'm going thru right now.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
Thanks,&lt;br /&gt;
&lt;p /&gt;
Mateen</description>
      <pubDate>Thu, 10 Sep 2009 08:44:46 GMT</pubDate>
      <author>mateenhussain</author>
      <guid>http://communities.vmware.com/message/1359883</guid>
      <dc:date>2009-09-10T08:44:46Z</dc:date>
      <clearspace:dateToText>2 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
    </item>
    <item>
      <title>Orchestrator license question</title>
      <link>http://communities.vmware.com/message/1358931</link>
      <description>&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;p /&gt;
I mean that I have a license Foundation, but what do I do to install a licenza Vmware Standar Edition? &lt;br /&gt;
&lt;br /&gt;
Exists in the market to upgrade from version to version Standard Foundation to VMware Server?&lt;br /&gt;
&lt;p /&gt;
Many thanks in advance &lt;br /&gt;
&lt;p /&gt;
Regards&lt;br /&gt;
&lt;p /&gt;
Gianluca&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;</description>
      <pubDate>Wed, 09 Sep 2009 13:25:38 GMT</pubDate>
      <author>gchi</author>
      <guid>http://communities.vmware.com/message/1358931</guid>
      <dc:date>2009-09-09T13:25:38Z</dc:date>
      <clearspace:dateToText>2 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>how to disconnect a SCSI device by a virtual machine before running VMotion</title>
      <link>http://communities.vmware.com/message/1352423</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I don't have a server here, but I'll try to help you:&lt;br /&gt;
&lt;br /&gt;
if your Virtual Machine is in a variable named vm:&lt;br /&gt;
&lt;br /&gt;
vm.config.hardware.device contains all the devices. You have to iterate all the devices to get the one you want. Access their backing, and use the vm.reconfig to set the new backing. Have a look at some workflows in the library, you will find samples...</description>
      <pubDate>Tue, 01 Sep 2009 21:52:06 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1352423</guid>
      <dc:date>2009-09-01T21:52:06Z</dc:date>
      <clearspace:dateToText>2 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Orchestrator is it a right solution ?</title>
      <link>http://communities.vmware.com/message/1350853</link>
      <description>It should help as you could use it to orchestrate the operations you'll need to move the VM. If I'm right, you cannot move the VM because it's attached to a "raw" device. You have to disconnect or remove the device, move the VM and reconnect / add the device on the new host. This could be done easily with orchestrator if you have the workflow that do this operations.</description>
      <pubDate>Mon, 31 Aug 2009 14:13:37 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1350853</guid>
      <dc:date>2009-08-31T14:13:37Z</dc:date>
      <clearspace:dateToText>2 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Technology Exchange Developer Day - vCenter Orchestrator</title>
      <link>http://communities.vmware.com/message/1340984</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
We are happy to announce about our hands-on demo at Technology Exchange Developer Day 2009, vCenter Orchestrator&lt;br /&gt;
&lt;br /&gt;
Presenter: Stefan Hochuli Paychere&lt;br /&gt;
&lt;br /&gt;
Demo ID: DS-09&lt;br /&gt;
&lt;br /&gt;
Time: 1:30 - 2:15 PM&lt;br /&gt;
&lt;br /&gt;
Abstract:&lt;br /&gt;
This demo will walk you through the modification of a vCO plug-in. This will touch on modifying the base Java code, adapting the plug-in API implementation accordingly and create workflows to use the modification. As a result, you will gain a better understanding of all aspects of developing with the Orchestrator.</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">technology_exchange</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">developer_day</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">vcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">orchestrator_api</category>
      <pubDate>Wed, 19 Aug 2009 01:36:25 GMT</pubDate>
      <author>navadavuluri</author>
      <guid>http://communities.vmware.com/message/1340984</guid>
      <dc:date>2009-08-19T01:36:25Z</dc:date>
      <clearspace:dateToText>3 months, 3 days ago</clearspace:dateToText>
    </item>
    <item>
      <title>Try to do some remote operations of VCenter without VCenter</title>
      <link>http://communities.vmware.com/message/1340061</link>
      <description>All solutions are pretty the same: vCO (solutions provided by Sia) use the VI API, but allow you to easily show your "code" (workflows) to end users using the web views.&lt;br /&gt;
&lt;br /&gt;
About the "remote installation of OS", I think you'll need (in both case) some answer file (for Windows, it's named unattend.txt or .inf)</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">vcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">remote</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">web</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">application</category>
      <pubDate>Tue, 18 Aug 2009 07:21:57 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1340061</guid>
      <dc:date>2009-08-18T07:21:57Z</dc:date>
      <clearspace:dateToText>3 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>'persistence.xml' file placement to enable direct DB access from a Plug-in</title>
      <link>http://communities.vmware.com/message/1334452</link>
      <description>Seems to be an error from the JPA implementation in Java 1.5</description>
      <pubDate>Tue, 11 Aug 2009 14:23:17 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1334452</guid>
      <dc:date>2009-08-11T14:23:17Z</dc:date>
      <clearspace:dateToText>3 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>objects with dynamic icons in inventory view</title>
      <link>http://communities.vmware.com/message/1334396</link>
      <description>For now, the Solar System sample plug-in do not demonstrate the IPluginNotificationHandler uses.</description>
      <pubDate>Tue, 11 Aug 2009 13:35:54 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1334396</guid>
      <dc:date>2009-08-11T13:35:54Z</dc:date>
      <clearspace:dateToText>3 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>10</clearspace:replyCount>
    </item>
    <item>
      <title>Orchestrator's purpose and sample code?</title>
      <link>http://communities.vmware.com/message/1321593</link>
      <description>Thank you!&lt;br /&gt;
&lt;br /&gt;
This is exactly what I was looking for &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/happy.gif" alt=":)" /&gt;</description>
      <pubDate>Mon, 27 Jul 2009 13:59:00 GMT</pubDate>
      <author>DougBaer</author>
      <guid>http://communities.vmware.com/message/1321593</guid>
      <dc:date>2009-07-27T13:59:00Z</dc:date>
      <clearspace:dateToText>3 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>8</clearspace:replyCount>
    </item>
    <item>
      <title>How to access VC Plugin object from Workflow script or other Java plugin</title>
      <link>http://communities.vmware.com/message/1321362</link>
      <description>&lt;br /&gt;
Moved to Developer Community &amp;gt; Vmware Orchestrator APIs, since the forum is more appropriate for plugin API discussion.&lt;br /&gt;
&lt;p /&gt;
 Thanks,&lt;br /&gt;
&lt;p /&gt;
Sia</description>
      <pubDate>Mon, 27 Jul 2009 08:45:08 GMT</pubDate>
      <author>siayiu</author>
      <guid>http://communities.vmware.com/message/1321362</guid>
      <dc:date>2009-07-27T08:45:08Z</dc:date>
      <clearspace:dateToText>3 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>PowerShell snapin/module ?</title>
      <link>http://communities.vmware.com/message/1321338</link>
      <description>I'm in fact interested in both.&lt;br /&gt;
&lt;br /&gt;
PS from vCO:&lt;br /&gt;
For example using PowerCLI functions in the custom vCO actions, instead of the provided Java functions.&lt;br /&gt;
Since we use PowerCLI for our vSphere automation it avoids us learning and using a 2nd language.&lt;br /&gt;
And we could reuse part of our existing PowerCLI scripts.&lt;br /&gt;
&lt;br /&gt;
vCO from PS:&lt;br /&gt;
Creating, starting and monitoring Tasks from a PS script.&lt;br /&gt;
Our vSphere automation is not done from the vSphere client but from a centralised tool (SCOM in our case).&lt;br /&gt;
Being able to call Task management from this PS-based environment would avoid "console sprawl" for our admins and operators.</description>
      <pubDate>Mon, 27 Jul 2009 08:40:23 GMT</pubDate>
      <author>LucD</author>
      <guid>http://communities.vmware.com/message/1321338</guid>
      <dc:date>2009-07-27T08:40:23Z</dc:date>
      <clearspace:dateToText>3 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
    </item>
    <item>
      <title>can´t select operators like eqal, not equal and so on</title>
      <link>http://communities.vmware.com/message/1321289</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
This is a known bug (and will be fixed in the next update). The work around is to use the custom decision box.</description>
      <pubDate>Mon, 27 Jul 2009 07:17:18 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1321289</guid>
      <dc:date>2009-07-27T07:17:18Z</dc:date>
      <clearspace:dateToText>3 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Tech Exchange Developer Day Session - Integrating with the vCenter Orchestrator API - DE-01</title>
      <link>http://communities.vmware.com/message/1313479</link>
      <description>Folks,&lt;br /&gt;
&lt;br /&gt;
Newly added abstract for the upcoming Technology Exchange - Developer Day. Hope to see you there. &lt;br /&gt;
&lt;br /&gt;
&lt;a class="jive-link-community" href="http://communities.vmware.com/community/private/bitbucket/developer/techexchange"&gt;http://communities.vmware.com/community/developer/techexchange&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Session ID&lt;/b&gt;: DE-01&lt;br /&gt;
*Session Title(:Integrating with vCenter Orchestrator&lt;br /&gt;
&lt;br /&gt;
In this session we will discuss the key integration points of the VMware vCenter Orchestrator (vCO). We will discuss the web service API which allows developers to find and run workflows. The plugin API: which allows developers to create vCO plugins which present an external API to the Orchestrator, providing Inventory, Choosers, Scripting extensions and Event generation. This session is ideal for developers looking to integrate with the VMware vCenter Orchestrator APIs. We will also have hands on demos and opportunities to meet the teams from PM and R&amp;#38;D. &lt;br /&gt;
&lt;b&gt;Level&lt;/b&gt; Advanced&lt;br /&gt;
&lt;br /&gt;
 &lt;img src="http://communities.vmware.com/servlet/JiveServlet/downloadImage/2-1313479-6330/stefan.jpg" alt="stefan.jpg" class="jive-image"  /&gt; &lt;br /&gt;
&lt;br /&gt;
Stefan Hochuli Paych&amp;egrave;re runs the R&amp;#38;D unit responsible for VMware&amp;rsquo;s Orchestration platform. Stefan has more than fourteen years experience in computer hardware and software development areas going ranging from real time embedded systems to multi-tiered enterprise business systems.</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">vmworld</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">technology_exchange</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">developer</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">api</category>
      <pubDate>Thu, 16 Jul 2009 23:30:08 GMT</pubDate>
      <author>heyitspablo</author>
      <guid>http://communities.vmware.com/message/1313479</guid>
      <dc:date>2009-07-16T23:30:08Z</dc:date>
      <clearspace:dateToText>4 months, 1 week ago</clearspace:dateToText>
    </item>
    <item>
      <title>Proper debugout method for Plug-in apps</title>
      <link>http://communities.vmware.com/message/1312672</link>
      <description>You can edit the log4j.xml file (in app-server/server/vmo/conf). You can add a Category (look at the end of the file) for your (Java) package name.</description>
      <pubDate>Thu, 16 Jul 2009 12:08:02 GMT</pubDate>
      <author>Cédric</author>
      <guid>http://communities.vmware.com/message/1312672</guid>
      <dc:date>2009-07-16T12:08:02Z</dc:date>
      <clearspace:dateToText>4 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>Recieving error with a VMO Plugin that has a JMS stack built-in</title>
      <link>http://communities.vmware.com/message/1312667</link>
      <description>&lt;br /&gt;
Moving thread to the forum that is more appropriate. Please post plugin API &amp;#38; web service API related topics in the Orchetrator API forum.&lt;br /&gt;
&lt;p /&gt;
Thanks,&lt;br /&gt;
&lt;p /&gt;
Sia</description>
      <pubDate>Thu, 16 Jul 2009 12:03:08 GMT</pubDate>
      <author>siayiu</author>
      <guid>http://communities.vmware.com/message/1312667</guid>
      <dc:date>2009-07-16T12:03:08Z</dc:date>
      <clearspace:dateToText>4 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
    </item>
    <item>
      <title>Welcome Orchestrator API Developers !</title>
      <link>http://communities.vmware.com/message/1301374</link>
      <description>Folks - just wanted to welcome our vCenter Orchestrator API developers out there. Please join us, ask questions, share ideas, help us build a robust community. &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Pablo&lt;br /&gt;
ps. We will have an Orchestrator API Session at our VMware Developer Day  - August 31st, 2009 @ VMworld</description>
      <category domain="http://communities.vmware.com/tags?communityID=3081">orchestrator_api</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">sdk</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">vmware</category>
      <category domain="http://communities.vmware.com/tags?communityID=3081">automation</category>
      <pubDate>Thu, 02 Jul 2009 19:27:02 GMT</pubDate>
      <author>heyitspablo</author>
      <guid>http://communities.vmware.com/message/1301374</guid>
      <dc:date>2009-07-02T19:27:02Z</dc:date>
      <clearspace:dateToText>4 months, 3 weeks ago</clearspace:dateToText>
    </item>
  </channel>
</rss>

