<div dir="ltr">Thanks alot.<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Mar 3, 2014 at 8:14 PM, Moti Asayag <span dir="ltr">&lt;<a href="mailto:masayag@redhat.com" target="_blank">masayag@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
----- Original Message -----<br>
&gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; To: &quot;Moti Asayag&quot; &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; Cc: &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; Sent: Monday, March 3, 2014 4:36:32 PM<br>
&gt; Subject: Re: [Users] Creating Logical Network issue - API<br>
&gt;<br>
&gt; Ok got it..<br>
&gt; I just observed that my setup network is not getting saved, after attaching<br>
&gt; my logical network to host nic.<br>
&gt;<br>
<br>
Let me refer you to yet another post [1]:<br>
<br>
You should add the following at the end of your setup-networks action:<br>
<br>
api.getHosts().get(&quot;your-host&quot;).commitnetconfig(new Action());<br>
<br>
[1] <a href="https://motiasayag.wordpress.com/2013/04/08/it-is-not-over-till-moti-sings/" target="_blank">https://motiasayag.wordpress.com/2013/04/08/it-is-not-over-till-moti-sings/</a><br>
<br>
<br>
&gt;<br>
&gt; On Mon, Mar 3, 2014 at 7:34 PM, Moti Asayag &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; ----- Original Message -----<br>
&gt; &gt; &gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; &gt; &gt; To: &quot;Moti Asayag&quot; &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; &gt; &gt; Cc: &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; &gt; &gt; Sent: Monday, March 3, 2014 3:46:14 PM<br>
&gt; &gt; &gt; Subject: Re: [Users] Creating Logical Network issue - API<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Thanks, I&#39;m able to create logical network &amp; attached the same to host.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Now I tried to change the network for a VM nic from rhevm to VLAN1189,<br>
&gt; &gt; but<br>
&gt; &gt; &gt; it is not working. any suggestion?<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; api.getVMs().get(vmName).getNics().get(&quot;nic1&quot;).setNetwork(api.getNetworks().get(&quot;VLAN1189&quot;));<br>
&gt; &gt; &gt;           api.getVMs().get(vmName).getNics().get(&quot;nic1&quot;).update();<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; This snippet is wrong: You attempt to modify a newly fetched<br>
&gt; &gt; vnic than the one that was just modified in the first line.<br>
&gt; &gt;<br>
&gt; &gt; I&#39;d try:<br>
&gt; &gt;  VMNIC vnic = api.getVMs().get(vmName).getNics().get(&quot;nic1&quot;);<br>
&gt; &gt;  vnic.setNetwork(api.getNetworks().get(&quot;VLAN1189&quot;));<br>
&gt; &gt;  vnic.update();<br>
&gt; &gt;<br>
&gt; &gt; If this doesn&#39;t work - keep reading :-)<br>
&gt; &gt;<br>
&gt; &gt; There has been a recent bug in this regards [1].<br>
&gt; &gt;<br>
&gt; &gt; You can by pass it by nullifying the vnic-profile value until getting the<br>
&gt; &gt; next stable version (or using the 3.4 rc build).<br>
&gt; &gt;<br>
&gt; &gt; You can read more about the vnic profile and see python examples here [2]<br>
&gt; &gt;<br>
&gt; &gt; [1] <a href="https://bugzilla.redhat.com/show_bug.cgi?id=1047887" target="_blank">https://bugzilla.redhat.com/show_bug.cgi?id=1047887</a><br>
&gt; &gt; Bug 1047887 - Update vnic_profile fails for VM vnic<br>
&gt; &gt;<br>
&gt; &gt; [2] <a href="https://motiasayag.wordpress.com/2014/02/02/vnic-profiles/" target="_blank">https://motiasayag.wordpress.com/2014/02/02/vnic-profiles/</a><br>
&gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Mon, Feb 24, 2014 at 5:23 PM, Moti Asayag &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; ----- Original Message -----<br>
&gt; &gt; &gt; &gt; &gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; To: &quot;Moti Asayag&quot; &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; Cc: &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; Sent: Monday, February 24, 2014 1:18:53 PM<br>
&gt; &gt; &gt; &gt; &gt; Subject: Re: [Users] Creating Logical Network issue - API<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; The example updates the existing Network (i.e. if the Logical<br>
&gt; &gt; Network is<br>
&gt; &gt; &gt; &gt; &gt; already mapped to eth1). But what i&#39;m looking for is how to map<br>
&gt; &gt; Logical<br>
&gt; &gt; &gt; &gt; &gt; Network &quot;ApiNetWork&quot; to &quot;eth1&quot;, please refer screenshot.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Please check the last example named &quot;AddNetworkToNic&quot; from<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; <a href="https://motiasayag.wordpress.com/2014/02/24/network-configuration-using-ovirt-engine-java-sdk/" target="_blank">https://motiasayag.wordpress.com/2014/02/24/network-configuration-using-ovirt-engine-java-sdk/</a><br>

&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; It should achieve what you&#39;re aiming for.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; On Mon, Feb 24, 2014 at 4:11 PM, Moti Asayag &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; ----- Original Message -----<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; To: &quot;Moti Asayag&quot; &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Cc: &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Sent: Monday, February 24, 2014 11:59:42 AM<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Subject: Re: [Users] Creating Logical Network issue - API<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; While setting Logical Network, it fails with below error:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; code  : 400<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; reason: Bad Request<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; detail: Previous network name is required.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; See an example in the following post:<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; <a href="https://motiasayag.wordpress.com/2014/02/24/network-configuration-using-ovirt-engine-java-sdk/" target="_blank">https://motiasayag.wordpress.com/2014/02/24/network-configuration-using-ovirt-engine-java-sdk/</a><br>

