Questions tagged [html-post]

56 questions
2
votes
2 answers

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 first 2 pass and the third one (the scenario I…
Alex Kreimer
  • 1,106
  • 2
  • 11
  • 25
2
votes
1 answer

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 of the file being uploaded. How it uploads…
Jordan Majd
  • 63
  • 1
  • 5
1
vote
1 answer

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 is approximately 1 byte/second and I'm trying to…
user1119112
  • 807
  • 1
  • 8
  • 10
1
vote
1 answer

Scraping Data from .ASPX Website URL with Python

I have a static .aspx url that I am trying to scrape. All of my attempts yield the raw html data of the regular website instead of the data I am querying. My understanding is the headers I am using (which I found from another post) are correct and…
1
vote
1 answer

how to submit form without a name for the button using jsoup post request

I'm trying to POST data into a website to make a login into the site using Jsoup. This is the html form:
Allanj
  • 13
  • 6
1
vote
2 answers

Form not POST ing

this is my view where there is a form containig a field and a submit button.
Bloodhound
  • 2,906
  • 11
  • 37
  • 71
1
vote
0 answers

Recieving html code as response when posting username/password to server

I am trying to post a username and password to a website and instead of getting an incorrect username/password message it is giving the HTML code from the webpage. What is the reason for this? I also tried posting a username and password to the…
1
vote
1 answer

uploading png to server with java using POST data

Hi ive been having some trouble trying to transfer a png image to my webserver using java and php Ive tried using FTP but the software that Im scripting for blocks port 21 rendering it useless I was directed to use form urlencoded data then use a…
James Bartram
  • 61
  • 2
  • 6
1
vote
1 answer

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 inspect posts using javascript. Thanks
Chopo87
  • 1,240
  • 4
  • 19
  • 32
1
vote
1 answer

HTML form not taking values of text field

Hello here is my form in HTML …
KAsh
  • 304
  • 5
  • 23
0
votes
5 answers

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. But I want to know the source from where the post…
maxxon15
  • 1,559
  • 4
  • 22
  • 35
0
votes
0 answers

Typescript post request not entering controller, but Postman works

Angular 15, dotnet core 7 POSTMAN: does a post of https://localhost:7270/api/Account/login the login parameter is a json with username and password It runs in the controller just fine and returns correct data. Angular Typescript creates a loginDto…
Yogi Bear
  • 943
  • 2
  • 16
  • 32
0
votes
2 answers

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 see what the error is. Any idea on what I do? I…
adit
  • 32,574
  • 72
  • 229
  • 373
0
votes
1 answer

Aspnet.Core MVC, how to bind a list of a group of inputs?

I am using aspnetcore mvc, dotnet version 6. I am trying to get inputs in a view. Code below i am trying to get buyer users and delivery users in a list. But i can't bind them in a list of model from controller. Here is my codes: public async…
user8599026
0
votes
5 answers

How to tap to copy html text in flutter app

My developer is building an educational app for me and we kind of have a problem. I want to know how to tap a word or phrase on the screen to show copy, highlight, web search like the image below. The app was built with flutter and the code is in…
Mr Man
  • 67
  • 1
  • 8