Re: DELETE, PUT http

2012-04-22 Thread Mark Schonewille
Hi Trevor and others, I just looked into put into url again and found out that you need to configure your server to make it work. Apparently, you can't do this in a .htaccess or php.config file but you need to do this at a higher level. Currently, I have no server that I can configure this

Re: DELETE, PUT http

2011-04-04 Thread Dave Cragg
On 3 Apr 2011, at 08:50, Maarten Koopmans wrote: Hi, I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? So you can use the UI tools to integrate with REST services? I see great chanches here :-) You may be able to get this to work using

Re: DELETE, PUT http

2011-04-04 Thread Trevor DeVore
On Sun, Apr 3, 2011 at 3:50 AM, Maarten Koopmans maarten.koopm...@gmail.com wrote: I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? So you can use the UI tools to integrate with REST services? I see great chanches here :-) PUT and DELETE

Re: DELETE, PUT http

2011-04-04 Thread Trevor DeVore
On Mon, Apr 4, 2011 at 8:51 AM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: That's cool, Trevor. I didn't know this. Is it documented somewhere? Yes. 'delete URL' appears in the docs and a note about the HTTP implementation of PUT appears in the 'put' entry in the docs (I'm

Re: DELETE, PUT http

2011-04-04 Thread Mark Schonewille
Thanks, Trevor. I've just tried it in 4.0 and it doesn't work there. I guess it is a new feature. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Download

Re: DELETE, PUT http

2011-04-04 Thread Trevor DeVore
On Mon, Apr 4, 2011 at 9:44 AM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: Thanks, Trevor. I've just tried it in 4.0 and it doesn't work there. I guess it is a new feature. I don't think it is new as I found out about support a while ago (at least 4.x, probably 3.x). I don't

Re: DELETE, PUT http

2011-04-04 Thread Trevor DeVore
On Sun, Apr 3, 2011 at 3:50 AM, Maarten Koopmans maarten.koopm...@gmail.com wrote: I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? Regarding digest authentication - libURL doesn't offer built in support for digest so you have to roll

Re: DELETE, PUT http

2011-04-04 Thread Dave Cragg
On 4 Apr 2011, at 13:36, Trevor DeVore wrote: On Sun, Apr 3, 2011 at 3:50 AM, Maarten Koopmans maarten.koopm...@gmail.com wrote: I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? So you can use the UI tools to integrate with REST

Re: DELETE, PUT http

2011-04-04 Thread Maarten Koopmans
On Monday, April 4, 2011, Dave Cragg dave.cr...@lacscentre.co.uk wrote: On 4 Apr 2011, at 13:36, Trevor DeVore wrote: On Sun, Apr 3, 2011 at 3:50 AM, Maarten Koopmans maarten.koopm...@gmail.com wrote: I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest

DELETE, PUT http

2011-04-03 Thread Maarten Koopmans
Hi, I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? So you can use the UI tools to integrate with REST services? I see great chanches here :-) Suddenly firing a lot of questions, because after years of using LC/runrev for small things I want

Re: DELETE, PUT http

2011-04-03 Thread Richard Gaskin
Maarten Koopmans wrote: I there a way to have LIvecode do PUT and DELETE via http/https, hopefully witj digest authentication? So you can use the UI tools to integrate with REST services? I see great chanches here :-) PUT is well supported in addition to GET - check out the entry for PUT in

Re: DELETE, PUT http

2011-04-03 Thread Mark Schonewille
Hoi Maarten, POST and GET are supported. PUT and DELETE are not. Use LC's put url command to send data using the GET method. Use the post url command to send data using the POST method. POST example: put x=1y=2 into myData post myData to url http://domain.com/bla.php; GET example: put

Re: DELETE, PUT http

2011-04-03 Thread Maarten Koopmans
Hoi Mark, I'll have to add that myself then --Maarten On Sunday, April 3, 2011, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: Hoi Maarten, POST and GET are supported. PUT and DELETE are not. Use LC's put url command to send data using the GET method. Use the post url command