Use vCloud SDK for Java to integrate with vCD 5.6

Hello Folks,
         Newbie here.
         I have a situation where a home grown app, that uses vCloud SDK for Java to invoke a vCloud Director 5.1 installation. We use this for powering on/ off a few VMs.
         Our installation is being upgraded from vCloud Director 5.1 to 5.6.
         My question is, are we expected to upgrade/ carry out any code changes to our current implementation to integrate with the newer runtime version (5.6)?
         Many thanks in advance.
Regards
Mohan

Somewhat going from memory here.
As long as the REST API Versions URL states that it is compatible with 5.1, then you should be fine to make the calls as v5.1.
Here is the section of the documentation for that:
Using the vCloud API with vCloud Director
The I think the SDKs are just wrappers in a manner of speaking.  They all eventually translate code (java/python/etc) into a REST API system that is sent into vCloud Director via the API.  For the most part, I think it'll work.
That's not talking about "support", just that it should work with some exceptions.  I don't know if there is an official stance on cross compatibility like this.

Similar Messages

  • Can I Design a Forum with using web dynpro for java?

    Hi All:
        Can i design a forum with using web dynpro for java?
        I want to design an application like a simple forum which maybe has many replies.So if i use
    the UI technology "web dynpro for java", i will to create UI elements dynamically.How can i control this
    dynamical UI elements to keep layout ?

    Hi,
    yes you can do that....
    for exaple if you observe SDN...
    you can imagine like....
    A big Transparent Container(TC)....
    Inside that number of other TCs(depending upon the question nd its replies...)....
    In side each TC, again around 9 UIElements....
    one for menioning what is the question/reply?
    other for your description of question/reply...
    other for your name,
    displaing your fourm point... etc...
    So it will be
    for(loop till your (Question+No of replies))
    Create Transparent Container....
    Add Childs to the Container...
    Decide your layout....
    In case if you want to know how to create UIElements dynamically....
    http://help.sap.com/saphelp_nw04/helpdata/en/4f/07cf3dd28b5610e10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdjava/dynamic%2bui%2bgeneration
    Regards,
    Srinivas.
    Regards,
    Srinivas.

  • Porting from JDK 1.2.2 to MS SDK for Java 4.0 - Help!!!

    Hi All!
    My company is developing big project using WLS 4.5.1. + JDK 1.2.2 + Java
    Plug-In 1.2.2 on clients. A lot of applied code depend on Java 2 APIs,
    javax/swing is actively used as well. But the customer decide to use
    Microsoft VM both on server and client sides - they have support contract
    (for other products) with MS and MS may decide to cancel support if our
    customer will use Sun JDK and Sun JVM.
    So, I have to try to port all project to MS SDK for Java and the question
    is: Do I have a chance not to rewrite 100% of my code?
    Somewhere I read: ":I've downloaded the new MS Virtual Machine
    (msjavx86.exe) that should be compatible to Java2:" - is it really so? Does
    anybody knows if MS will support Java 2 platform specifications? As I found
    at MS, latest MS JDK 4.0 (on which WLS 5.1 can run) meets specification of
    Java 1.1 and after installing it I found that I must rewrite about 90% of my
    code. Can someone clarify the situation with MS JDK?
    Thanks in advance,
    Andrey Bogush
    PS: Any information, links, documents, overviews on how to persuade the
    customer to use Sun JDK and JVM against MS one are VERY and STRONGLY welcome

    Andrey Bogush wrote:
    >
    Hi All!
    My company is developing big project using WLS 4.5.1. + JDK 1.2.2 + Java
    Plug-In 1.2.2 on clients. A lot of applied code depend on Java 2 APIs,
    javax/swing is actively used as well. But the customer decide to use
    Microsoft VM both on server and client sides - they have support contract
    (for other products) with MS and MS may decide to cancel support if our
    customer will use Sun JDK and Sun JVM.MS can cancel their support if they use Sun's JDK! That's an
    "interesting" clause in your support contract.
    >
    So, I have to try to port all project to MS SDK for Java and the question
    is: Do I have a chance not to rewrite 100% of my code?
    Somewhere I read: ":I've downloaded the new MS Virtual Machine
    (msjavx86.exe) that should be compatible to Java2:" - is it really so?I don't believe any versions of Microsoft's JVMs support Java2.
    Personally, I think it would be a big waste of time to port working
    Java2 code to JDK 1.1 just to run MS's JVM.
    -- Rob
    Does
    anybody knows if MS will support Java 2 platform specifications? As I found
    at MS, latest MS JDK 4.0 (on which WLS 5.1 can run) meets specification of
    Java 1.1 and after installing it I found that I must rewrite about 90% of my
    code. Can someone clarify the situation with MS JDK?
    Thanks in advance,
    Andrey Bogush
    PS: Any information, links, documents, overviews on how to persuade the
    customer to use Sun JDK and JVM against MS one are VERY and STRONGLY welcome

  • Azure SDK for Java on Mac/Linux

    I need to develop a part (communication with Service Bus) of a solution in Java (normally I use C# for development) on Mac/Linux. Can I just use the microsoft-windowsazure-api-0.4.6.jar file of the Azure SDK for Mac/Linux in my project, because I don't
    use Maven?
    Thanks.
    Guy

    When trying out some code using the Windows Azure SDK for Java (on a Mac) obviously just adding the jar to my project and adding it to my build path isn't just enough. I get error messages such as:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
    at com.microsoft.windowsazure.services.core.Configuration.<clinit>(Configuration.java:48)
    at com.microsoft.windowsazure.services.serviceBus.ServiceBusConfiguration.configureWithWrapAuthentication(ServiceBusConfiguration.java:88)
    at xx.yyy.zzzz.aaaaa.ServiceBusClient.<init>(ServiceBusClient.java:20)
    at xx.yyy.zzzz.aaaaa.Main.main(Main.java:7)
    Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:372)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:360)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 4 more
    When clicking e.g. on Configuration.java:48 I get: Source not found.
    The JAR file microsoft-windowsazure-api-0.4.6.jar has no source attachment.
    What am I missing. Thanks for your help.

  • What's the difference between Netscape SDK for Java & JNDI?

    I know I can use either JNDI or Netscape SDK to access iDS. So whats their differences basically?
    Why would I need JNDI/Netscape SDK if I can just use either of them to access iDS?
    Thanks!

    Netscape SDK for JAVA developed only for iplanet Directory Server but JNDI for any directory server.
    JNDI has classes provided by Sun that will help your application interact with an LDAP server.JNDI applications work similarly to JDBC applications - write applications once and be free to use "drivers" from different vendors. Sun provides the "driver" that will help interact with the LDAP server. Sun also provides "drivers" for other naming services (like CORBA, Netscape).
    The Java Naming and Directory Interface (JNDI) allows Java applications to use a single set of methods to access multiple naming and directory services such as LDAP and NIS.
    JNDI is a Java API that provides a common way for programmers to access a variety of naming and directory services. The API consists of several packages:
    javax.naming for naming operations (access entries)
    javax.naming.directory for directory operations (access attributes)
    javax.naming.event for requesting event notification
    javax.naming.ldap for LDAP-specific features.
    JNDI operates through a layer of software called a Service Provider. The Service Provider implements the JNDI operations in terms of a particular underlying protocol.
    JNDI's Service Provider Interface (SPI) allows you to select Service Providers at runtime. In many cases you can use the same JNDI methods regardless of whether the Service Provider is talking to an LDAP server or using another protocol such as NIS. In order to access all of the functionality of the LDAP protocol, however, you will have to use methods outside of this abstraction.

  • Unable to Print Purchase order automatically using SAP GUI for JAVA

    Hi SAP gurus,
    Some of the PC's in our company use windows and some LINUX. Therefore we use two types of SAP GUI. One for windows and the other one JAVA. PO approval was set to print automatically. In a windows setting, there are no problems with this setup. But in SAP GUI for JAVA, no print outs are produced and no error messages are displayed. I am using SAP GUI for JAVA version 7.10 ver 6. and I use Front end printing for linux access method G.
    please help,
    gungertz

    hi gungertz,
    You can use U type access method for printing SAP document using linux desktop.
    Please refer to my blog posting here (http://sapbasis.wordpress.com/2007/08/23/print-sap-documents-using-linux/)
    ardhian
    http://ardhian.kioslinux.com
    http://sapbasis.wordpress.com

  • Commenting a Line in ABAP Editor when using SAP GUI for java

    Hi,
    In ABAP editor we can highlight the line which are to be comment and use cmd+< sign to comment those lines. What will be the command to be used to achieve the same functionality when using SAP GUI for JAVA on an iMac.

    Hello Kedar,
    please check with SAP GUI for Java 7.20 rev 5 before submitting a bug report.
    Also please verify, that cmd-< and cmd-> are not assigned as "Keyboard Shortcuts" in the "Keyboard" control panel of "System Preferences".
    Bug reports can be submitted with the [SAP Message Wizard|http://service.sap.com/message], for SAP GUI for Java please use component BC-FES-JAV.
    Best regards
    Rolf-Martin

  • Unable to use RAS SDK for server-side printing for XI 3.1

    Hi all,
    I am using RAS SDK for server-side printing.  Here are my codes:
    ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
    IEnterpriseSession enterpriseSession = sessionMgr.logon("Administrator", "", "cdi5boe", "secEnterprise");
    IInfoStore iStore = (IInfoStore) enterpriseSession.getService("InfoStore");
    //out.println("Current User is = " + enterpriseSession.getUserInfo().getUserName());
    //out.println ("<br>");
    IInfoObjects infoObjects = iStore.query("SELECT * FROM CI_INFOOBJECTS WHERE SI_Kind='CrystalReport' AND SI_NAME = 'Sales Print'");
    IInfoObject infoObject = (IInfoObject)infoObjects.get(0);    
    IReportAppFactory reportAppFactory = (IReportAppFactory) enterpriseSession.getService("RASReportFactory");
    ReportClientDocument rcd = new ReportClientDocument();
    rcd = reportAppFactory.openDocument(infoObject,0, java.util.Locale.US);
    //Create print options to use when printing.
    PrintReportOptions printOptions = new PrintReportOptions();
    printOptions.setPrinterName("
    cdi5boe
    HPLaserJ");
    printOptions.setJobTitle("Test Printer Job");
    printOptions.setPrinterDuplex(PrinterDuplex.horizontal);
    printOptions.setPaperSource(PaperSource.auto);
    printOptions.setPaperSize(PaperSize.paperLetter);
    printOptions.setNumberOfCopies(1);
    printOptions.setCollated(false);
    PrintReportOptions.PageRange printPageRange = new PrintReportOptions.PageRange(1,1);
    printOptions.addPrinterPageRange(printPageRange);
    //Print report.
    rcd.getPrintOutputController().printReport(printOptions);
    When I run the report, I got the following errors:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: com.businessobjects.crystalreports.printer.bean.ReportPrinter---- Error code:-2147215357 Error code name:internal
    I consult the Diamond Technical Community and I found the issue related to printer name:
    https://boc.sdn.sap.com/node/498
    However, I did check the printer name, it is accessible via Windows Explorer.
    Anyone knows how to resolve this?
    Regards,
    Derek

    It doesn't appear to be listed as a dependency in the developer docs, but would you try putting the ReportPrinter.jar in your RAS app?
    Sincerely,
    Ted Ueda

  • Can I use Webservices SDK for scheduling Reports?

    Hi All,
    I have a requirement to use Webservices SDK. The process flow is explained as below:-
    PeopleSoft calls Java component which schedules the BO Reports by calling BO program Objects. I was using BOE SDK before. But SAP advised to move to Webservices SDK as to remove CORBA connection issues.
    Can I use Webservices SDK for scheduling Reports?
    Please update.
    Thanks,
    Anu

    Its possible to schedule reports from web services SDK. Its stated in the Web services SDK Doc.

  • Using Acrobat SDK for Unix development environment

    Hi,
    Can it be possible for me to use Acrobat SDK for Unix development environment as a server application??If yes, what are the things that should be installed on the client side to make sure that the client should be able see the produced PDF files?? Kindly help me in this regard..
    Deepak

    lAnubisl wrote:
    My customer's solution has several issues generating PDF files and we are looking at the Acrobat SDK as at the instance of the final truth.
    I use Interop.Acrobat.dll as a .NET project reference to open and resave PDF documents. I'd like to do all things I mentioned above.
    After years and years, I have concluded that if you do serious PDF development, you need a set of libraries. For instance, if you are doing typesetting type of work ("vertical center", "horizontal center", "margin", etc., etc) , there is an excellent library from a guy in Germany (land of Johannes Gutenberg and printing presses)...
    ... which turned out to be useless in my next project which dealt with AcroForms.
    I know exactly what you mean by "the final truth", sometimes I wish Adobe had some sort of official validating tool (like XML does).
    Per your comments, I would recommend you to consider this library. It is available in all languages and its output is the same quality as Adobe's or at least in the same league:
           http://www.pdftron.com/pdfnet/index.html
    If you want to comment further, we must go to a different forum, since we are not supposed to discuss any non-Adobe products here.

  • I purchased a new Windows 8 PC. I have used and continue to use Outlook 2010 for my calendar. With my old Windows 7 PC and Outlook 2010, my calendar sinked properly with my Iphone 5. Now with the new Windows 8 PC, it does not. Help!

    I purchased a new Windows 8 PC and I use Outlook 2010 for my calendar. With my old Windows 7 PC and Outlook 2010, my calendar would sync with my Iphone 5, but with the new Windows 8 PC and Outlook 2010, it does not, and I can't figure out how to snyc them. The emails from Outlook 2010 sync, but the calendar does not. Help! Thanks. 

    Easy solution for restoring lost calendar informaiton, thank goodness.  On your iPhone, go to settings, then to iCloud.  If your Calendar selection is turned off,  turn it on.  Your info should restore.  If your Calendar selection is turned on, then turn it off.  Choose to save calendars when asked.  After it shuts the Calendar off, turn it back on.  Your info should be restored.
    Thank you to Apple support for walking me through this.  Shame on you Apple for not just telling people about this easy fix rather than making us go through all of this pain and worry.
    - JT

  • Can I use Publications SDK for merging PDFs?

    Hi,
    Can i use Publications SDK for merging PDFs.? Logically i think it should be possible.
    Scenario:-  PDFs will be the report output format for webI, Crystal etc. I will query the repository and get the PDF instances from various BO Reports. Can i use this PDFs as input for Publications SDK? Is there any known limitations?
    Please help.
    Ted, if you are there please update.
    Thanks,
    Anu

    Thanks Ted. Thats really informative.
    Can you please provide a brief description on 'There's an out-of-the-box post-processing extension that merges PDF from Crystal.'
    I'm already using Itext. but it is a costly affair as PDF file size is an issue (200 single page PDF results in 8 MB). And seems like there is no otherway around in Itext to compress PDF.
    About using WebI and Crystal together, I will export PDF from these and give those PDF as input for Publications.Then it should work. Right?
    Edited by: Anu Cherian on Feb 2, 2011 11:35 AM

  • SonyEricsson SDK for Java ME - version 2.5.0.2 - Where?

    Hi. I'm looking for a SonyEricsson SDK for Java ME, and I need its version 2.5.0.2 (for p1i on-device debug). But only 2.5.0.3 can be downloaded from developer.sonymobile.com. I've looked for it on google, but I haven't found. Does somebody have this version? If you have it, or you know a download link, post me, please. Thanks!

    I've had a look but that version doesn't seem to be available for download anymore, either on Sony's developer world site, or anywhere else. I suggest you contact Sony and see if they can help you:
    http://www.sonymobile.com/global-en/support/contact-us/

  • Can I use a USB for 2nd generation shuffle with a 3rd generation shuffle

    Can I use a USB for 2nd generation shuffle with a 3rd generation shuffle?
    Seems to be a good fit, but my computer doesn't seem to recognise it.

    GreenApple5315 wrote:
    Can you use a 3rd gen charger with a 2nd gen Shuffle?
    By "3rd gen charger" are you referring to the USB cable with the
    4 ring audio connector on the other end?
    If so, the answer is again NO...

  • Using BO SDK outside JAVA EE

    Hello
    I am investigating the possibility to connect to CMS on Enterprise BO-server, extracting diverse monitoring/status data from a "Desktop JAVA Application".
    What i wish to accomplish is getting system metrics, servers and services status etc from a BO Enterprise XI31 environment, and use this data for analysis locally. I am still working on this, but so far it looks like the only possible way to "talk to BO" is by EE, meaning i have to create and deploy a web-application. I mean, the WEB-world is great, but some of us just love to work with local applications (full control etc...).
    Has anyone achieved this and does anyone know if it's possible to compile a custom JAVA_DESKTOP (cmdline) application, importing BO-libs and using it's features outside the EE-environment ?
    Best Regards Gerhard Andreassen.

    You can find the required Jars in [Business Objects Enterprise Developer Guide|http://help.sap.com/businessobject/product_guides/boexir31/en/boesdk_java_dg_12_en.zip]
    Navigate through Setting up the development environment > Web application setup > JAR files needed for deployment of Business Objects Software
    It lists BO required Jars based on what SDK you use as well as the 3rd party jars that are required by BO Jars.
    Jars are found on BOBJ server installation in:
    <bobjehome>\common\4.0\java\lib and <bobjehome>\common\4.0\java\lib\external on Windows
    for Unix etc.
    bobj home/bobje/java/lib and bobj home/bobje/java/lib/external

Maybe you are looking for

  • ERROR IN IMPORT PHASE ( CREATE NODE GROUPS) CAN ANY TELL ME SOLUTION

    HI SAP EXPERTS, Iam doing Export & Import for Converting my SAP system which was previously a "NON-UNICODE" system and iam about to convert it to "UNICODE" system. i have followed the steps specified in the guide for converting a non-unicode system t

  • How to create Hi Def DVD?

    I'm using a Mac ProBook. I recently went on vacation and have video from a hi DEF camcorder as well as a GoPro. The video looks great on the high DEF TV direct from the camcorder or GoPro. I download the video to the Mac Pro book and edit it on I Mov

  • Automation error element not found in vb6 2147319765 after upgrading the os

    Hi we had updated our OS to windows 7 from XP.Previously we had an application in XP which is built on Vb 6 .The application throws an error message like Automation error --element not found with error code 2147319765 .The application shows the same

  • Budget bottom up in CJ30

    Hi experts, I would like to ask if there is a possibility to revaluate values in cj30 in bottom up sequence. There is no bottom up check in budget profile maintenance screen (in planning profile such a check exists). Is the only possibility to use ex

  • Has anyone else been lied to

    Recently joined Verizon and have been nothing but disappointed. Dopped calls,lies, and promises not kept.