Questions tagged as 'post'

1
answer

Access variable inside and outside a function in javascript?

I'm trying to update some questions on a page, traversing a _for with the number of steps equal to the total of questions, so in each passage inject a question via $ .post (), and wait for the return to only then continue the loop . I do not kno...
asked by 05.10.2017 / 01:16
1
answer

How to use POST in a json for an Http server

I was wondering how can I do a POST from a json to an http server. The code I am using to do json is as follows: Person person= new Person(); product.FirtsName = "Ola"; product.ID = 1;...
asked by 24.08.2017 / 12:10
1
answer

Increase quantity of form inputs sent in post php

I work with a free system and I have a problem in a routine where the system creates an item table, and for each value field of each item an input is created, where name receives the item code, however In this case, there are more than 400 items...
asked by 19.04.2016 / 15:15
2
answers

Error in Android connection with Web Service Restfull

I'm developing an android app for a course in college. I am connecting the Restfull Web Service with the android using the Gson library to pass data. In the method below I am performing a POST request, in that I make this connection via web i...
asked by 07.12.2015 / 21:39
1
answer

Maximum body size of a POST request

I have an APP that sends data via POST to a WEBSERVICE. The problem is that I have a BLOB field (the data inside it is gigantic) and I get to send more or less 30 records per request. My question is, is there a maximum amount of data I can send...
asked by 02.08.2017 / 13:31
1
answer

IF on POST response function does not work [closed]

I have a POST inside a javascript function and this post returns a function answering the problem and that the IF in the response function is not working <script> $(document).ready(function(){ $("#mlogin" ).click(function() {...
asked by 16.01.2015 / 04:41
1
answer

Convert Windows application to Windows Phone - C # (HttpWebResponse and HttpWebRequest)

I have a class in C # for Windows that works normally, but I would like it to work on Windows Phone. The idea is to use the HTTP methods get and post of a web page that has CAPTCHA. I will show the captcha to the user and I w...
asked by 30.06.2014 / 04:49
1
answer

Get parameter passed by POST with $ .ajax [duplicate]

I'm having trouble getting the id passed by the date of the ajax (jquery), what happens is that using $_POST['id'] or filter_input(INPUT_POST,'id') is empty follow ajax: $.ajax({ type:"POST", url: "cursos/area/",...
asked by 26.12.2018 / 12:52
1
answer

WebRequest error C #

I'm doing a POST type request for a URL, but I always get the following error message: "The underlying connection was closed: Unexpected error in a send.". This request is made through a dll that creates in C #, which is used by Delphi. Wh...
asked by 20.12.2018 / 12:57
1
answer

req.body does not work on Express

I'm trying to read parameters sent via post, but express only shows in empty console.log objects. This is the code import * as jsonServer from 'json-server' import {Express} from "express"; import * as fs from 'fs' import * as https from 'h...
asked by 31.08.2018 / 18:00