It seems like when my web service has a error, the onFailure method is not being called. A example is if the file is not on the server, nether or gets called. So my all has a button for the user to press. If the web service does not exist, nothing happens.
I’m assuming there is a way for my program to detec these erros so I can display a message?????
Code snippet {name: "getHistory", kind: "WebService", onSuccess: "gotHistory", onFailure: "gotHistoryFailure", method: "POST", url: "http://127.0.0.1:8500/icechat/server/loadhistory.cfm" },
/////////////////////////////////////////////////////////////////////////////////
// Call back, called when the history data has been loaded from web services
gotHistory: function(inSender, inResponse) {
// Convert data from server to a jason object
// NOTE: The string should be checked first for embeded javascrip code
this.serverReply2= inResponse;
this.$.list.render();
},
//////////////////////////////////////////////////////////////////////////////////
// Called if the history data could not be loaded from the web service
gotHistoryFailed: function()
{
alert("got infortion failed"); // this never goes off
},
enyo.logto note the failure. – Ben Combee Apr 13 at 19:22