i know there is Bug 4780 regarding this issue but it posted from more than 7
months and still not fixed what to do .. and rcp basic thing for develop web
app

do Qooxdoo stable and ready to production project .?


LoginBtn.addListener("execute", function (e) {
                   
                    var rpc = new qx.io.remote.Rpc();
                    //rpc.setTimeout(10000);
                    rpc.setUrl("http://localhost/services/";);
                    rpc.setServiceName("qooxdoo.Users");
                    var handler = function (result, exc) {
                        
                        if (exc == null) {

                            alert("Result of async call: " + result); any
code below this line in if statement issue error
                            
                            var LoginInfo = qx.lang.Json.parse(result);
                            var LoginInfo = eval(result);
                            
                            qx.bom.Cookie.set(LoginInfo[0].Key,
LoginInfo[0].Value, 2);
                            this.__Desktop.widget["DesktopStack"].next();


                        }
                        else {
                            alert("Exception during async call: Login" +
exc);
                        }
                    };

                   
                   rpc.callAsync(handler, "Login", UserNameTxt.getValue(),
PasswordTxt.getValue())
                   
                            


                }, this);

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/local-error-2-how-to-solve-it-tp7011787p7011787.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to