<div dir="ltr"><div>Finally I was able to rename the disks, the problem was about handling that put request and my inability to check libcurl documentation (I was treating the XML I was sending as a string instead of a file). </div><div><br></div>Sorry because I needed this script to be working as fast as I could, so I didn&#39;t try to reproduce the 500 error, but I wouldn&#39;t be suprised if it was because of a totally wrong URL.<div><br></div><div>Sorry again :(</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jun 28, 2017 at 1:56 PM, Juan Hernández <span dir="ltr">&lt;<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@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"><span class="">On 06/28/2017 01:34 PM, Bruno Rodriguez wrote:<br>
&gt; Shit, I got it. Sorry<br>
&gt;<br>
&gt; The problem is that I was accessing to the v4 disk-attachment id and I<br>
&gt; was getting everything quite messed up. I was doing all of this while<br>
&gt; creating a machine, so I was trying to rename the disk at the same time<br>
&gt; it&#39;s being created.<br>
&gt;<br>
&gt; I&#39;ll delete all the &quot;if ($ovirt_major == 3)&quot; I have in my code. If I<br>
&gt; have any problem I&#39;ll let you know.<br>
&gt;<br>
&gt; Thank you<br>
&gt;<br>
<br>
</span>If what you want to do is set the name of the disk for a VM that you are<br>
creating then you can just set it when adding the disk:<br>
<br>
  POST /ovirt-engine/api/vms/123/<wbr>diskattachments<br>
<br>
  &lt;disk_attachment&gt;<br>
    &lt;disk&gt;<br>
      &lt;name&gt;yourfavoritename&lt;/name&gt;<br>
      ...<br>
    &lt;/disk&gt;<br>
    ...<br>
  &lt;/disk_attachment&gt;<br>
