Postdata is the data sent by an HTTP POST Request, which is one request type of the HTTP Specification. In contrast to the GET Request, it contains a message body which can contain any type of data, like Strings and Binary Data.
Questions tagged [postdata]
193 questions
0
votes
1 answer
POSTDATA without buttons in HTML4?
I have graphs in an html page. The graphs are generated by a call to a cgi-bin program in an IMG tag:
Currently, the data for the graphs is passed as…

David T
- 1
0
votes
1 answer
Angular 2 + Web API - Post data is not working
I am working two projects linked with each other e.g A and B.
In Project A - I've implemented entity framework to fetch data from database.
In Project B - I've implemented Angular 2, fetching data from project A and display it on screen…

Riddhi
- 202
- 5
- 17
0
votes
1 answer
In JMeter Post Data Not Sent In Request When Certain Character Strings Are Included
In a test plan that I am trying to execute, there is a step that includes a post request with post data. One of the parameters in the post data includes special characters. The parameter name is '__RequestVerificationToken'. When the parameter name…

Justin
- 1
- 1
0
votes
1 answer
ASP.Net using multiple form tag and post them to another page
I don't know it's even possible but I try to achieve to post data from one page to another using the second form.
The problem is I need a form tag for the user interface containing callback panels etc. I want to put a second form with some…

Péter
- 2,161
- 3
- 21
- 30
0
votes
0 answers
can't post data with curl in php
I have this script:
$ch = curl_init($url_path.'admin/');
$cookiefile = $srv_path."admin/cookie.txt" ;
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiefile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec ($ch);
//
curl_setopt($ch,…

Gio7
- 33
- 7
0
votes
0 answers
No error with coding, but is unable to get any response from server
I'm trying to send the data over to the server.
I just started learning about Volley Coding, not sure if this is the right way. Cause there is no error to the codes but when trying to send over to the server, it have no response in the logcat other…

Rynn
- 1
- 1
0
votes
1 answer
Simple web server: form post data is encoded in quoted-printable
I'm trying to implement a basic http server code to render a web form and process posted data when user hits submit. Code is hosted here: http://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C
However I'm getting post data in…

Serhan BAKIR
- 59
- 1
- 1
- 7
0
votes
2 answers
POST data to the client view in express js
This is my app.js
var express = require('express');
var app = express();
var port = process.env.PORT || 8080;
var bodyParser = require('body-parser');
app.use(bodyParser.json()); // support json encoded bodies
app.use(bodyParser.urlencoded({…

Ruben
- 144
- 8
0
votes
2 answers
Need help, if none of the checkboxes are checked do something
On my website, the "Sort By Category" works OK when your checking the checkboxes it appends each of each category and hides the rest of the other one.
What I want to do is be able to show all if category items if none of the checkboxes are check, if…

Gabriel Macedo
- 1
- 3
0
votes
1 answer
Find what my Query's POST data is?
This is what I am having trouble understanding and doing.
I need to add a header called sign with the query's POST data signed by my key's "secret" according to the HMAC-SHA512 method. What is my query's post data? And how can I find it so that I…

Pabi
- 946
- 3
- 16
- 47
0
votes
1 answer
Retrieving dynamically generated JSON keys and values
I have the JSON structure below that I'm pulling into my PHP script as a $_POST request. The keys for the Campaign Names and Group Names are dynamically generated so I need to extract those keys so I can then group each campaign with it's group name…

Jonathan
- 323
- 2
- 11
0
votes
1 answer
How to get data in the servlet send via dojo.xhrPost
> var xhrArgs = {
> url: '/mum/proxy/http/localhost:8080/DemoProject/MyServlet',
> postData:' MyDataToBeSend',
> handleAs: 'text',
> load: function(data) { },
> error: function(error)…

snell
- 11
- 3
0
votes
1 answer
How to simulate the browser to login in https website using c++ based on Linux?
everybody,my goal is logging in a https website and downloading webpage using C++ background service program based on Linux.
Detail needs is follow:
(1)connect to "https://www.space-track.org/auth/login"
(2)enter username and password in order…

VictorZhou
- 3
- 1
- 5
0
votes
0 answers
POST login data to android webview
i am trying to doing something like this for my university, User key in their username and password into the textbox, after the user click the login button, my application will post login data to the webserver URL. After successful login, my…

cf chan
- 108
- 1
- 6
0
votes
1 answer
jqGrid postData.filters is undefined
I have a requirement to customize jqGrid. But postData.Filters is undefined. As I am new to jquery and javascript I am unable to find out what exactly is the issue, even after a day of efforts.
I am using the below javascript.

SmartDev
- 3
- 4