Tagged Questions
The post-request tag has no wiki summary.
5
votes
1answer
356 views
How to do a Post Request in Python?
Hi I'm sitting in a Greyhound Bus with Wifi and want to connect a second Device to the Network. But I have to accept an onscreen contract and the device does not have a browser.
To accept the ...
3
votes
2answers
914 views
How do I handle and send POST requests in Perl and FastCGI?
Unfortunately, I'm not familiar with Perl, so asking here. Actually I'm using FCGI with Perl.
I need to 1. accept a POST request -> 2. send it via POST to another url -> 3. get results -> 4. return ...
2
votes
1answer
279 views
Ruby Mechanize does not pass cookie with request
I have a problem with Ruby mechanize where it loses the cookie during a 302 redirect after a manual post request.
1) Load page
agent.get(url)
Log:
I, [2011-09-21T19:50:46.077628 #5040] INFO -- : ...
2
votes
1answer
172 views
Interop.SHDocVw Navigate2() method displays unwanted download box
I am writing some regression tests in WatiN and needed to make a couple POST web requests. The requests are working fine but I get an annoying dialog box asking me if I want to save the file or find a ...
2
votes
2answers
511 views
How do I add basic authentication to a Python REST request?
I have the following simple Python code that makes a simple post request to a REST service -
params= { "param1" : param1,
"param2" : param2,
"param3" : param3 }
xmlResults = ...
2
votes
8answers
299 views
Securing POST data in web application
I have a web application which has basic authentication - username, password, session and stuff. However I have a specific need to prevent users from spoofing the POST requests (even for logged in ...
1
vote
2answers
298 views
Django - 403 error
when I'm using following Python code to send a POST request to my Django website I'm getting 403: Forbidden error.
url = 'http://www.sub.domain.com/'
values = { 'var': 'test' }
try:
data = ...
1
vote
2answers
148 views
How to pass a 'BeautifulSoup.Tag' object inside http post request in google app engine?
I have a BeautifulSoup.Tag object which I want to transfer in an http post request.
Specifically this is a request a task in google app engine would perform.
This is the code:
...
1
vote
0answers
284 views
django: very slow POST request
I have a problem with POST requests on Django. When I'm sending a POST request it takes like 12-13 sec to proceed it. When sending The same request, but using GET method, everything is ok.
I created ...
1
vote
4answers
576 views
Javascript + PHP $_POST array empty
While trying to send a POST request via xmlhttp.open("POST", "url", true) (javascript) to the server I get an empty $_POST array.
Firebug shows that the data is being sent. Here is the data string ...
1
vote
3answers
1k views
Using PHP to store results of a post request
Im currently working with an API which requires we send our collection details in xml to their server using a post request.
Nothing major there but its not working, so I want to output the sent xml ...
0
votes
2answers
43 views
POST request from iPhone to Django
I'm trying to send a POST request from iPhone to Django, but for some reason I can't. The request is sent, but the server doesn't receive it properly.
What is the regular expression that accepts ...
0
votes
1answer
49 views
Asynchronous HTTPrequest from PHP [closed]
Possible Duplicate:
Asynchronous HTTP requests in PHP
I want to be able to do a POST or GET request from scriptA.php to scriptB.php.
But I don't want scriptA.php to have to wait until ...
0
votes
4answers
34 views
send parameter with jquery ajax
I've a php page and I would to send a jquery ajax request to another page for sending email. This new page accept one parameter and then it executes query ecc...
<div id="customer" ...
0
votes
1answer
118 views
html form submit handle response page with java
I have a PayPal "pay now" button. If I click it - a POST request is sent to paypal and my current view gets redirected to the paypal site where I can pay.
In my application I want to do 2 Actions ...
0
votes
2answers
364 views
No route matches [POST] - Sending data to Ruby on Rails
I'm trying to send data to my Ruby on Rails application via a jQuery/AJAX POST request.
This works fine (well, with a few issues - but that's a seperate problem) on the index page where it just ...
0
votes
1answer
50 views
Is it possible redirect to a URL with a POST request rather than a GET request? [closed]
Possible Duplicate:
Redirect with POST data
Is it possible for a script to redirect to a URL with a POST request in PHP?
The code I currently have uses javascript to submit a form when the ...
0
votes
0answers
84 views
How to tell Django not to buffer the HTTP POST data?
The client is posting mjpeg stream as HTTP POST:
POST /feed/testfeed HTTP/1.0
Content-type: multipart/x-mixed-replace; boundary=--myboundary
--myboundary
Content-length: 14179
Content-type: ...
0
votes
1answer
77 views
Ajax calling PHP Function
So thanks to the response to my previous question, I've tried to make a code to e-mail me if the code is on another site.
Here is my javascript which is intended for a potential code theif to take ...
0
votes
1answer
161 views
POST request <h:outputLink> in using JSF
How to fire a POST request using h:outputLink command in jsf?
0
votes
0answers
173 views
sending post request using URL connection
try {
//Create connection
url = new URL("SOME URL");
connection = (HttpURLConnection)url.openConnection();
...
0
votes
1answer
396 views
xmlhttprequest in chrome extension
I am developing a chrome extension and I have an iframe which I use in my extension. This is what I do with my iframe
"When I drag and drop a image to my iframe I handle the drop event in one of the ...
0
votes
1answer
339 views
iPhone: Try to send html code to a php script (but fail)
I am trying this for an iPhone app in Xcode:
create html code for a website on the fly
sending it to a php-script and getting the response with this code:
NSError * error = [[[NSError ...
0
votes
3answers
396 views
Ruby on rails web services with POST request
I've just started learning Ruby on rails and I am wondering how to do something that I know how to easily do in PHP.
I want to create some basic web services that can be called with POST parameters ...
0
votes
1answer
860 views
Reading RAW data from a Flash POST Request ( images )
I'm basically interacting with a third party API flash file to send HTTP POST requests to my server.
I know I'm on somewhat the right path because it requires a crossdomain.xml file, and before I ...
0
votes
2answers
1k views
Flash: How do I make a POST request from within flash to my processing php page?
I basically have a form inside of Flash that I need to submit to a server-side processing page, which will then return either json or xml telling if it succeeded or not ( json, xml I suppose ). My ...