Hi,
although I'm no expert on PHP at all, I can see two issues with your
code:

1) looks like you're making a POST, non a PUT request. See
http://www.lornajane.net/posts/2009/putting-data-fields-with-php-curl
for an example.

2) your URL seems wrong: it should be in the form
http://192.168.0.89:8080/geoserver/rest/layers/<layer_name>.xml. Please
review the docs here:
http://docs.geoserver.org/stable/en/user/rest/api/layers.html#layers-l-format

Hope this helps,
--S

Il giorno ven, 03/07/2015 alle 12.01 +0300, Wondimagegn Tesfaye ha
scritto:
> 
> 
> I managed to take out the php code from the warpper class but it is
> still not working. Here is the code.
> 
> 
> 
> 
> <?php
> 
> $data = '<layer><defaultStyle><name>my_style</name>
>             <workspace>my_workspace</workspace>
>             </defaultStyle><enabled>true</enabled></layer>';
> $ch = curl_init();
> curl_setopt($ch, 
> CURLOPT_URL,('http://192.168.0.89:8080/geoserver/rest/layers/my_workspace:my_style')
>  );
> curl_setopt($ch, CURLOPT_USERPWD, "admin:geoserver");
> curl_setopt($ch, CURLOPT_POST, true);
> curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
> curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml", 
> 'Content-Length: '.strlen($data)) );
> curl_setopt($ch, CURLOPT_HEADER, false);
> curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
> curl_exec($ch);
> curl_getinfo($ch);
> ?>
> 
> 
> On Thu, Jul 2, 2015 at 9:09 PM, Wondimagegn Tesfaye
> <wondi...@gmail.com> wrote:
>         Thank you for the advice but I was try to use this type of
>         command. 
> http://docs.geoserver.org/stable/en/user/rest/examples/php.html
>         
>         
>         I also go this
>         class 
> http://www.ibm.com/developerworks/library/os-geoserver/#download 
>         
>         
>         Which works for creating store, workspace, and layers. 
>         
>         
>         The one you posted above is a cmd or terminal command, I
>         guess. 
>         
>         On Thu, Jul 2, 2015 at 5:53 PM, Andrea Aime
>         <andrea.a...@geo-solutions.it> wrote:
>                 On Thu, Jul 2, 2015 at 4:49 PM, Stefano Costa
>                 <stefano.co...@geo-solutions.it> wrote:
>                         Hi Andrea,
>                         
>                         Il giorno gio, 02/07/2015 alle 16.32 +0200,
>                         Andrea Aime ha scritto:
>                         > On Thu, Jul 2, 2015 at 4:14 PM, Stefano
>                         Costa
>                         > <stefano.co...@geo-solutions.it> wrote:
>                         
>                         > Correct, but always remember to also add
>                         <enabled>true</enabled> to
>                         > the PUT request to avoid disabling the layer
>                         as a side effect
>                         >
>                         
>                         Uhm... I just tested it against GeoServer
>                         2.7.1 and the layer was not
>                         disabled: may be a bug?
>                 
>                 
>                 Interesting.... nope, disabling any
>                 resource/layer/store edited because we did not
>                 add <enabled>true</enabled> is the bug, not sure how
>                 it got fixed though, thinking
>                 about how XStream persistence/parsing works...
>                 basically the code cannot
>                 tell apart the lack of attribute from an explicity
>                 "false" because the attribute is a 
>                 primitive.
>                 
>                 
>                 Just checked, with layer it now works because the
>                 enabled field of layer
>                 has been deprecated, and we are just reflecting the
>                 one in the resource associated
>                 to it, which is not being edited in this request.
>                 
>                 
>                 To avoid this issue in general we should switch all
>                 boolean usage for enabled to
>                 Boolean instead, in stores, resources, and in general
>                 everything else in configuration
>                 that might have a primitive value.
>                 
>                 
>                 Cheers
>                 Andrea
>                  
>                 
>                 
>                 -- 
>                 ==
>                 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 Poggio alle Viti 1187
>                 55054  Massarosa (LU)
>                 Italy
>                 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 any warranty or accept
>                 liability as the content, accuracy or completeness of
>                 sent messages and accepts no responsibility  for
>                 changes made after they were sent or for other risks
>                 which arise as a result of e-mail transmission,
>                 viruses, etc.
>                 
>                 
>                 
>                 
>                 -------------------------------------------------------
>         
>         
> 
> 

-- 

Best regards,
Stefano Costa

==
GeoServer Professional Services from the experts! Visit
http://goo.gl/it488V for more information.
==
Dott. Stefano Costa
Senior Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:     +39 0584 1660272

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 any warranty
or accept liability as the content, accuracy or completeness of sent
messages and accepts no responsibility  for changes made after they
were sent or for other risks which arise as a result of e-mail
transmission, viruses, etc.




------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to