![]() |
DELETE-Methode fuer HTTP gesucht und selbst gebastelt
Servus ich versuche mein GPS-Mapper mit den Daten von Openstreetmap zu verbinden, was grundsaetzlich auch geht.
Bislang verwende ich Delphi 2006 mit Indy 10.1 und zwar die TidHTTP-Component. PUT und GET funktionieren auch. Aber TIDHTTP hat keine DELETE-Methode.
Delphi-Quellcode:
Ich habe es wie folgt mit der Property Request versucht, was aber nicht funktioniert:
Ausschnitt aus den Protocol-Specs
----------------------cut-------------------- Basic Methods for Object Access and Manipulation For each of the above-mentioned object types, the API supports these CRUD operations (replace <objtype> by one of node, way, relation; replace <id> by the id of the object in question): .....................................................Payload Purpose_________HTTP Method and URL_______________Request_______Response Creation________PUT /api/0.5/<objtype>/create____XML per DTD___id Retrieval_______GET /api/0.5/<objtype>/<id>______n/a___________XML per DTD Update__________PUT /api/0.5/<objtype>/<id>______XML per DTD___empty Deletion________DELETE /api/0.5/<objtype>/<id>______n/a___________n/a ----------------------cut---------------------
Delphi-Quellcode:
Jemand eine Idee wie man DELETE operationen realisieren kann?
var
httpLink : TIdHTTP; begin sURL := 'http://api.openstreetmap.org/api/0.5/node/'+intToStr(nodeid), httpLink.Request.Method:=Id_HTTPMethodDelete; try iRes := -1; sResult := httpLink.Put(sURL,xStream); ... end; Danke fuer Eure Muehe utu |
Re: DELETE-Methode fuer HTTP gesucht
|
Re: DELETE-Methode fuer HTTP gesucht
|
Re: DELETE-Methode fuer HTTP gesucht
Auf den ersten Blick bietet weder ICS noch Synapse eine DELETE-Methode ... muss mal noch weiter graben.
|
Re: DELETE-Methode fuer HTTP gesucht und selbst gebastelt
Okay, da ich auf die Schnelle keine Komponente gefunden habe, die ein DELETE implementiert, habe ich mir das selbst geschrieben:
Delphi-Quellcode:
Sollte selbsterklaerend sein. DoRequest ist in der Basisklasse (TIdCustomHTTP) als [protected] deklariert ...
unit yIdHttpExt;//my IdHTTPExtension
interface uses IdHTTP; type yIdHTTP = class(TIdHTTP) private published public procedure delete(AURL: string); end; implementation procedure yIdHTTP.delete(AURL: string); begin DoRequest(Id_HTTPMethodDelete, AURL, nil, NIL, []); end; end. Erste Tests sehen vielversprechend aus. [Edit: ProtocolVersion := pv1_1; required] |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:56 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz