Hi,<div><br></div><div>You may find these links useful:</div><div><br></div><div><a href="http://opennebula.org/documentation:rel3.6:manage_users#users">http://opennebula.org/documentation:rel3.6:manage_users#users</a></div>

<div><a href="http://opennebula.org/doc/3.6/oca/java/">http://opennebula.org/doc/3.6/oca/java/</a></div><div><a href="http://opennebula.org/doc/3.6/oca/java/org/opennebula/client/Client.html">http://opennebula.org/doc/3.6/oca/java/org/opennebula/client/Client.html</a></div>

<div><a href="http://opennebula.org/documentation:rel3.6:api">http://opennebula.org/documentation:rel3.6:api</a></div><div><a href="https://github.com/OpenNebula/one/blob/master/src/oca/java/src/org/opennebula/client/Client.java">https://github.com/OpenNebula/one/blob/master/src/oca/java/src/org/opennebula/client/Client.java</a></div>

<div><br></div><div><br></div><div>Regards<br clear="all">--<br>Carlos Martín, MSc<br>Project Engineer<br>OpenNebula - The Open-source Solution for Data Center Virtualization<div><span style="border-collapse:collapse;color:rgb(136,136,136);font-family:arial,sans-serif;font-size:13px"><a href="http://www.OpenNebula.org" target="_blank">www.OpenNebula.org</a> | <a href="mailto:cmartin@opennebula.org" target="_blank">cmartin@opennebula.org</a> | <a href="http://twitter.com/opennebula" target="_blank">@OpenNebula</a></span><span style="border-collapse:collapse;color:rgb(136,136,136);font-family:arial,sans-serif;font-size:13px"><a href="mailto:cmartin@opennebula.org" style="color:rgb(42,93,176)" target="_blank"></a></span></div>

<br>
<br><br><div class="gmail_quote">On Thu, Oct 11, 2012 at 9:25 AM, Bhupendra Kumar Teli <span dir="ltr"><<a href="mailto:bhupendra.bkt11@gmail.com" target="_blank">bhupendra.bkt11@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div>package javaapplication1;</div><div><br></div><div><br></div><div><br></div><div>/**</div><div> *</div><div> * @author ubuntu</div><div> */</div><div><br></div><div>import java.util.logging.Level;</div><div>import java.util.logging.Logger;</div>


<div>import org.opennebula.client.*;</div><div>import org.opennebula.client.vm.*;</div><div><br></div><div>        </div><div>public class JavaApplication1 {</div><div><br></div><div>// First of all, a Client object has to be created.</div>


<div>// Here the client will try to connect to OpenNebula using the default</div><div>// options: the auth. file will be assumed to be at $ONE_AUTH, and the</div><div>// endpoint will be set to the environment variable $ONE_XMLRPC.</div>


<div>static Client oneClient;</div><div> </div><div>public static void main(String args[])</div><div>{</div><div>try</div><div>{</div><div>    oneClient = new Client();</div><div>                    </div><div>    // This VM template is a valid one, but it will probably fail to run</div>


<div>    // if we try to deploy it; the path for the image is unlikely to</div><div>    // exist.</div><div>    String vmTemplate =</div><div>          "NAME     = vm_from_java    CPU = 0.1    MEMORY = 64\n"</div>


<div>        + "DISK     = [\n"</div><div>        + "\tsource   = \"/home/ubuntu/ubuntu-10.04.4-desktop-i386.iso\",\n"</div><div>        + "\ttarget   = \"hda\",\n"</div>

<div>
        + "\treadonly = \"no\" ]\n"</div><div>        + "FEATURES = [ acpi=\"no\" ]";</div><div> </div><div>    System.out.print("Trying to allocate the virtual machine... ");</div>


<div>    OneResponse rc = VirtualMachine.allocate(oneClient, vmTemplate);</div><div> </div><div>    if( rc.isError() )</div><div>    {</div><div>        System.out.println( "failed!");</div><div>        throw new Exception( rc.getErrorMessage() );</div>


<div>    }</div><div> </div><div>    // The response message is the new VM's ID</div><div>    int newVMID = Integer.parseInt(rc.getMessage());</div><div>    System.out.println("ok, ID " + newVMID + ".");</div>


<div> </div><div>    // We can create a representation for the new VM, using the returned</div><div>    // VM-ID</div><div>    VirtualMachine vm = new VirtualMachine(newVMID, oneClient);</div><div> </div><div>    // Let's hold the VM, so the scheduler won't try to deploy it</div>


<div>    System.out.print("Trying to hold the new VM... ");</div><div>    rc = vm.hold();</div><div> </div><div>    if(rc.isError())</div><div>    {</div><div>        System.out.println("failed!");</div>


<div>        throw new Exception( rc.getErrorMessage() );</div><div>    }</div><div> </div><div>    // And now we can request its information.</div><div>    rc = <a href="http://vm.info" target="_blank">vm.info</a>();</div>

<div> </div><div>
    if(rc.isError())</div><div>        throw new Exception( rc.getErrorMessage() );</div><div> </div><div>    System.out.println();</div><div>    System.out.println(</div><div>            "This is the information OpenNebula stores for the new VM:");</div>


<div>    System.out.println(rc.getMessage() + "\n");</div><div> </div><div>    // This VirtualMachine object has some helpers, so we can access its</div><div>    // attributes easily (remember to load the data first using the info</div>


<div>    // method).</div><div>    System.out.println("The new VM " +</div><div>            vm.getName() + " has status: " + vm.status());</div><div> </div><div>    // And we can also use xpath expressions</div>


<div>    System.out.println("The path of the disk is");</div><div>    System.out.println( "\t" + vm.xpath("template/disk/source") );</div><div> </div><div>    // We have also some useful helpers for the actions you can perform</div>


<div>    // on a virtual machine, like cancel or finalize:</div><div> </div><div>    rc = vm.finalizeVM();</div><div>    System.out.println("\nTrying to finalize (delete) the VM " +</div><div>                        vm.getId() + "...");</div>


<div> </div><div>}</div><div>catch (Exception e)</div><div>{</div><div>    System.out.println(e.getMessage());</div><div>}</div><div>}</div><div>}</div><div><br></div><div>after executing this in root but it is giving an error that "ONE_AUTH file not present..</div>


<div>plz tell me I am doing right or wrong because I just installed netbeans on that system and added org.opennebula.client.jar and running above apps.</div><div>how it will interact with opennebula???</div><span class="HOEnZb"><font color="#888888">-- <br>

----------------------------<br>
Regards,<br>Bhupendra Kumar Teli<br>M. Tech(IT)<br>11536007<br>IIT Roorkee<br><a href="tel:%2B91-8439869004" value="+918439869004" target="_blank">+91-8439869004</a><br>
</font></span><br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opennebula.org">Users@lists.opennebula.org</a><br>
<a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
<br></blockquote></div><br></div>