&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Code:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;           String nw_name=&quot;ApiNetWork&quot;;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;           org.ovirt.engine.sdk.decorators.Host hst =<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; api.getHosts().get(&quot;rhevhost&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; hst.getHostNics().get(&quot;eth1&quot;).setNetwork(api.getNetworks().get(nw_name));<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; //hst.getHostNics().get(&quot;eth1&quot;).setCheckConnectivity(true);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; //hst.getHostNics().get(&quot;eth1&quot;).setOverrideConfiguration(true);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;           hst.getHostNics().get(&quot;eth1&quot;).update();<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; On Mon, Feb 24, 2014 at 2:30 PM, Tejesh M &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; Can you tel me how do i assign Logical Network(s) to one of the<br>
&gt; &gt; &gt; &gt; &gt; &gt; Physical<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; Nic on the Host.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; On Fri, Feb 21, 2014 at 1:37 PM, Moti Asayag &lt;<br>
&gt; &gt; <a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; h<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; ----- Original Message -----<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; To: &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Sent: Thursday, February 20, 2014 11:48:56 AM<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Subject: [Users] Creating Logical Network issue - API<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Hi ,<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; I&#39;m trying to create Logical Network and assign it to<br>
&gt; &gt; cluster &amp;<br>
&gt; &gt; &gt; &gt; &gt; &gt; want to<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; bond<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; this to one of the Network Interface on Host. so that i can<br>
&gt; &gt; &gt; &gt; isolate<br>
&gt; &gt; &gt; &gt; &gt; &gt; my<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; VM<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; from other networks.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; The issue is even if i set Cluster while creating Logical<br>
&gt; &gt; &gt; &gt; Network,<br>
&gt; &gt; &gt; &gt; &gt; &gt; it<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; is not<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; setting the cluster. In Web Admin it is in unset state.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Also, let me know how do i bind this Logical network on Host<br>
&gt; &gt; &gt; &gt; &gt; &gt; Interface.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Java code:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Network nw1=new Network();<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; VLAN vlan = new VLAN();<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; vlan.setId(2000);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; nw1.setVlan(vlan);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; IP ip = new IP();<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; ip.setAddress(&quot;192.168.1.151&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; ip.setGateway(&quot;192.168.1.1&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; ip.setNetmask(&quot;255.255.255.0&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; Note that the stated IP above will not be used to set the<br>
&gt; &gt; address<br>
&gt; &gt; &gt; &gt; on<br>
&gt; &gt; &gt; &gt; &gt; &gt; the<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; host itself.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; In order to do so you should use either the &#39;setup networks&#39;<br>
&gt; &gt; api<br>
&gt; &gt; &gt; &gt; on<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; host&#39;s nics level.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; (Alternately, you can send POST request to<br>
&gt; &gt; /hosts/{host:id}/nics<br>
&gt; &gt; &gt; &gt; which<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; utilize the<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; former api (it is a bit simpler than using the setup networks<br>
&gt; &gt; &gt; &gt; api).<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; Should look like:<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;     Host host = api.getHosts().get(&quot;host_name&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;     Action action = new Action();<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;     action.setCheckConnectivity(true); //required for<br>
&gt; &gt; rollback in<br>
&gt; &gt; &gt; &gt; &gt; &gt; case of<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; configuration failure<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;     action.setHostNics(...); // should contain the target<br>
&gt; &gt; &gt; &gt; &gt; &gt; configuration<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;     host.getHostNics().setupnetworks(action);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; where the action should contain the entire desired network<br>
&gt; &gt; &gt; &gt; &gt; &gt; configuration.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; You can find various python-sdk example for setup networks on<br>
&gt; &gt; my<br>
&gt; &gt; &gt; &gt; blog<br>
&gt; &gt; &gt; &gt; &gt; &gt; [1]<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; I&#39;ll post few examples using the java sdk earlier next week.<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; [1] <a href="https://motiasayag.wordpress.com/" target="_blank">https://motiasayag.wordpress.com/</a><br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; nw1.setIp(ip);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; nw1.setName(&quot;apiNetwork&quot;);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; nw1.setDataCenter(api.getDataCenters().get(&quot;testDC&quot;));<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; nw1.setCluster(api.getClusters().get(&quot;testCluster&quot;));<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; org.ovirt.engine.sdk.decorators.Network nw2 =<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; api.getNetworks().add(nw1);<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Thanks &amp; Regards<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Tejesh<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; Users mailing list<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; <a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt; <a href="http://lists.ovirt.org/mailman/listinfo/users" target="_blank">http://lists.ovirt.org/mailman/listinfo/users</a><br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; Thanks &amp; Regards<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; Tejesh<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Thanks &amp; Regards<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt; Tejesh<br>
&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; Thanks &amp; Regards<br>
&gt; &gt; &gt; &gt; &gt; Tejesh<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; --<br>
&gt; &gt; &gt; Thanks &amp; Regards<br>
&gt; &gt; &gt; Tejesh<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt;<br>
<span class="HOEnZb"><font color="#888888">&gt;<br>
&gt; --<br>
&gt; Thanks &amp; Regards<br>
&gt; Tejesh<br>
&gt;<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div>Thanks &amp; Regards</div>
<div>Tejesh</div>
</div>