reading parameters and files on browser, looking how to execute on server
Posted
by
jbcolmenares
on Programmers
See other posts from Programmers
or by jbcolmenares
Published on 2012-10-18T16:33:41Z
Indexed on
2012/10/18
17:23 UTC
Read the original article
Hit count: 190
web-development
|JavaScript
I have a site done in Rails, which uses javascript to load files and generate forms for the user to input certain information. Those files and parameters are then to be used in a fortran code on the server.
When the UI was on the server (using Qt), I would create a parameters file and execute the fortran code using threads so I wouldn't block the computer.
Now that is web-based, I need to make the server and browser talk. What's the procedure for that? where should I start looking? I'm already using rails + javascript. I need that extra tool to do the talking, and no idea where to start.
© Programmers or respective owner