Classe fournisseur de Service distant (class)
De Wiki1000
(Différences entre les versions)
Ligne 39 : | Ligne 39 : | ||
|[[getEntity (TSDataServiceProviderInfo)|getEntity]] | |[[getEntity (TSDataServiceProviderInfo)|getEntity]] | ||
|Lecture d'une entité (GET) | |Lecture d'une entité (GET) | ||
+ | |- | ||
+ | |[[getEntityById (TSDataServiceProviderInfo)|getEntityById]] | ||
+ | |Lecture d'une entité (GET) référencé par son identifiant | ||
|- | |- | ||
|[[getEntityList (TSDataServiceProviderInfo)|getEntityList]] | |[[getEntityList (TSDataServiceProviderInfo)|getEntityList]] |
Version du 6 mai 2011 à 16:05
Introduction
Cette classe permet d'exécuter des requêtes sur un serveur SData distant.
Attributs
endPointURL | URL du Service SData sur lequel les requêtes sont émises |
userName | Nom d'utilisateur pour l'authentification |
userPassword | Mot de passe d'utilisateur pour l'authentification |
userPassword | Dernière valeur du code de retour HTTP |
userPassword | Dernière valeur du texte de retour HTTP |
Méthodes
postEntity | Création d'une entité (POST) |
putEntity | Modification d'une entité (PUT) |
deleteEntity | Suppression d'une entité (DELETE) |
deleteEntityById | Suppression d'une entité (DELETE) |
getEntity | Lecture d'une entité (GET) |
getEntityById | Lecture d'une entité (GET) référencé par son identifiant |
getEntityList | Lecture d'une liste d'entité (GET) |
Exemple :
begin // dynamically build the endpoint url dashboardUrl := 'http://dashboard-test.sage.fr/sdata/sdbApp/sdbFeed/'; endpoint := format('%s%s-%s',[dashboardUrl,customerCode,companyIdentifier]); // build a remote sdata entity proxy data := iPhonesdbData.create; ... // create an instance of sdata service provider prv := TSDataServiceProviderInfo.Create; prv.UserName := userName; prv.UserPassword := jeton; prv.EndPointURL := endpoint; // create this entity // this will emit a HTTP POST request prv.postEntity(data); end;
Voir aussi :
— Code métier — Développement DSM —