Tagged Questions
0
votes
0answers
135 views
Log in page using cherrypy and Javascript
I am trying to create Log in page using python Cherrypy and JavaScript...I cant link the two.
Expected output =
if username=='Bob' ans Password=='123' then display 'Welcome BOB' else then display ...
0
votes
1answer
62 views
Documentation for older version of Cherrypy
Hi I've written a small cherrypy http server in cherrypy version 3.2.0. But I have had a requirements change to deploy it on systems running version 2.3.0.
I use a couple of tools which have ...
0
votes
1answer
340 views
Call python script from html page
I have to make a html page with css and javascript that I have to enter a url in a form. With this url, I have to get some information from the html of the page with a Python 3.2 Script.
I start ...
0
votes
1answer
133 views
passing db url as ajax parameter
I have a controller written in python cherrypy that should check if a db url is valid by attepting to make a connection. I'm having problems however passing the parameter to the method. My ajax call ...
0
votes
1answer
71 views
CherryPy Returning Status 301 on nsIXMLHttpRequest (but works fine for firefox HTTP request)
I am developing a web API in using CherryPy. The intent is that it is accessed by JavaScript through nslXMLHttpRequest. When I access the API through Firefox (as though it were an ordinary-variety ...
1
vote
2answers
1k views
How to receive AJAX data in CherryPy
Beginning to climb the ajax learning curve, I'm trying to make a simple ajax call back to my CherryPy application and echo the data sent back to the browser.
My ajax call is working and I can return, ...
0
votes
2answers
146 views
Sending anything *other* than GET using JQuery ajax
I'm at the beginning of my ajax learning curve. I have a simple javascript function that uses jQuery.ajax() to send data to the server and receive a simple text response. The function is correctly ...
2
votes
1answer
643 views
How to call function in my python code on click button - from javascript onClick call Python
I'm trying to implement ajax on CherryPy site and I have problem. How to call function in my python code (function name: ajax_data is @cherrypy.expose and returns some json which I can easily ...
37
votes
1answer
26k views
How to get a cross-origin resource sharing (CORS) post request working
I have a machine on my local lan (machineA) that has two web servers. The first is the in-built one in XBMC (on port 8080) and displays our library. The second server is a CherryPy python script ...
1
vote
1answer
1k views
jQuery aspx error function always called, even with apparently valid return data
I am making an ajax call using jQuery (jquery-1.5.2.min.js). The server receives the call. fiddler shows the response text coming back apparently correct. But back in javascript my error: function is ...
21
votes
5answers
10k views
cherrypy vs flask/werkzeug
I want to write a Python "information server":
Various types of information will be displayed: tables of data, docs, etc. Some is dynamic and some static. I'd like to use HTML templating, and am ...
4
votes
1answer
697 views
Fix a 404: missing parameters error from a GET request to CherryPy
I'm making a webpage using CherryPy for the server-side, HTML, CSS and jQuery on the client-side. I'm also using a mySQL database.
I have a working form for users to sign up to the site - create a ...
0
votes
2answers
3k views
How does one do async ajax calls using cherrypy?
I'm using cherrypy's standalone server (cherrypy.quickstart()) and sqlite3 for a database.
I was wondering how one would do ajax/jquery asynchronous calls to the database while using cherrypy?