The html-post tag has no wiki summary.
5
votes
2answers
322 views
Spring 3.2.x (Web MVC) REST API and JSON2 Post requests, how to get it right once for all?
Before going into details, I know there has been lots of conversations and related questions on Stackoverflow. All of them kind of help me in different ways so I thought I put my findings all together ...
0
votes
0answers
24 views
Get Randomly Generated Form Fields and Their Values
I'm trying to get data from a page that has an HTML form with randomly generated fields.
For example:
<form id="postingForm" action="post.php" method="post">
<input type"hidden" ...
0
votes
1answer
24 views
Firebug: Inspect POST from webpage
Can I use Firebug to inspect a post request sent by a webpage to a server and if so how?
I am refering inspecting a regular POST made using a form, but would also be interested in knowing how to ...
0
votes
1answer
50 views
How to check if the job is done correctly (Python mechanize )
I have this code that is doing this:
1. check some checkboxes
2. delete what i've selected
resp = mechanize.Request('http://some_url/manager.php', data)
cj.add_cookie_header(resp)
res = ...
2
votes
1answer
161 views
ServiceStack/Razor - how to get POST data on submit form?
I'm trying to learn some ServiceStack stuff. For now, I've succesfully completed this tutorial (almost completed): http://www.ienablemuch.com/2012/12/self-hosting-servicestack-serving.html
The next ...
1
vote
2answers
188 views
Python submit post data using mechanize
The url that i have to submit to the server looks like this:
www.mysite.com/manager.php?checkbox%5B%5D=5&checkbox%5B%5D=4&checkbox%5B%5D=57&self=19&submit=Go%21
The post data I put ...
1
vote
0answers
256 views
Microsoft MVC 4 Parameter as XML in POST body
I am new to microsoft's MVC so please forgive my newbie question. We are porting a Ruby/Rails application to MS MVC 4. We will be doing this over time so the .NET MVC must be able to consume ...
0
votes
1answer
176 views
HTML form not taking values of text field
Hello here is my form in HTML
<table border="0" cellpadding="4" cellspacing="4"><tr></tr>
<form method="post" action="<?php echo ...
0
votes
2answers
85 views
Label from view model disappears after submit
Why does the TextFromDb label disappear after submit? How do I fix it? I see that on post it is not in VM.
Controller:
public ActionResult Index()
{
var vm = new TestLabelVM();
...
1
vote
1answer
745 views
JSF Back Button Refresh Page
I have a JSF page which posts data to an external page.
The data is loaded from a JSF managed bean which generates a unique ID in the post data.
I have an issue where a user clicks on a checkout ...
-2
votes
1answer
63 views
How can I redirect a form post to a third party server to an URL without show the posting results in the browser?
I have a form that posts the data into a third party ping post system. If the data is accepted by the third party, a valid response is shown in the client side browser. I don't show the response in ...
1
vote
2answers
220 views
python requests
I'm writing tests for RESTful API POST-verb which sends multi-part form data to the server.
I'd like to json-encode the data. What would be the correct way to do that?
Below are 3 tests, of which the ...
0
votes
1answer
1k views
PHP Warning: move_uploaded_file() unable to move
hello so i've been slowly learning php and have found an array of information on the subject and solutions posted by other developers. I am attempting to have an android application upload a file to ...
0
votes
1answer
238 views
TCP Sockets Listener - Request getting changed from POST to GET?
I have created TCP proxy which listens on port 80 (port 80 is not being used by any other service) for incoming connections. The proxy is able to receive the POST Requests When I use "Localhost" or ...
1
vote
2answers
741 views
How to post special/reserved characters from HTML forms to PHP pages?
I have a form that looks like this:
<form action="/assesment/savelist/" method="post">
<input type="hidden" name="owner" value="<?php echo $userid ?>" />
<input ...
0
votes
4answers
132 views
How to obtain data from a form using method=“post”? How to request it data in my controller?
I am trying to obtain data from my html code like the "acquringCode", "cardAcceptor", and "merchantId". I can't figure how how to obtain that data in my controller. I know its request.form. I believe ...
2
votes
1answer
239 views
Java SE HTML POST filename issue
I'm currently writing a program using nanoHTTPD to upload files to a server. Currently I can successfully upload the file with a preassigned name. However, I would like to maintain the original name ...
0
votes
5answers
185 views
I want to implement a method in a page where I want to know where a POST request cam from
I want to implement a system where I want to know where a POST request cam from.
For example: I have a form with a submit button in it. When the User clicks on the submit button it goes to the page. ...
1
vote
1answer
321 views
Efficient way to send data from Android device to Apache web server
I want to send sensor data from an Android device to a Apache web server. The sensor is connected to the Android device using the IOIO board and is sampled at an regular interval.
The raw sensor data ...
0
votes
2answers
442 views
debuggin jQuery ajax error on POST using firebug
So I have an ajax call to submit my post without refresh, when I click on the submit button I tried to see what is the error on firebug console, however it goes off the screen very fast and I can't ...
0
votes
1answer
546 views
How to send textBox value by POST
I'm using Html.BeginForm and trying to pass the supplied value of the textBox "archName" to the post, How can I do that?
I mean what should I add instead of "someString"?
<% using ...
0
votes
2answers
86 views
View won't pick up post
Can someone tell me why the following view won't pick up a POST request:
# Loads all the latest phone numbers for the models.py file
def client_phones_form_view(request, clientKEY):
try:
...
2
votes
2answers
2k views
Is it possible to send additional parameters when uploading a file in PHP?
I am initializing file upload using the following HTML:
<form enctype="multipart/form-data" action="PHPScripts/upload.php" method="POST">
<input type="file" id="browseButton" ...
5
votes
2answers
649 views
Is the order of INPUTS in a POST guaranteed for array inputs in PHP?
I have a form where users enter an unbounded number of rows of data. They arrive at the form by entering whatever number of rows on the screen that they desire.
<?php
$numRows = ...
2
votes
2answers
556 views
How to support multiple forms that target the same Create action on the same page?
I want to have two separate forms on a single create page and one action in the controller for each form.
In the view:
<% using (Html.BeginForm()) { %>
// Contents of the first ...
2
votes
1answer
505 views
how can I post html content to wordpress with xmlrpc?
I've got a script to post some data to wordpress using xmlrpc.
If I use a simple string for the body like "This is a test" it works fine.
However, if it has any HTML formatting in it, it gets ...
2
votes
2answers
450 views
ASP.NET MVC Forms with both AJAX and traditional POST support
I have a form that I currently enumerate with some Javascript functionality and then post it with jQuery .ajax() to a MVC controller action. I have few questions on my options if I wanted to add ...
0
votes
1answer
1k views
Multipart form post to google app engine not working
I am trying to post a multi-part form using httplib, url is hosted on google app engine, on post it says Method not allowed, though the post using urllib2 works. Full working example is attached.
My ...


