Hello,
what is the difference between Socket and Rpc? I use easyXDM in my Application. My Website get data from an iframe and save it via a Web SQL Database.
In both variants the data were submitted.
When the Website use the Rpc-mechanism, then the code in the callback-function from the transaction-Method isnt called.
db.transaction(function(tx){
//code
}
If the Website use Sockets, then the code is called.
Are there any Threads in the Rpc-mechanism, they were close before the callback-Function is called? Or what explain this behavior?
An Solution is, that i transform the data in an json-String and submit over the socket, but i want understand this behavior. Can anyone help me?
br iggi13