Tagged Questions
In computing, POST is one of many request methods supported by the HTTP protocol used by the World Wide Web.
14
votes
7answers
10k views
Are there Firefox extension (or any other browser) that allow to send arbitrary POST data to a webpage?
I want to test the security of a website of mine and I would love to have an application that is able to send POST data, if it's even possible..
Thanks
12
votes
4answers
22k views
How to use getJSON, sending data with post method?
I am using above method & it works well with one parameter in url
e.g. Students/getstud/1 where controller/action/parameter format is applied.
now I have an action in Students controller that ...
11
votes
3answers
3k views
How can you add a Certificate to WebClient (C#)?
I know it is pretty simple to add a certificate to a HttpWebRequest. However, I have not found a way to do the equivalent using WebClient. Basicly, I want to send out a POST with a specific ...
9
votes
3answers
4k views
How to manually fire HTTP Post Requests with Firefox or Chrome
I want do test some Urls on the webapplication I'm working on. For that I would like to manually create HTTP Post Requests (meaning I can add whatever params I like).
Is there any extension or ...
8
votes
1answer
700 views
Can't POST large html5 canvas to server?
I have a canvas that you can paint on. I need to save it's contents to the server so it can be resumed later.
To do this, I xMLHttpReq.send(*) the encodeURIComponent(canvasP.toDataURL())* via a ...
8
votes
1answer
2k views
SOAP object over HTTP post in C# .NET
I am trying to compose a SOAP message(including header) in C# .NET to send to a URL using HTTP post. The URL I want to send it to is not a web-service, it just receives SOAP messages to eventually ...
7
votes
3answers
10k views
Simple MVC3 Question - How to retreive form values from HTTPPOST, dictionary or?
Simple question. I have an mvc controller that has method:
[HttpPost]
public ActionResult SubmitAction()
{
// Get Post Params Here
... return something ...
}
The form is a non-trivial form ...
7
votes
4answers
7k views
Android, Java: HTTP POST Request
I have to do a http post request to a web-service for authenticating the user with username and password. The Web-service guy gave me following information to construct HTTP Post request.
POST ...
6
votes
3answers
173 views
How to shutdown a timed out http POST using urlopen by urllib2 in Python?
Overview
I am using urlopen from the Python 2.7.1 urllib2 package to do a HTTP POST form a Windows XP machine to a remote Apache webserver (for instance the built-in web sharing of Mac OS X). The ...
6
votes
4answers
142 views
jQuery Submit Refreshing Page
The following code is intended to do a purely ajax POST request, instead it seems to do the POST via ajax and then the browser navigates to the response.
The HTML...
<div id="bin">
...
6
votes
2answers
1k views
Android Multipart POST to Google App Engine not working
I'm developing an android program that shares data via POST with an App Engine program, all in java. When I POST using MultipartEntity the appengine program is unable to see any of my POST variables ...
6
votes
1answer
2k views
What is the difference between [AcceptVerbs(HttpVerbs.Post)] and [HttpPost]?
I can decorate an action either with the [AcceptVerbs(HttpVerbs.Post)]/[AcceptVerbs(HttpVerbs.Get)]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(string title)
{
// Do Something...
}
...
6
votes
1answer
5k views
Accepting form fields via HTTP Post in WCF
I need to accept form data to a WCF-based service. Here's the interface:
[OperationContract]
[WebInvoke(UriTemplate = "lead/inff",
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
int Inff(Stream ...
5
votes
1answer
137 views
http POST error
I'm trying to send the xml to another webserver through Restclient's http POST request.This is the code :
response = RestClient.post 'https://secure.rowebooks.co.uk/testorders/orders.aspx', ...
5
votes
3answers
3k views
Using HttpClient and HttpPost in Android with post parameters
I'm writing code for an Android application that is supposed to take data, package it as Json and post it to a web server, that in turn is supposed to respond with json.
Using a GET request works ...
5
votes
1answer
435 views
What are different ways to send form data to controller action in ASP.net MVC 3?
I'm a newbie to Asp.net MVC, so please bare with me.
I want to post a form data which has grid kind of layout and a column in each row contains dropdownlist. selected value in the dropdown list maps ...
5
votes
2answers
245 views
Missing POST Parameters with proxy servers
we encounter some strange behaviour with our web application. Some POST requests do not have any http body, when they should. content-length is 0. There are no post parameters at all. We traced the ...
5
votes
1answer
599 views
C#: How to POST large string via WebRequest?
how can i upload a large string (in my case XML with BLOB) with POST without getting Timeout with GetResponse?
Changing the timeout helps, but this isn't really a solution.
If the Server is really ...
5
votes
1answer
632 views
HTTP-POST an image to Ruby on Rails app
I have an image in the form of a byte array in java. I'm trying to upload that image to my Ruby on Rails app, which makes use of Paperclip gem. My Rails model looks like this:
class App < ...
5
votes
7answers
3k views
What are the advantages of using a GET request over a POST request?
Several of my ajax applications in the past have used GET request but now I'm starting to use POST request instead. POST requests seem to be slightly more secure and definitely more url ...
4
votes
2answers
177 views
Can't set HttpWebRequest timeout higher than 100 seconds when doing a POST?
I am running into an issue where HttpWebRequest won't respect a timeout value higher than 100 seconds when doing a POST. However, if the request is a GET, a timeout value higher than 100 seconds is ...
4
votes
3answers
280 views
Using System.Net.WebClient with HTTPS certificate
In my C# Windows client, I have a POST submission to "the mothership". I want the data in the submits to be secured, of course, so I paid for HostGator to issue me an SSL certificate.
I saved off the ...
4
votes
1answer
348 views
rails Devise http authenticating mobile
I'm trying to authenticate an android client app to my server ruby on rails app which uses Devise gem. But I've tried http authentication, and post requests to authenticate, and the server just ...
4
votes
3answers
103 views
Does unsubscribe link need to be idempotent? [closed]
So we have an unsubscribe link - this is by it's nature an HTTP GET.
The appropriate RFC says this should be idempotent but to my mind the user expectation will be that they are clicking a link to ...
4
votes
3answers
404 views
HTML Form Data Lost On POST
We have a very strange problem which we have yet to be able to diagnose. Our application has a number of specific ASP.NET MVC actions which fail because a required parameter is missing:
The ...
4
votes
2answers
243 views
Why does a curl POST request crash my Catalyst::Controller::REST controller?
I'm using Catalyst to build a RESTful web service, so I create a Catalyst controller in the usual way
script/myapp_create.pl controller MyApp::Controller
I then fire up the catalyst test server
...
4
votes
2answers
470 views
urllib2 POST progress monitoring
I'm uploading a fairly large file with urllib2 to a server-side script via POST. I want to display a progress indicator that shows the current upload progress. Is there a hook or a callback provided ...
4
votes
2answers
4k views
Android, send and receive XML via HTTP POST method
There is a relevant question, but I could not get the answer clearly.
I would like to POST a short xml code
<aaaLogin inName="admin" inPassword="admin123"/>
to a specific URL address over ...
4
votes
3answers
2k views
Parsing a XML HttpResponse
I'm trying to parse the XML HttpResponse i get from a HttpPost to a server (last.fm), for a last.fm android app. If i simply parse it to string i can see it being a normal xml string, with all the ...
4
votes
2answers
709 views
Upload Images to Server
I have few images that I want to upload to my server. The client side is written in Java, and I will be making a HTTP Post request to upload images. Do I need to write server side code to handle the ...
4
votes
2answers
1k views
How to post to a request using node.js
I am trying to post some json to a URL. I saw various other questions about this on stackoverflow but none of them seemed to be clear or work. This is how far I got, I modified the example on the api ...
4
votes
2answers
353 views
IIS7 + PHP + HTTP POST = hang?
I installed PHP on a Windows 7 x64 machine with IIS7 via Windows Web App Gallery. Everything seemed to go fine, and a simple phpinfo() page works like you would think. However, whenever I do a POST ...
4
votes
1answer
585 views
Launch default browser with intent and post parameters
I would like to do something
like this:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.somepage.com?par1=val1&par2=val2"));
But I dont want to send the parameters with get ...
4
votes
2answers
351 views
Modify POST request in mod_perl2
Does anyone know how to access/modify the POST request data using mod_perl2.
IN GET method one can get/set the request QUERY string:
$args = $r->args();
$prev_args = ...
4
votes
1answer
389 views
Open source fuzz tool for fuzzing HTTP POST requests
I am looking for an open source fuzz tool for fuzzing HTTP POST requests. Any ideas?
4
votes
4answers
6k views
show “webpage has expired” on back button
What is the requirement for the browser to show the ubiquitous "this page has expired" message when the user hits the back button?
What are some user-friendly ways to prevent the user from using the ...
3
votes
5answers
141 views
Is it possible to upload a picture through a web browser from a mobile device?
This question has been asked before, but not this year - there is no concrete consensus and I know this is a hot topic. In addition, technology changes rather quickly, and the other questions seem to ...
3
votes
2answers
157 views
How to use Google Place Check-Ins in android
I used Google Places API to retrieve places in and around a particular location. By parsing the xml files, I get the required places and its details. I need to check in to a particular place. I ...
3
votes
1answer
117 views
HttpClient will only execute once Android
My HttpClient, HttpPost, or HttpGet method is only working once. I can successfully log in an get html from the response the first time, but when I try and log in a second time, the html is blank and ...
3
votes
1answer
159 views
JSON Post To Rails From Android
I'm currently working on an android app that interfaces with a Ruby on Rails app through XML and JSON.
I can currently pull all my posts from my website through XML but I can't seem to post via JSON.
...
3
votes
2answers
68 views
Can I mark a controller method as POST in Play using annotations?
I didn't find this anywhere - can i tell Play! that a specific controller method should (only) be accessed via HTTP POST?
Something like the HttpPost attribute in C#'s Asp.Net MVC?
public class ...
3
votes
4answers
220 views
Calling POST method in WP7
I am new to Windows Phone 7 application development. I am trying to call a URL in my program using POST method which takes some parameters. After the successful post I am supposed to get the response ...
3
votes
3answers
167 views
What is the better way to develop RSS reader for Android bassed on HTTP requests?
I'm new in development of applications for Android so I'm asking those questions for know which is better way to make RSS reader app. I have a server that downloads and stores on database news from ...
3
votes
1answer
232 views
Flash Socket HTTP-POST Example
This article provides an example of using the flash.net.Socket class to connect to a socket:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/Socket.html
The example at ...
3
votes
4answers
342 views
RESTful WCF web service POST problem
I can't pass over parameters to wcf web service. My web method:
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
UriTemplate = ...
3
votes
1answer
378 views
Should I URL-encode POST data?
I'm POSTing data to an external API (using PHP, if it's relevant).
Should I URL-encode the POST variables that I pass?
Or do I only need to URL-encode GET data?
Thanks!
UPDATE: This is my PHP, ...
3
votes
4answers
373 views
get data from internet link in android
I am making an application which takes a URL with. *.asp extension and we pass it the required parameters and get some string result using POST method.
Please tell me how can i acheive this. Suggest ...
3
votes
1answer
211 views
How can I use JQuery to post Json data?
I would like to post Json to a web service on the same server. But I don't know how to post Json using JQuery. I have tried with this code:
$.ajax({
type: 'POST',
url: '/form/',
data: ...
3
votes
1answer
267 views
CSRF token problem on requests from outside the browser to a Rails server
I need to make an HTTP POST request from outside the browser, but the Rails back-end is not accepting the authentication (error 401). I know I need to pass a CSRF token in such cases, but it's not ...
3
votes
1answer
361 views
Posting a video in Facebook through android by using HttpPost
I'm new to Android and I'm trying to develop my own APIs regarding facebook.
I have succeeded to some extent but I have a problem in posting data like videos, comments, photos etc. Can anyone please ...