[udig-devel] UDIG-1389 invalid password
Mauro Bartolomeoli
m.bartolomeoli at esalab.it
Wed May 28 23:52:24 PDT 2008
Do you think the problem on GeoTiffs reloading
(http://jira.codehaus.org/browse/UDIG-1383) can be fixed too?
This is the solution I found to fix it on 1.1.x branch:
---------------------------------------------------------------------
I found one possible solution to the problem of Geotiffs not reloading
when restarting Udig: the problem was that Udig was not saving the tiff
in the .localCatalog file, due to an empty Map returned from the
getConnectionParams method in GeoTiffServiceImpl. I added the following
method:
public Map<String, Serializable> getConnectionParams() {
URL url=getIdentifier();
Map<String, Serializable> params = new HashMap<String,
Serializable>();
if (url != null) {
params.put(GeoTiffServiceExtension.URL_PARAM, url);
}
return params;
}
----------------------------------------------------------------------
Thanks,
Mauro Bartolomeoli
Jesse Eichar wrote:
> I will take a look today and try to get it in for you. Thanks for
> poking me :)
>
>
>
> Jesse
>
> On 28-May-08, at 11:42 PM, Tore Halset wrote:
>
>> Super. Do you think it will make it to the next RC?
>>
>> - Tore.
>>
>> On 20. mai. 2008, at 09.07, Jesse Eichar wrote:
>>> Hi Tore. I've seen the bug report and plan on putting a fix for
>>> it. Probably yours.
>>>
>>> Thanks for the submission.
>>>
>>> Jesse
>>>
>>> On 20-May-08, at 7:24 AM, Tore Halset wrote:
>>>
>>>> Hello.
>>>>
>>>> Anyone have some spare cycles to look at this issue and my
>>>> suggested patches for it?
>>>>
>>>> Regards,
>>>> - Tore.
>>>> _______________________________________________
>>>> User-friendly Desktop Internet GIS (uDig)
>>>> http://udig.refractions.net
>>>> http://lists.refractions.net/mailman/listinfo/udig-devel
>>>
>>> _______________________________________________
>>> User-friendly Desktop Internet GIS (uDig)
>>> http://udig.refractions.net
>>> http://lists.refractions.net/mailman/listinfo/udig-devel
>>>
>>
>> _______________________________________________
>> User-friendly Desktop Internet GIS (uDig)
>> http://udig.refractions.net
>> http://lists.refractions.net/mailman/listinfo/udig-devel
>
> _______________________________________________
> User-friendly Desktop Internet GIS (uDig)
> http://udig.refractions.net
> http://lists.refractions.net/mailman/listinfo/udig-devel
More information about the udig-devel
mailing list