Hi everybody,
I have a problem using polymer client in cuba, I need to use the service invokeService from appCuba but I need this service sync, I mean “async: false”,
var params = {nif:nif, email:email};
this.app.invokeService("bo_GestionService", "isValid", params)
.then(response => {
console.log("#### response = " + response);
respuesta = response;
}).catch(reason => console.log("Error en lanzarServicio : " + reason));
is there any way to make this call sync instead of asynchronous???
Thank a lot!!!