OCLOperators RestPost
No edit summary
No edit summary
Line 17: Line 17:
* '''HEADER_'''xxx  then the value is added to the content as Headers.Add(xxx,value)
* '''HEADER_'''xxx  then the value is added to the content as Headers.Add(xxx,value)
* '''HEADERMINUS_'''xxx  then the value is added to the content with the name underscores converted to dashes. I.e. as Headers.Add(xxx.Replace('_','-'),value)
* '''HEADERMINUS_'''xxx  then the value is added to the content with the name underscores converted to dashes. I.e. as Headers.Add(xxx.Replace('_','-'),value)
* '''HEADERMINUS_Content_Type ='application/x-www-form-urlencoded'''' will force the Post/Put into url-encoded-mode - all other columns are assumed to be strings that will be sent with a dictionary of name /values as FormUrlEncodedContent(theValuesForUrlEncoded)
The default content is MultipartFormDataContent, (values as dictionary) for example used in the [[Oauth2|Oauth2 implementation for server to server authentication]]
The default content is MultipartFormDataContent, (values as dictionary) for example used in the [[Oauth2|Oauth2 implementation for server to server authentication]]



Revision as of 12:22, 23 November 2019

Rest

RestGet, RestPost, RestPut, RestDelete and RestDownload are all operators on the selfVM variable only available in ViewModels.

These operators enables you to get or put information into external REST based services.

These operators works by adding a ViewModel Nesting/Class that has data and additional headers.

Rest explained: https://en.wikipedia.org/wiki/Representational_state_transfer

General rules and how to use headers in http and rest

Please read about the difference about request headers and content headers.

Nesting columns starting according to

For Content

  • STRINGCONTENT If the there's a column named then the request will be filled with StringContent(value as string)
  • FILENAME_xxx then the value if used as filename in a MultipartFormDataContent expecting a xxx column with byte data for the file content
  • HEADER_xxx then the value is added to the content as Headers.Add(xxx,value)
  • HEADERMINUS_xxx then the value is added to the content with the name underscores converted to dashes. I.e. as Headers.Add(xxx.Replace('_','-'),value)
  • HEADERMINUS_Content_Type ='application/x-www-form-urlencoded' will force the Post/Put into url-encoded-mode - all other columns are assumed to be strings that will be sent with a dictionary of name /values as FormUrlEncodedContent(theValuesForUrlEncoded)

The default content is MultipartFormDataContent, (values as dictionary) for example used in the Oauth2 implementation for server to server authentication

Also, note that content can only be sent in REST POST and PUT.

For the Request

  • DEFAULTREQUESTHEADER_xxx then the value is added to the request as client.DefaultRequestHeaders.Add(xxx,value)
  • DEFAULTREQUESTHEADERMINUS_xxx then the value is added to the request with the name underscores converted to dashes. I.e. as client.DefaultRequestHeaders.Add(xxx.Replace('_','-'),value)
  • FORCEREQUESTCONTENTTYPE can be used to force adding a Content Type header to GET request. Is it needed by some frameworks, but is actually an invalid request. It's implemented as adding a empty content and adding a header to that empty content. NOTE!! this should be avoided if possible!!

See further description here Rest Services In MDriven

This page was edited 24 days ago on 03/26/2024. What links here