[Geoserver-users] Updating coveragestore URL - REST API

2018-02-28 Thread kralik
Hi!

I am trying to modify coveragestore URL (with Geoserver REST API), with
purpose of getting up-to-date coverage that's been created every 15 min,
but I end up getting:
< HTTP/1.1 405 Method Not Allowed
< Allow: DELETE, GET, PUT

This is my method (using PHP):

$filename = "GEOTIF_201802280845.tif" // This variable is changable, and I
always get it automatically in a form GEOTIF_mmddhmin.tif
...
// POST
$request = "rest/workspaces/ws_name/coveragestores";
...
//POST data
$xmlStr = "

coveragestorename
GeoTIFF
true
ws_name
 file:///path/to/the/file/". $filename . "

";

Can someone point out what am I doing wrong?

Thanks in advance!

Daria







--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Updating coveragestore URL - REST API

2018-02-28 Thread kralik
I apologize, correction to previous post:

// PUT request
$request = "rest/workspaces/ws_name/coveragestores/coveragestore_name;

// PUT data (its same as in POST)
$xmlStr = "

coveragestorename
GeoTIFF
true
ws_name
 file:///path/to/the/file/". $filename . "

";

> Hi!
>
> I am trying to modify coveragestore URL (with Geoserver REST API), with
> purpose of getting up-to-date coverage that's been created every 15 min,
> but I end up getting:
> < HTTP/1.1 405 Method Not Allowed
> < Allow: DELETE, GET, PUT
>
> This is my method (using PHP):
>
> $filename = "GEOTIF_201802280845.tif" // This variable is changable, and I
> always get it automatically in a form GEOTIF_mmddhmin.tif
> ...
> // POST
> $request = "rest/workspaces/ws_name/coveragestores";
> ...
> //POST data
> $xmlStr = "
> 
> coveragestorename
> GeoTIFF
> true
> ws_name
>  file:///path/to/the/file/". $filename . "
> 
> ";
>
> Can someone point out what am I doing wrong?
>
> Thanks in advance!
>
> Daria
>
>
>
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Updating coveragestore URL - REST API

2018-03-01 Thread Andrea Aime
Hi,
you should probably give us some more information... is the target of your
request a image mosaic?
Or are you trying to create a new layer instead?

Cheers
Andrea


On Wed, Feb 28, 2018 at 1:45 PM,  wrote:

> I apologize, correction to previous post:
>
> // PUT request
> $request = "rest/workspaces/ws_name/coveragestores/coveragestore_name;
>
> // PUT data (its same as in POST)
> $xmlStr = "
> 
> coveragestorename
> GeoTIFF
> true
> ws_name
>  file:///path/to/the/file/". $filename . "
> 
> ";
>
> > Hi!
> >
> > I am trying to modify coveragestore URL (with Geoserver REST API), with
> > purpose of getting up-to-date coverage that's been created every 15 min,
> > but I end up getting:
> > < HTTP/1.1 405 Method Not Allowed
> > < Allow: DELETE, GET, PUT
> >
> > This is my method (using PHP):
> >
> > $filename = "GEOTIF_201802280845.tif" // This variable is changable, and
> I
> > always get it automatically in a form GEOTIF_mmddhmin.tif
> > ...
> > // POST
> > $request = "rest/workspaces/ws_name/coveragestores";
> > ...
> > //POST data
> > $xmlStr = "
> > 
> > coveragestorename
> > GeoTIFF
> > true
> > ws_name
> >  file:///path/to/the/file/". $filename . "
> > 
> > ";
> >
> > Can someone point out what am I doing wrong?
> >
> > Thanks in advance!
> >
> > Daria
> >
> >
> >
> >
> >
> >
> >
> > 
> --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Geoserver-users mailing list
> >
> > Please make sure you read the following two resources before posting to
> > this list:
> > - Earning your support instead of buying it, but Ian Turton:
> > http://www.ianturton.com/talks/foss4g.html#/
> > - The GeoServer user list posting guidelines:
> > http://geoserver.org/comm/userlist-guidelines.html
> >
> > If you want to request a feature or an improvement, also see this:
> > https://github.com/geoserver/geoserver/wiki/Successfully-
> requesting-and-integrating-new-features-and-improvements-in-GeoServer
> >
> >
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines: http://geoserver.org/comm/
> userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-
> requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 

Regards,

Andrea Aime

==
GeoServer Professional Services from the experts! Visit http://goo.gl/it488V
for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via di Montramito 3/A
55054  Massarosa (LU)
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

AVVERTENZE AI SENSI DEL D.Lgs. 196/2003