<br>
That way you don&#39;t need to modify it later.<br>
<br>
Also, in general, try to wait till the objects are completely created<br>
before trying to use or update them. For disks in particular, it is good<br>
idea to repeatedly retrieve the disk till the &#39;status&#39; is &#39;OK&#39;:<br>
<br>
<br>
<a href="https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/add_vm_disk.py#L73-L80" rel="noreferrer" target="_blank">https://github.com/oVirt/<wbr>ovirt-engine-sdk/blob/master/<wbr>sdk/examples/add_vm_disk.py#<wbr>L73-L80</a><br>
<br>
(This is an example from the Python SDK, but you get the idea. There are<br>
SDKs for Ruby and Java as well.)<br>
<br>
Finally, if you get a 500 error then there is most probably a bug. The<br>
API should never return that, even if you try to do something that<br>
doesn&#39;t make sense it should respond with a reasonable error message. If<br>
you keep getting that 500 error please share the details.<br>
<span class="im HOEnZb"><br>
&gt; On Wed, Jun 28, 2017 at 1:03 PM, Juan Hernández &lt;<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a><br>
</span><span class="im HOEnZb">&gt; &lt;mailto:<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     On 06/28/2017 12:55 PM, Bruno Rodriguez wrote:<br>
&gt;     &gt; I&#39;m sorry about bothering you again, but after trying it some times I&#39;m<br>
&gt;     &gt; still getting a &quot;500 Internal Server Error&quot;. I&#39;m using a REST client<br>
&gt;     &gt; instead of CURL and I tried adding a &quot;Version: 3&quot; to headers and used<br>
&gt;     &gt; the URL with the v3 as well.<br>
&gt;     &gt;<br>
&gt;     &gt; I&#39;m issuing a PUT of<br>
&gt;     &gt;<br>
&gt;     &gt; &lt;disk&gt;&lt;alias&gt;Alias_for_disk&lt;/<wbr>alias&gt;&lt;/disk&gt;<br>
&gt;     &gt;<br>
&gt;     &gt; To the URL<br>
&gt;     &gt;<br>
&gt;     &gt; <a href="https://myserver/ovirt-engine/api/v3/vms/62498f51-0203-48b9-83c8-4c6f3bdfe05c/disks/583ed952-46a8-4bc5-8a27-8660e4a24ea2" rel="noreferrer" target="_blank">https://myserver/ovirt-engine/<wbr>api/v3/vms/62498f51-0203-48b9-<wbr>83c8-4c6f3bdfe05c/disks/<wbr>583ed952-46a8-4bc5-8a27-<wbr>8660e4a24ea2</a><br>
&gt;     &lt;<a href="https://myserver/ovirt-engine/api/v3/vms/62498f51-0203-48b9-83c8-4c6f3bdfe05c/disks/583ed952-46a8-4bc5-8a27-8660e4a24ea2" rel="noreferrer" target="_blank">https://myserver/ovirt-<wbr>engine/api/v3/vms/62498f51-<wbr>0203-48b9-83c8-4c6f3bdfe05c/<wbr>disks/583ed952-46a8-4bc5-8a27-<wbr>8660e4a24ea2</a>&gt;<br>
&gt;     &gt;<br>
&gt;     &gt; I mean, I can live without it but we are using oVirt as a &quot;static<br>
&gt;     &gt; virtualization&quot; environment and is quite useful for us being able to<br>
&gt;     &gt; recognize easily each disk by its server name. In case I have to wait<br>
&gt;     &gt; until the 4.2 API version to automatize this I&#39;ll do :(<br>
&gt;     &gt;<br>
&gt;<br>
&gt;     That should work. Can you please check if you get any useful message in<br>
&gt;     /var/log/ovirt-engine/server.<wbr>log or /var/log/ovirt-engine/engine.<wbr>log?<br>
&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; On Wed, Jun 28, 2017 at 11:18 AM, Bruno Rodriguez &lt;<a href="mailto:bruno@pic.es">bruno@pic.es</a> &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt;<br>
</span><span class="im HOEnZb">&gt;     &gt; &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a> &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
</span><span class="im HOEnZb">&gt;     &gt;     Thank you very much !!!<br>
&gt;     &gt;<br>
&gt;     &gt;     I expected I was missing something like that. Thanks again!<br>
&gt;     &gt;<br>
&gt;     &gt;     On Wed, Jun 28, 2017 at 11:12 AM, Juan Hernández<br>
&gt;     &gt;     &lt;<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a> &lt;mailto:<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a>&gt;<br>
</span><div class="HOEnZb"><div class="h5">&gt;     &lt;mailto:<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a> &lt;mailto:<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
&gt;     &gt;         On 06/28/2017 10:43 AM, Bruno Rodriguez wrote:<br>
&gt;     &gt;         &gt; Thank you, Daniel<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; I tried a PUT with the same XML body, I got a &quot;405<br>
&gt;     Method Not Allowed&quot;.<br>
&gt;     &gt;         &gt; It&#39;s quite strange, there must be someting I&#39;m missing<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;         The operation to update a disk will be introduced in version 4<br>
&gt;     &gt;         of the<br>
&gt;     &gt;         API with version 4.2 of the engine. Meanwhile the way to<br>
&gt;     update<br>
&gt;     &gt;         the disk<br>
&gt;     &gt;         is to use version 3 of the API and the disks<br>
&gt;     sub-collection of the<br>
&gt;     &gt;         virtual machine. That means that if you have a VM with id 123<br>
&gt;     &gt;         and a disk<br>
&gt;     &gt;         with id 456 you can send a request like this:<br>
&gt;     &gt;<br>
&gt;     &gt;           PUT /ovirt-engine/api/v3/vms/123/<wbr>disks/456<br>
&gt;     &gt;<br>
&gt;     &gt;         With a request body like this:<br>
&gt;     &gt;<br>
&gt;     &gt;           &lt;disk&gt;<br>
&gt;     &gt;             &lt;alias&gt;newalias&lt;/alias&gt;<br>
&gt;     &gt;           &lt;/disk&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;         Note that you can use the above &quot;v3&quot; prefix in the URL or<br>
&gt;     else the<br>
&gt;     &gt;         &quot;Version: 3&quot; header. A complete example using curl:<br>
&gt;     &gt;<br>
&gt;     &gt;         ---8&lt;---<br>
&gt;     &gt;         #!/bin/bash -ex<br>
&gt;     &gt;<br>
&gt;     &gt;         url=&quot;https://.../ovirt-engine/<wbr>api&quot;<br>
&gt;     &gt;         user=&quot;admin@internal&quot;<br>
&gt;     &gt;         password=&quot;...&quot;<br>
&gt;     &gt;         vm_id=&quot;...&quot;<br>
&gt;     &gt;         disk_id=&quot;...&quot;<br>
&gt;     &gt;<br>
&gt;     &gt;         curl \<br>
&gt;     &gt;         --verbose \<br>
&gt;     &gt;         --cacert &quot;ca.pem&quot; \<br>
&gt;     &gt;         --header &quot;Version: 3&quot; \<br>
&gt;     &gt;         --header &quot;Content-Type: application/xml&quot; \<br>
&gt;     &gt;         --user &quot;${user}:${password}&quot; \<br>
&gt;     &gt;         --request PUT \<br>
&gt;     &gt;         --data &quot;<br>
&gt;     &gt;         &lt;disk&gt;<br>
&gt;     &gt;           &lt;alias&gt;newalias&lt;/alias&gt;<br>
&gt;     &gt;         &lt;/disk&gt;<br>
&gt;     &gt;         &quot; \<br>
&gt;     &gt;         &quot;${url}/vms/${vm_id}/disks/${<wbr>disk_id}&quot;<br>
&gt;     &gt;         ---&gt;8---<br>
&gt;     &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; On Wed, Jun 28, 2017 at 10:07 AM, Daniel Erez<br>
&gt;     &lt;<a href="mailto:derez@redhat.com">derez@redhat.com</a> &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a>&gt; &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a><br>
&gt;     &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a>&gt;&gt;<br>
&gt;     &gt;         &gt; &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a> &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a>&gt; &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a><br>
&gt;     &lt;mailto:<a href="mailto:derez@redhat.com">derez@redhat.com</a>&gt;&gt;&gt;&gt; wrote:<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;     Hi,<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;     Updating is done using the PUT method.<br>
&gt;     &gt;         &gt;     Please try that with the same XML body.<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;     Thanks,<br>
&gt;     &gt;         &gt;     Daniel<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;     On Wed, Jun 28, 2017 at 10:26 AM Bruno Rodriguez &lt;<a href="mailto:bruno@pic.es">bruno@pic.es</a> &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt; &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a><br>
&gt;     &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt;&gt;<br>
&gt;     &gt;         &gt;     &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a> &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt;<br>
&gt;     &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a> &lt;mailto:<a href="mailto:bruno@pic.es">bruno@pic.es</a>&gt;&gt;&gt;&gt; wrote:<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         Hello everyone,<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         I&#39;m having some problems about renaming some<br>
&gt;     disks (setting a<br>
&gt;     &gt;         &gt;         different alias, name or description) for VMs<br>
&gt;     disks created from<br>
&gt;     &gt;         &gt;         a template. When I get this URL<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;      <a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a><br>
&gt;     &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a>&gt;<br>
&gt;     &gt;         &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a><br>
&gt;     &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a>&gt;&gt;<br>
&gt;     &gt;         &gt;<br>
&gt;      &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a><br>
&gt;     &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a>&gt;<br>
&gt;     &gt;         &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a><br>
&gt;     &lt;<a href="https://ovirt-manager/ovirt-engine/api/disks/0123" rel="noreferrer" target="_blank">https://ovirt-manager/ovirt-<wbr>engine/api/disks/0123</a>&gt;&gt;&gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         I can see are the methods sparsify, export, move<br>
&gt;     and copy. I<br>
&gt;     &gt;         &gt;         tried to POST the following XML to the previous<br>
&gt;     URL with no<br>
&gt;     &gt;         &gt;         result (as expected, it won&#39;t work)<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         &lt;disk&gt;<br>
&gt;     &gt;         &gt;           &lt;alias&gt;my_machine_Disk1&lt;/<wbr>alias&gt;<br>
&gt;     &gt;         &gt;         &lt;/disk&gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         I&#39;m quite sure I&#39;m thinking about it in a wrong<br>
&gt;     way (as usual).<br>
&gt;     &gt;         &gt;         Any help would be welcome...<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         Thank you in advance<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         --<br>
&gt;     &gt;         &gt;         Bruno Rodríguez Rodríguez<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         *Port d&#39;Informació Científica (PIC)*<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;         ______________________________<wbr>_________________<br>
&gt;     &gt;         &gt;         Users mailing list<br>
&gt;     &gt;         &gt;         <a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;<br>
&gt;     &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;&gt;<br>
&gt;     &gt;         &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;<br>
&gt;     &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;&gt;&gt;<br>
&gt;     &gt;         &gt;         <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;<br>
&gt;     &gt;         &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;&gt;<br>
&gt;     &gt;         &gt;         &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;<br>
&gt;     &gt;         &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;&gt;&gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; --<br>
&gt;     &gt;         &gt; Bruno Rodríguez Rodríguez<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; *Port d&#39;Informació Científica (PIC)*<br>
&gt;     &gt;         &gt; Campus UAB - Edificio D,<br>
&gt;     &gt;         &gt; C / Albareda, s / n<br>
&gt;     &gt;         &gt; 08193-Bellaterra (Barcelona), España<br>
&gt;     &gt;         &gt; Telf. <a href="tel:%2B34%2093%20170%2027%2030" value="+34931702730">+34 93 170 27 30</a> &lt;tel:%2B34%2093%20170%2027%<wbr>2030&gt;<br>
&gt;     &lt;tel:%2B34%2093%20170%2027%<wbr>2030&gt;<br>
&gt;     &gt;         &gt; GPS  coordenadas:  41.500850 2.110628<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; &quot;Si algo me ha enseñado el tetris, es que los errores se<br>
&gt;     acumulan y los<br>
&gt;     &gt;         &gt; triunfos desaparecen&quot;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;         &gt; ______________________________<wbr>_________________<br>
&gt;     &gt;         &gt; Users mailing list<br>
&gt;     &gt;         &gt; <a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;<br>
&gt;     &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a> &lt;mailto:<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;&gt;<br>
&gt;     &gt;         &gt; <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;<br>
&gt;     &gt;         &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;     &lt;<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a>&gt;&gt;<br>
&gt;     &gt;         &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;     --<br>
&gt;     &gt;     Bruno Rodríguez Rodríguez<br>
&gt;     &gt;<br>
&gt;     &gt;     *Port d&#39;Informació Científica (PIC)*<br>
&gt;     &gt;     Campus UAB - Edificio D,<br>
&gt;     &gt;     C / Albareda, s / n<br>
&gt;     &gt;     08193-Bellaterra (Barcelona), España<br>
&gt;     &gt;     Telf. <a href="tel:%2B34%2093%20170%2027%2030" value="+34931702730">+34 93 170 27 30</a> &lt;tel:%2B34%2093%20170%2027%<wbr>2030&gt;<br>
&gt;     &gt;     GPS  coordenadas:  41.500850 2.110628<br>
&gt;     &gt;<br>
&gt;     &gt;     &quot;Si algo me ha enseñado el tetris, es que los errores se<br>
&gt;     acumulan y<br>
&gt;     &gt;     los triunfos desaparecen&quot;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; --<br>
&gt;     &gt; Bruno Rodríguez Rodríguez<br>
&gt;     &gt;<br>
&gt;     &gt; *Port d&#39;Informació Científica (PIC)*<br>
&gt;     &gt; Campus UAB - Edificio D,<br>
&gt;     &gt; C / Albareda, s / n<br>
&gt;     &gt; 08193-Bellaterra (Barcelona), España<br>
&gt;     &gt; Telf. +34 93 170 27 30 &lt;tel:%2B34%2093%20170%2027%<wbr>2030&gt;<br>
&gt;     &gt; GPS  coordenadas:  41.500850 2.110628<br>
&gt;     &gt;<br>
&gt;     &gt; &quot;Si algo me ha enseñado el tetris, es que los errores se acumulan<br>
&gt;     y los<br>
&gt;     &gt; triunfos desaparecen&quot;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
</div></div><div class="HOEnZb"><div class="h5">&gt; --<br>
&gt; Bruno Rodríguez Rodríguez<br>
&gt;<br>
&gt; *Port d&#39;Informació Científica (PIC)*<br>
&gt; Campus UAB - Edificio D,<br>
&gt; C / Albareda, s / n<br>
&gt; 08193-Bellaterra (Barcelona), España<br>
&gt; Telf. <a href="tel:%2B34%2093%20170%2027%2030" value="+34931702730">+34 93 170 27 30</a><br>
&gt; GPS  coordenadas:  41.500850 2.110628<br>
&gt;<br>
&gt; &quot;Si algo me ha enseñado el tetris, es que los errores se acumulan y los<br>
&gt; triunfos desaparecen&quot;<br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div style="text-align:left;font-family:Arial,Tahoma,Helvetica,FreeSans,sans-serif;line-height:20px;background-color:rgb(255,255,255)"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;line-height:normal">Bruno Rodríguez Rodríguez</span></div><div style="color:rgb(80,0,80);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br><div dir="ltr" style="color:rgb(34,34,34);font-size:12.8px"><font color="#444444"><b>Port d&#39;Informació Científica (PIC)</b></font>             <br>Campus UAB - Edificio D,</div><div dir="ltr" style="color:rgb(34,34,34);font-size:12.8px">C / <span>Albareda</span>, s / n <br>08193-Bellaterra (Barcelona), España</div><div style="color:rgb(34,34,34);font-size:12.8px"><a value="+34935813322" style="color:rgb(17,85,204);font-size:13px">Telf. +34 93 170 27 30</a><br></div><div dir="ltr" style="color:rgb(34,34,34);font-size:12.8px"><font color="#0000ff">GPS </font> coordenadas:  <span style="font-size:12.8px">41.500850 2.110628</span></div></div><div><a value="+34935813322" style="color:rgb(17,85,204);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></a></div><div><a value="+34935813322" style="color:rgb(17,85,204);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><span style="color:rgb(0,0,0);font-family:Arial,Tahoma,Helvetica,FreeSans,sans-serif;font-size:small;line-height:20px">&quot;Si algo me ha enseñado el tetris, es que los errores se acumulan y los triunfos desaparecen&quot;</span></a></div></div></div></div></div></div></div>
</div>