Search the Community
Showing results for tags 'Server'.
Found 2 results
-
I need to read in a substantial matrix filled with float values (up to 60,000 rows, 800 columns) What is the best way to do this ? Tried text based csv and json stringified files, server-side, but not happy with the implicit conversions from text to float (xmlhttp). No node server available. Open for good ideas
-
Is it possible to perform user authentication between client app and server using SMS? I want my app to authenticate with a server, and either return a JSON with a error message, or a JSON with user profile data. Is this possible? If so, what do I need on the server side to perform the request? e.g. this gets an HTML document from google FHttp.Get('http://www.google.com'); I want to instead, post a username and password and in return get JSON (error message not authenticated, or some user profile data) but it doesn't look like TW3HttpRequest object has a put method however, there is a Open method. Can something like this be done? fHTTP.Open('POST','http://mywebsite.com/login.php'); if so, how do I pass the parameters UserId and Password?