Le informazioni contenute in questo messaggio di posta elettronica e/o
nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
loro utilizzo è consentito esclusivamente al destinatario del messaggio,
per le finalità indicate nel messaggio stesso. Qualora riceviate questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla distruzione del messaggio
stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
utilizzarlo per finalità diverse, costituisce comportamento contrario ai
principi dettati dal D.Lgs. 196/2003.

The information in this message and/or attachments, is intended solely for
the attention and use of the named addressee(s) and may be confidential or
proprietary in nature or covered by the provisions of privacy act
(Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
Code).Any use not in accord with its purpose, any disclosure, reproduction,
copying, distribution, or either dissemination, either whole or partial, is
strictly forbidden except previous formal approval of the named
addressee(s). If you are not the intended recipient, please contact
immediately the sender by telephone, fax or e-mail and delete the
information in this message that has been received in error. The sender
does not give an

Re: [Geoserver-users] Updating coveragestore URL - REST API

2018-03-06 Thread kralik
Hi Andrea,

Thanks for prompt reply!
In the meanwhile I figured out that piece of PHP code related to CURL was
missing. Such a mindless problem, but it started to be time consuming.

Cheers,
Daria


> Hi,
> you should probably give us some more information... is the target of your
> request a image mosaic?
> Or are you trying to create a new layer instead?
>
> Cheers
> Andrea
>
>
> On Wed, Feb 28, 2018 at 1:45 PM,  wrote:
>
>> I apologize, correction to previous post:
>>
>> // PUT request
>> $request = "rest/workspaces/ws_name/coveragestores/coveragestore_name;
>>
>> // PUT data (its same as in POST)
>> $xmlStr = "
>> 
>> coveragestorename
>> GeoTIFF
>> true
>> ws_name
>>  file:///path/to/the/file/". $filename . "
>> 
>> ";
>>
>> > Hi!
>> >
>> > I am trying to modify coveragestore URL (with Geoserver REST API),
>> with
>> > purpose of getting up-to-date coverage that's been created every 15
>> min,
>> > but I end up getting:
>> > < HTTP/1.1 405 Method Not Allowed
>> > < Allow: DELETE, GET, PUT
>> >
>> > This is my method (using PHP):
>> >
>> > $filename = "GEOTIF_201802280845.tif" // This variable is changable,
>> and
>> I
>> > always get it automatically in a form GEOTIF_mmddhmin.tif
>> > ...
>> > // POST
>> > $request = "rest/workspaces/ws_name/coveragestores";
>> > ...
>> > //POST data
>> > $xmlStr = "
>> > 
>> > coveragestorename
>> > GeoTIFF
>> > true
>> > ws_name
>> >  file:///path/to/the/file/". $filename . "
>> > 
>> > ";
>> >
>> > Can someone point out what am I doing wrong?
>> >
>> > Thanks in advance!
>> >
>> > Daria
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> > 
>> --
>> > Check out the vibrant tech community on one of the world's most
>> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> > ___
>> > Geoserver-users mailing list
>> >
>> > Please make sure you read the following two resources before posting
>> to
>> > this list:
>> > - Earning your support instead of buying it, but Ian Turton:
>> > http://www.ianturton.com/talks/foss4g.html#/
>> > - The GeoServer user list posting guidelines:
>> > http://geoserver.org/comm/userlist-guidelines.html
>> >
>> > If you want to request a feature or an improvement, also see this:
>> > https://github.com/geoserver/geoserver/wiki/Successfully-
>> requesting-and-integrating-new-features-and-improvements-in-GeoServer
>> >
>> >
>> > Geoserver-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>> >
>>
>>
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines: http://geoserver.org/comm/
>> userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-
>> requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
>
> --
>
> Regards,
>
> Andrea Aime
>
> ==
> GeoServer Professional Services from the experts! Visit
> http://goo.gl/it488V
> for more information.
> ==
>
> Ing. Andrea Aime
> @geowolf
> Technical Lead
>
> GeoSolutions S.A.S.
> Via di Montramito 3/A
> 55054  Massarosa (LU)
> phone: +39 0584 962313
> fax: +39 0584 1660272
> mob: +39  339 8844549
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> AVVERTENZE AI SENSI DEL D.Lgs. 196/2003
>
> Le informazioni contenute in questo messaggio di posta elettronica e/o
> nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il
> loro utilizzo ? consentito esclusivamente al destinatario del messaggio,
> per le finalit? indicate nel messaggio stesso. Qualora riceviate questo
> messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
> darcene notizia via e-mail e di procedere alla distruzione del messaggio
> stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso,
> divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od
> utilizzarlo per finalit? diverse, costituisce comportamento contrario ai
> principi dettati dal D.Lgs. 196/2003.
>
> The information in this message and/or attachments, is intended solely for
> the attention and use of the named addressee(s) and may be confidential or
> proprietary in nature or covered by the provisions of privacy act
> (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection
> Code).Any use not in acco