Service Calls
Last updated
Was this helpful?
Last updated
Was this helpful?
WireBootstrap contains functions to make calls to data services using method.
Use the asynchronous get
function to get data from a data service using the HTTP GET method.
Use the synchronous getWait
method to get data from a data service using the HTTP GET method. Note, this is a synchronous call and will hold up the processing thread on that line of code until the response comes back.
Use the asynchronous post
function to send data to a data service using the HTTP POST method. Use the second parameter to send the post payload.
Use the synchronous postWait
function to send data to a data service using the HTTP POST method. Use the second parameter to send the post payload. Note, this is a synchronous call and will hold up the processing thread on that line of code until the response comes back.