0
votes
1answer
29 views

getting data from cgi into javascript (ajax)

I have made a cgi program in C, which generates HTML, and I would like to replace a part of a HTML page with it. So, using jquery I have tried to get the output of my cgi using $.ajax(),$.get() or ...
1
vote
3answers
78 views

How can I use the value of a JQuery/Javascript variable in a Perl script?

I am a complete newbie to Perl & Javascript/Jquery/Ajax. As an example, I'd like to send the string var exampleString to test.pl, and the script will then write the string to file. function ...
0
votes
0answers
46 views

Ajax not working with Python cgi

Here is the html code: <!DOCTYPE html> <html> <body> <script type="text/javascript"> function getQuestionList() { var xmlHttp = new XMLHttpRequest(); ...
0
votes
1answer
117 views

JQgrid not working for local data

i am posting the data to cgi script and getting the response in json format. storing into the variable and trying to load it in the jqgrid. but Jqgrid not loading the local data even its showing ...
1
vote
2answers
145 views

jQuery AJAX to Perl JSON module decode of data

I need to be able to decode multiple parameters from the data portion of an ajax call to a perl cgi script. I know that everything else is working with my code, but for whatever reason I can't seem to ...
0
votes
1answer
116 views

Simple Perl and CGI::Ajax form validation

I'm trying to do a real simple setup. 1.Do checks on each field using CGI::Ajax. 2.Validate that all fields have been filled in with simple perl CGI The thing is, when testing individually, both ...
0
votes
3answers
164 views

Python CGI Ajax Call resulting in Internal Server error

I'm attempting to step foot into the web development world, and I'm having some trouble understanding why my basic hello world script is failing. I have a simple AJAX call to a python cgi script that ...
0
votes
0answers
75 views

Asynchronous python script execution from button

I have a pretty standard LAMP installation on an RPi. I have an html interface with indicators and buttons. I am using Jquery to read server-side text files into indicators, and would like to have ...
0
votes
1answer
126 views

ajax send info to python cgi automatically

First of all, my server does not accept any additional frameworks but python, so I have to stick with it. I found a simple example om the internet. I have very few ajax knowledge and I need some help. ...
0
votes
1answer
482 views

Running Python CGI Scripts from Javascript and JQuery Mobile UI

The workflow I'm trying to accomplish is as follows. There is a jQuery Mobile UI with a bunch of range slider elements. Each one is for controlling a different function. When a user moves and ...
1
vote
1answer
463 views

Python/CGI/Ajax: cgi.FieldStorage does not receive arguments

I am trying to get a Python, cgi module, ajax/javascript combination to work. Due to the nature of my server access (essentially rented webspace), I cannot install things like django or any other ...
0
votes
0answers
44 views

The best method for transfering user profile information to Java Desktop app from C++ server

I've written a client desktop app in Java that I want to communicate to my c++ server to exchange user profile information. Since I was thinking of also porting my Java Desktop app to a mobile ...
0
votes
1answer
188 views

how can I use long polling to automatically refresh a webpage

I am trying to figure out how to use long polling to trigger a webpage refresh (the entire page as opposed to just a single section). Although it would be nicer to just update part of the page instead ...
1
vote
1answer
73 views

Best practice to make partial search results appear (one by one as they come in from a secondary server)

I'd like to do the following: the queries on a django site (first server) are send to a second server (for performance and security reasons) the query is processed on the second server using sqlite ...
0
votes
0answers
128 views

Email validation using CGI script and jquery ajax request

I have CGI script on my server that checks if an email id is in existence. It responds with 'Y' or 'N'. I'm trying to fetch this value on the client side using jquery ajax but I can't seem to get a ...
1
vote
0answers
77 views

Load XML content onload Apache

Am trying for onload page content from backend(perl) using Ajax .When Tried with simple CGIHTTPServer then, the pages is getting load as required in particular Div's . But as same page i moved to ...
0
votes
1answer
155 views

Javascript Functions Confusing AJAX Responses from CGI Request/Response

I have 3 Javascript functions called from the body onload in the HTML page. Each Javascript function is contained in it's own Javascript file. Each Javascript file corresponds to another CGI script ...
0
votes
0answers
56 views

forms, checkboxes : cgi, ajax

Basically I want to associate images with checkboxes so that I can select images to open in a new window. Can this be done with ajax without cgi script? The problem seems that the html form action has ...
3
votes
3answers
413 views

Is it possible to trigger file download to a user's browser?

Is it possible to force file download to user's browser (with the standard dialog prompt of course)? To be triggered by the server. Basically I'm thinking of pushing a file to the browser coming from ...
0
votes
0answers
128 views

Backend database configuration (using Apache2, postgres, libpqxx)

I am trying to run cgi script written in c++ from my website on local Apache2 server. I am experimenting with simple web-authentication using postgresql database for username / password. (i am aware ...
0
votes
1answer
743 views

ajax request to python script

i just tested out a script i made. it is in python. i use ajax, to send a request and try and get the result. function ajaxFunction(){ var ajaxRequest; var e = ...
0
votes
1answer
328 views

turn on led after a javascript comparison

Ok, so I am monitoring the temperature in the room and controlling some LEDs with a PIC-WEB from microchip. I have to compare two temperatures: the one read by the temp sensor and one that I specify ...
2
votes
2answers
203 views

python cgi ajax lag

im using a python script to display text to the screen with ajax but it's laggy and sometimes not even working.. here's the python script #!/usr/bin/env python import cgi, cgitb form = ...
0
votes
3answers
347 views

How To Write a perl cgi script which keeps on flushing with current time in the same browser instead of printing alist of times [duplicate]

Possible Duplicate: Reg: Perl CGI script Autoupdate with New Data A perl CGI script continuosly updating the time, instead of creating a time list #!C:/perl/bin/perl.exe use warnings; use ...
1
vote
1answer
161 views

CGI::Ajax can not control returned table css style?

I have question regarding using CGI::Ajax. my CGI::Ajax registered function will return a table, and I want to control the table's style by using jquery plugin tablesorter the result table is ...
0
votes
1answer
780 views

jquery ajax: read value from CGI

i'm trying to get a value from a CGI with jquery ajax. i can't change any settings of the CGI because it's not on my own server. all i know about the CGI is that if i directly tape this in a browser ...
2
votes
1answer
765 views

PHP - session_id() gives me HTTP/1.1 500 Internal Server Error

Running Apache with PHP as FastCGI. serverinfo.php: if (isset($_GET['session'])) { session_id($_GET['session']); session_start(); die('You got here'); } i won't even get to ...
1
vote
1answer
515 views

having problems getting a python cgi script to open file passed to it from AJAX

In a prior post I was trying to upload a file to a server using HTML and Javascript. I ran into several problems with my implementation so I've taken a different approach. I have a HTML form and a ...
0
votes
1answer
295 views

Ajax readyState always equals one

Hello I'm working with ajax that submits to a C++ cgi program. The problem that I am having is the readyState is always 1. I don't get what I am doing wrong. var asyncRequest; // XMLHttpRequest ...
1
vote
0answers
324 views

Ajax not returning data from C++ cgi script

I'm having a problem with some ajax that im working on. The problem is that it is not returning anything in the responseText field. I would like to return the string "OK" in response text but i'm not ...
0
votes
1answer
330 views

Display results in table using Perl CGI::Ajax module

I have a Perl and HTML files separate.I am using HTML::Template for keeping html file separate. Now,I want to use CGI::Ajax module in perl. Like below. In HTML file: select id="listname" ...
1
vote
2answers
473 views

Getting Apache cgi to send json in Python

I have an apache server that I am using for cgi. I am writing my cgis in Python. As long as my responses are of the form "Content-Type: text/html\n #" it works. But if I send anything else, I get a ...
0
votes
1answer
114 views

inject parameters in cgi-bin through shell

My current problem is that I'm developing a embedded system that uses a binary Cgi inside cgi-bin folder. For some obscure reason, when I access the browser and type ...
2
votes
0answers
68 views

CGI via AJAX fails on Firefox from authenticated server?

I have a simple page that uses AJAX to POST data to a cgi script which then writs the data to a file. During the development, I hosted the cgi from my personal cgi-bin (no .htaccess): ...
0
votes
2answers
251 views

Python with CGI - handle ajax

I'd like to: Send request from the browser to a python CGI script This request will start some very long operation The browser should check progress of that operation every 3 seconds How can I do ...
0
votes
2answers
108 views

How to INTERACT between a program on the server and the user via a web page REAL-TIME

Let me start with an example: There is a c++ program which can be run on my server, the program is named "Guess the Number" which means every time it runs, first it will generate an integer ...
0
votes
1answer
698 views

Send data from python-cgi to AJAX

I'm implementing a UI version of the find command in linux. I take the location and filename parameters for the find command in a cgi form implemented using python. On submit, I draw the form again ...
1
vote
1answer
614 views

AJAX: Passing a string through CGI that contains '&' character

I am creating a website updater. I am passing strings over CGI using AJAX. I have a problem where if my strings contain an '&' character they get incorrectly separated because CGI separates ...
0
votes
2answers
734 views

Python / AJAX / JavaScript - HTML page printing twice during GET

I currently have an issue with my program in which I'm trying to produce live search (much like Google's) using AJAX. At the moment, its based on a list of cities, so when a user types for example "A" ...
1
vote
1answer
1k views

Jquery Ajax CGI : load script

I try to load my perl cgi script content into the html page. The .load() does not work. Please tell me what's wrong here : $(document).ready(function() { ...
1
vote
4answers
3k views

Real time chart (SVG) + AJAX/Javascript/Jquery + StdOut + Python + I dont really know myself

I am not sure how to accurately describe my problem , and right now i have a total mess in my head , so please deal with it and correct me if i am wrong , and i will be for sure. MAIN GOAL: Is to ...
1
vote
1answer
399 views

bugzilla webservice does bug.get require authentication?

I am using jsonrpc to access bugzilla webservice's bug.get feature, but it is returning: Error: 403 Forbidden Content-Type: text/xml No data. I make an ajax call to my server, which then ...
0
votes
1answer
178 views

UTF-8 and CGI::Ajax

I have cgi script pulling search terms from an HTML form through CGI::Ajax. When running Encode::Detect::Detector over the resulting string in my script, I get, instead of just UTF-8, a variety of ...
1
vote
1answer
1k views

Why wont my Simple CGI Server handle AJAX Post requests?

I have created my own CGI python server script (that serves on port 8000) by following a tutorial. The server works beautifully if I want to generate web pages from python scripts, or serve a native ...
3
votes
3answers
2k views

Is it possible to use Python, AJAX & CGI together

I want to have a web page where you click a button, by using AJAX I get a string from a python script, then display that string in a paragraph HTML element. I know I can do this by using Python, WSGI ...
3
votes
4answers
1k views

WSGI: Use AJAX to get a string from a python script

I am delving into WSGI & it is pretty difficult. What I am trying to do is something pretty simple: when I click a link I want to get the string "hello" from a python script & display ...
0
votes
3answers
2k views

AJAX & Python: Response text from python script is an object

Edited out silly mistake I am using AJAX to access a python script, get some TEXT from the python script & display it on my webpage. My Problem: is that the response text is this "undefined" ...
7
votes
1answer
5k views

Illegal operation on WrappedNative prototype object

I'm sorry if this answer seems similar to other questions in this website, but I couldn't find what I need. I have this code: $.ajax({ url: '../../cgi-bin/executeQuery', ...
1
vote
1answer
2k views

ajax request in extjs always executes success

I have a ajax request, where i have code for both success and failure success: function(my_response) { }, failure: function(my_response) { } I am using Perl CGI in the server to handle the Ajax ...
2
votes
3answers
1k views

How to use Ajax/jQuery to update table with XML output of server process?

I have an executable on my web server that outputs XML to a file or standard output. The XML contains data I would like to turn into a table. This XML will be unique per user and will change on a ...

1 2