I'm using Pyjamas to build my client app and Web2py to build the server. I'm submitting a HTML form (generated by Pyjamas) to the Web2py server code.
Where should I look to see how I can handle the submission using Web2py? I already have a function defined in /app/controllers/default.py which gets called with the form data from the web browser (stuff like request.vars). The return value from my function is correctly returned to the client but obviously I need to access the file the user selected and store it in the database (I'm using GAE so storing in the database is the route I need to take) Any pointers?

