<div dir="ltr"><div>Hi Alessio Fabiani,</div><div><br></div><div>Thank you very much for your reply. Sorry, I missed your question in here. Accordingly to [1] SITEURL should be configured as:</div><div><br></div><div><pre><span style="font-family:arial,helvetica,sans-serif"><i><span class="gmail-n">SITEURL</span> <span class="gmail-o">=</span> </i><span class="gmail-s1"><i>'<a href="http://localhost">http://localhost</a>'</i> <br><br>which is the same as <br><br><span class="gmail-pl-c1">SITEURL</span> <span class="gmail-pl-k">=</span> os.getenv(<span class="gmail-pl-s"><span class="gmail-pl-pds">'</span>SITEURL<span class="gmail-pl-pds">'</span></span>, <span class="gmail-pl-s"><span class="gmail-pl-pds">"</span><a href="http://localhost/">http://localhost/</a><span class="gmail-pl-pds">"</span></span>) # if I am not wrong.<br><br></span></span></pre>Now, I am comparing GeoNode@2.8.0 Production (<b>GP</b>) and GeoNode@2.8.0 DevMode (<b>GD</b>) which has the thumbnails working a lot better. In <b>GP WSGI_APPLICATION</b> is set as the following:</div><div><br></div><div><b>local_settings.py</b> (according to [1])</div><div><br></div><div><pre><i><span style="font-family:arial,helvetica,sans-serif"><span class="gmail-n">WSGI_APPLICATION</span> <span class="gmail-o">=</span> <span class="gmail-s2">"my_geonode.wsgi.application"</span></span></i></pre></div><div><b>settings.py</b> <br></div><div><br></div><div>PROJECT_NAME = 'my_geonode'<br></div><div><br></div><div><i>WSGI_APPLICATION = "{}.wsgi.application".format (PROJECT_NAME)</i></div><div><i><br></i></div><div>printing the variable WSGI_APPLICATION on python terminal, the response is >my_geonode.wsgi.application<<br></div><div><i></i></div><div><i><br></i></div><div>In the other hand <b>GD WSGI_APPLICATION</b> is set as the following:</div><div><br></div><div><div><br></div><div><b>local_settings.py</b> (according to [1])</div></div><div><br></div><div><i>Not available.</i><br></div><div><br><div><b>settings.py</b> <br></div><div><br></div><div>PROJECT_NAME = 'my_geonode'<br></div><div><br></div><div><i>WSGI_APPLICATION = "{}.wsgi.application".format (PROJECT_NAME) <br></i></div><div><i><br></i></div><div><i>which is equal to <div><pre><i><span style="font-family:arial,helvetica,sans-serif"><span class="gmail-n">WSGI_APPLICATION</span> <span class="gmail-o">=</span> <span class="gmail-s2">"my_geonode.wsgi.application"  # If I am not wrong</span></span></i></pre></div><br></i></div><div>I appreciated your time.</div><div><br></div><div>Julierme<br></div><div><i></i></div><br></div><div><br></div><div>[1] <a href="http://docs.geonode.org/en/latest/tutorials/install_and_admin/geonode_install/setup_configure_httpd.html">http://docs.geonode.org/en/latest/tutorials/install_and_admin/geonode_install/setup_configure_httpd.html</a><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 12, 2018 at 12:20 PM, Alessio Fabiani <span dir="ltr"><<a href="mailto:alessio.fabiani@geo-solutions.it" target="_blank">alessio.fabiani@geo-solutions.it</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Have you correctly configured the SITEURL?<div><br></div><div><a href="https://github.com/GeoNode/geonode/blob/2.8.0/geonode/settings.py#L632" target="_blank">https://github.com/GeoNode/<wbr>geonode/blob/2.8.0/geonode/<wbr>settings.py#L632</a><br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div><div class="h5"><div dir="ltr">Il giorno ven 8 giu 2018 alle ore 22:26 Julierme Pinheiro <<a href="mailto:juliermeopensourcedeveloper@gmail.com" target="_blank">juliermeopensourcedeveloper@<wbr>gmail.com</a>> ha scritto:<br></div></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div>Dear Toni Schonbuchner and GeoNode developers,</div><div><br></div><div>First of all, my apologies to bring this topic back to discussion. I had already started with Toni, as shown in the message bellow. <br></div><div><br></div><div>I am digging into GeoNode scripts architecture trying to find an issue 
related to the creation of thumbnails. Let me introduce to you what I 
have done so far.<br></div><div><br></div><div><br></div><div>I have <a href="mailto:GeoNode@2.8.0." target="_blank">GeoNode@2.8.0.</a> installed in a virtualenv according to <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/index.html" target="_blank">http://docs.geonode.org/en/<wbr>master/tutorials/install_and_<wbr>admin/geonode_install/index.<wbr>html</a>. The thumbnails created by loading data from GeoNode interface do not work at all.</div><div><br></div><div> They are displayed if and only if I upload the layers from GeoServer interface and in a next step, run python manage.py updatelayers. It is very interesting what happens here: after running updatelayers, if I go to GeoNode interface, I see the thumbnail perfectly fine, but doing a right click over it and copy image location, the response is an OWS url as I am showing bellow. However If a make a request to the database, get_thumbnail_url, the response is a <a href="http://localhost:8000/" target="_blank">http://localhost:8000/</a>. Why port 8000? Sorry to use this expression, this port 8000 is a nightmare, and I am digging deep trying to find its source. <br></div><div><br></div><div>If I remove port 8000, the thumbnails work like a charm in port 80. <br></div><div><br></div><div>After following all Toni's recommendations [1] [2] and [3] (please, see the message right in the bottom of this e-mail), I could not find port 8000 source. It is in somewhere, and I will keep looking for its source in GeoNode scripts. <br></div><div><br></div><div>A brilliant idea came out. Let's compare GeoNode@2.8.0 stable installed via apt-get with GeoNode@2.8.0 installed from source in a python virtualenv. I am going through GeoServer data path,  settings.py and local_settings.py, [1], helpers.py [2], and signals.py[3]. I am not sure that is a brilliant idea to find port 8000, my nightmare, but I found another issue in respect to GeoNode apt-get. This issue tells me that port 8000 is not the only one, there is another problem related to thumbnails that occurs either in GeoNode@2.8.0 installed from source  and GeoNode@2.8.0 installed via apt-get when updating thumbnails in GeoNode interface and I am showing it bellow:</div><div><br></div><div></div><div></div><div><br></div><div><b>GeoNode installed from source in a virtualenv</b><br></div><div><br></div><div><div><font size="4"><span style="color:rgb(32,18,77)"><span style="background-color:rgb(255,255,255)"><b>Thumbnail created by loading data from GeoNode Interface</b></span></span></font></div><div><br></div><div><b>Does not work at all</b><br></div><div><br></div><div>$ sudo geonode shell<span style="background-color:rgb(255,255,255)"><span></span></span><br></div><div><br></div><div>>>> from geonode.layers.models import Layer<br>>>> layer = Layer.objects.all()<br>>>> for tn in layer:<br>...     print tn.get_thumbnail_url()</div>...</div><div></div><div><a href="http://localhost:8000/uploaded/thumbs/layer-d3b7e06c-6b4a-11e8-a4cc-0800277e2fd3-thumb.png" target="_blank">http://localhost:8000/<wbr>uploaded/thumbs/layer-<wbr>d3b7e06c-6b4a-11e8-a4cc-<wbr>0800277e2fd3-thumb.png</a></div><div><br></div><div><span style="color:rgb(32,18,77)"><b>NOTE:</b></span> The nightmare is here: port 8000. Why? I have set geoserver_location and geoserver_public_ location to port 8080. And there is proxy reverse in geonode.conf to port 80. <br></div><div><br></div><div><br></div><div><div><font size="4"><span style="color:rgb(32,18,77)"><b>Thumbnail created by loading data from GeoServer Interface</b></span></font></div><div><br></div><div><b>Does not work at all </b><br></div><div><br></div><div>>>> from geonode.layers.models import Layer<br>>>> layer = Layer.objects.all()<br>>>> for tn in layer:<br>...     print tn.get_thumbnail_url()<br>... <br><a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost:8000/<wbr>uploaded/thumbs/layer-<wbr>cfe8a292-80d4-4c59-bff5-<wbr>2c2245f15caf-thumb.png</a></div><div><br></div><div><span style="color:rgb(32,18,77)"><b>NOTE:</b></span>The nightmare is here: port 8000. Why? I have set geoserver_location and
 geoserver_public_ location to port 8080. And there is proxy reverse in 
geonode.conf to port 80. <br></div><div><a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank"><b><br></b></a></div><div><b>HOWEVER: </b>after running updatelayers for the first time without updating the thumbnail, there is a light at the end of the tunnel. <br></div><div><div><br></div><div><span style="color:rgb(32,18,77)"><b>Thumbnails are displayed. </b></span><br></div><div><br></div><div><b>Right Click over thumbnail --> Copy image Location</b></div><div><b><br></b></div><div>A OWS url appears<b>:<br></b></div></div><div><br></div><div><a href="http://localhost:8080/geoserver/ows?layers=geonode:GPS&crs=EPSG:4326&service=WMS&format=image/png8&request=GetMap&height=150&width=200&version=1.1.1&bbox=-69.935496180600000,-29.789445458300000,-35.777101013900000,0.047035064700000" target="_blank">http://localhost:8080/<wbr>geoserver/ows?layers=geonode:<wbr>GPS&crs=EPSG:4326&service=WMS&<wbr>format=image/png8&request=<wbr>GetMap&height=150&width=200&<wbr>version=1.1.1&bbox=-69.<wbr>935496180600000,-29.<wbr>789445458300000,-35.<wbr>777101013900000,0.<wbr>047035064700000</a></div><div><br></div><div>Why these urls patterns are different? One uses GeoServer, but the other do not. <br></div><div></div><div><br></div></div><div><br></div><div><div><b>Now, let's edit this layer (zoom in / zoom out) and Set Thumbnails </b><br></div><div><br></div><div><i><b>Layer --> Edit Layer --> Zoom in or Zoom out --> Set Thumbnails</b></i></div><div><br></div><div>Thumbnails url (<a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-2524c8db-726e-<wbr>4050-9689-055dc0bb9aaa-thumb.<wbr>png</a>) does not work properly.</div><div><br></div><div><b>Error message:</b> <br></div><div>The image '<a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-2524c8db-726e-<wbr>4050-9689-055dc0bb9aaa-thumb.<wbr>png</a>' cannot be displayed because it contains errors.</div><div><br></div><div><br></div><div><b>CONCLUSION GEONODE INSTALLED BY SOURCE:</b> There are two issues: <u>port 8000</u> and <u>thumbnails update.</u><br></div><br></div><div><br></div><div><span style="color:rgb(32,18,77)"><b>GEONODE INSTALLED VIA APT-GET </b></span><br></div><div><br></div><div><br></div><div>Thumbnail created by loading data from GeoNode Interface</div><div><br></div><div><b>Works like a charm </b><br></div><div><br></div><div>$ sudo geonode shell<br></div><div><br></div><div>>>> from geonode.layers.models import Layer<br>>>> layer = Layer.objects.all()<br>>>> for tn in layer:<br>...     print tn.get_thumbnail_url()<br>... <br><a href="http://localhost/uploaded/thumbs/layer-f519c8d4-6b35-11e8-90e2-080027ac8c10-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-f519c8d4-6b35-<wbr>11e8-90e2-080027ac8c10-thumb.<wbr>png</a></div><div><b><br></b></div><div><b>Now, let's edit this layer (zoom in / zoom out) and Set Thumbnail</b></div><div><b><br></b></div><div><i><b>Layer --> Edit Layer --> Zoom in or Zoom out --> Set Thumbnails</b></i><br></div><div><br></div><div>Thumbnail url (<a href="http://localhost/uploaded/thumbs/layer-a7c6035e-6b49-11e8-90e2-080027ac8c10-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-a7c6035e-6b49-<wbr>11e8-90e2-080027ac8c10-thumb.<wbr>png</a>) does not work properly.<br></div><div><br></div><div><div><b>Error message:</b> <br></div><div>The image 
'<a href="http://localhost/uploaded/thumbs/layer-a7c6035e-6b49-11e8-90e2-080027ac8c10-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-a7c6035e-6b49-<wbr>11e8-90e2-080027ac8c10-thumb.<wbr>png</a>'
 cannot be displayed because it contains errors.</div><br></div><div></div><div><br></div><div><b>Thumbnail created by loading data from GeoServer Interface</b></div><div><br></div><div>Works like a charm <br></div><div><br></div><div>>>> from geonode.layers.models import Layer<br>>>> layer = Layer.objects.all()<br>>>> for tn in layer:<br>...     print tn.get_thumbnail_url()<br>... <br><a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-2524c8db-726e-<wbr>4050-9689-055dc0bb9aaa-thumb.<wbr>png</a></div><div><br></div><div><b><b>Right Click over thumbnail blank image --> </b>Copy image Location</b><br></div><div><br></div><div><a href="http://localhost/geoserver/ows?layers=geonode:RBMC&crs=EPSG:4326&service=WMS&format=image/png8&request=GetMap&height=150&width=200&version=1.1.1&bbox=-64.706650088900000,-31.802449444400000,-35.777101013900000,0.047035064700000" target="_blank">http://localhost/geoserver/<wbr>ows?layers=geonode:RBMC&crs=<wbr>EPSG:4326&service=WMS&format=<wbr>image/png8&request=GetMap&<wbr>height=150&width=200&version=<wbr>1.1.1&bbox=-64.<wbr>706650088900000,-31.<wbr>802449444400000,-35.<wbr>777101013900000,0.<wbr>047035064700000</a><br></div><div><br></div><div><b>Now, let's edit this layer (zoom in / zoom out) and Set Thumbnails </b><br></div><div><br></div><div><i><b>Layer --> Edit Layer --> Zoom in or Zoom out --> Set Thumbnails</b></i></div><div><br></div><div>Thumbnails url (<a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-2524c8db-726e-<wbr>4050-9689-055dc0bb9aaa-thumb.<wbr>png</a>) does not work properly.</div><div><br></div><div><b>Error message:</b> <br></div><div>The image '<a href="http://localhost/uploaded/thumbs/layer-2524c8db-726e-4050-9689-055dc0bb9aaa-thumb.png" target="_blank">http://localhost/uploaded/<wbr>thumbs/layer-2524c8db-726e-<wbr>4050-9689-055dc0bb9aaa-thumb.<wbr>png</a>' cannot be displayed because it contains errors.</div><div><br></div><div><b>CONCLUSION GEONODE INSTALLED VIA APT-GET:</b> There is only one issue: <u>Thumbnails update.</u></div><div><u><br></u></div><div>As I said above, I do not know if it is a good idea, but I will keep comparing [1] [2] and [3] in GeoNode apt-get and GeoNode virtualenv in order to find port 8000 source. However the issue related to updating GeoNode thumbnails  I have no clue.</div><div><br></div><div><br></div><div>Sorry for this long e-mail. Thank you for your time in advance. I appreciated your help and attention.</div><div></div><div><u></u></div><div><br></div><div><br></div><div>Dear Julierme,</div><div><br></div><div>I think  using grep does not really help to get insights.</div><div>Why not look at the code? The geoserver URL is composed</div><div>in settings.py [1]. I think here you will find your 8000.</div><div><br></div><div>Next I think the best way to see what´s going on is to have</div><div>a look at the helpers.py [2]. Here you should find the code which</div><div>is responsible for creating thumbnails and here [3] the signal</div><div>which you see in stdout logging. If there is some time I will</div><div>do a dev installation and will test it as well.</div><div><br></div><div>Further you´ve asked if there is something like geonode-updateip </div><div>for an installation by source? Not that I know of but yes it would be helpful.</div><div>But it should not be to hard to write a little script which does the job.</div><div>Have a look what geonode-updateip actually does [4] it programatically changes</div><div>the parts which the documentation [5] explains regarding auth.</div><div><br></div><div>I hope this helps a bit.</div><div>Best greetings to Brasilia!</div><div><br></div><div>Toni</div><div><br></div><div><br></div><div>[1] <a href="https://github.com/GeoNode/geonode/blob/2.8.0/geonode/settings.py#L650" target="_blank">https://github.com/<wbr>GeoNode/geonode/blob/2.8.0/<wbr>geonode/settings.py#L650</a></div><div>[2] <a href="https://github.com/GeoNode/geonode/blob/master/geonode/geoserver/helpers.py#L1730" target="_blank">https://github.com/<wbr>GeoNode/geonode/blob/master/<wbr>geonode/geoserver/helpers.py#<wbr>L1730</a></div><div>[3] <a href="https://github.com/GeoNode/geonode/blob/df12893ced001973bd748f86d08fa6ae4c10dde9/geonode/geoserver/signals.py#L497" target="_blank">https://github.com/<wbr>GeoNode/geonode/blob/<wbr>df12893ced001973bd748f86d08fa6<wbr>ae4c10dde9/geonode/geoserver/<wbr>signals.py#L497</a></div><div>[4] <a href="https://github.com/GeoNode/geonode/blob/df12893ced001973bd748f86d08fa6ae4c10dde9/package/support/geonode.updateip#L126" target="_blank">https://github.com/<wbr>GeoNode/geonode/blob/<wbr>df12893ced001973bd748f86d08fa6<wbr>ae4c10dde9/package/support/<wbr>geonode.updateip#L126</a></div><div>[5] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/install_geoserver_application.html#geonode-authentication-integration" target="_blank">http://docs.geonode.org/<wbr>en/master/tutorials/install_<wbr>and_admin/geonode_install/<wbr>install_geoserver_application.<wbr>html#geonode-authentication-<wbr>integration</a></div><span><div><br></div></span><br></div></div></div>
______________________________<wbr>_________________<br>
geonode-users mailing list<br>
<a href="mailto:geonode-users@lists.osgeo.org" target="_blank">geonode-users@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/geonode-users" rel="noreferrer" target="_blank">https://lists.osgeo.org/<wbr>mailman/listinfo/geonode-users</a><br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_9031511692562879654gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div style="font-size:12.8px"><span><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-family:Arial;font-size:11pt;white-space:pre-wrap">==</span><br></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">GeoServer Professional Services from the experts! Visit <a href="http://goo.gl/it488V" target="_blank">http://goo.gl/it488V</a> for more information.</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">==</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">Ing. Alessio Fabiani</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">@alfa7691</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">Founder/Technical Lead</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">GeoSolutions S.A.S.</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><a href="https://maps.google.com/?q=Via+di+Montramito+3/A+-++55054+%C2%A0Massarosa&entry=gmail&source=g">Via di Montramito 3/A - </a></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><a href="https://maps.google.com/?q=Via+di+Montramito+3/A+-++55054+%C2%A0Massarosa&entry=gmail&source=g">55054  Massarosa</a> (LU) - </span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">Italy</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">phone: +39 0584 962313</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">fax:     +39 0584 1660272</span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">mob:   +39 331 6233686</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><a href="http://www.geo-solutions.it" target="_blank">http://www.geo-solutions.it</a></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><a href="http://twitter.com/geosolutions_it" target="_blank">http://twitter.com/<wbr>geosolutions_it</a></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#222222;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">------------------------------<wbr>-------------------------</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni circostanza inerente alla presente email (il suo contenuto, gli eventuali allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le sarei comunque grato se potesse darmene notizia.</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap">This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. We remind that - as provided by European Regulation 2016/679 “GDPR” - copying, dissemination or use of this e-mail or the information herein by anyone other than the intended recipient is prohibited. If you have received this email by mistake, please notify us immediately by telephone or e-mail.</span><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;white-space:pre-wrap"><br></span></p></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</blockquote></div><br></div>