POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form.
0
votes
2answers
16 views
submit form to new window without address bar
This code will submit a form to a new window
<form action="..." method="post" target="_new">
But is it possible to make the new window start without the address bar and define its size ?
0
votes
1answer
19 views
Send utf-8 encoded strings in Android HTTP request
I have made a HTTP-post inside my android application. Values are sent as strings from my app to my webserver. Problem is, the values are not in UTF-8 as I want them to be. My webserver has UTF-8 ...
0
votes
0answers
20 views
Set image name and type while uploading to server android
I am trying to convert an ajax program and implement in android. I need to post an image to server with these parameters set using ajax.
options.fileName=fname;
options.mimeType="image/jpeg;
...
0
votes
0answers
13 views
SignPost POSTing JSON Object returning server error 500
A OAuth Service I'm trying to POST to keeps returning an error 500 indicating I'm not formatting something correctly in my request. The only requirement to the .json page I'm sending a POST to is ...
1
vote
1answer
26 views
Returning a GET view after a POST view Fails ASP.NET MVC
I have a View in MVC called Action, which accepts and ID as parameter. I also have another view called Action, but it is marked as HTTPPOST.
The POST version of Action can fail programatically. When ...
0
votes
1answer
24 views
login form requiring loading the page first php curl
I posted this as php/curl but am open to any working solution.
example.com/login.asp has a hidden value inside the login form:
input type="hidden" name="security" value="123456789abcdef"
I tried to ...
1
vote
2answers
31 views
jquery ajax post , trying to post a json , doesnt work
I have a small php server that i developed. The server waits to serve json files that will be sent to him.
I created an html page and i am using jquery to try send a json file to my server.
I have a ...
0
votes
2answers
25 views
Posting using httppost not being received at server end
I am new to Android programming, but have decent knowledge of PHP.
I am trying to send data to my server via post request. I have the following code:
ArrayList<NameValuePair> nameValuePairs = ...
0
votes
1answer
24 views
How to properly form the requestString for a POST NSUrlRequest on iOS when array values are involved?
I need to form a POST NSURLRequest and I need to pass into the request this structure:
inspection (an array of NSDictionaries with string keys and values)
property (same structure as array1)
...
0
votes
1answer
24 views
Android HTTP post not sending post valules
Really having problem with this issue.
The below code suppose to sent to POST values (username,password) to the server and the server should just response with the var_dump of GET and POST.
PHP CODE:
...
0
votes
0answers
35 views
Post android http form
Below is my code,
package com.ord.bus;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.List;
import ...
0
votes
1answer
30 views
Passing value from Android to ASP.net
How do I pass a value from Android to Asp.net web application using http post method?
0
votes
1answer
35 views
One variable in model becomes null after http post
I'm having a problem with my model losing one of its values when submitted in a http post form.
The controller methods:
[HttpGet]
public ActionResult AddTeam(int id)
{
return ...
1
vote
0answers
24 views
Upload document to Server using HttpPost
The application "A" requires to upload a word-file [as a byte array] to a external application using POST.
The filecontent should be added as named parameter in the request body and have to make a ...
0
votes
0answers
28 views
Android - Encoding image and sending it to the server
I am working on encoding the selected image from the gallery and want to send it to the server.
I succeeded to send name and description of the product which is text form.
but, I don't know how to ...
0
votes
1answer
14 views
Persist checkbox values on postback in MVC3
Model:
public class UserViewModel
{
public UserDetail user { get; set; }
public List<int> SelectedRoles { get; set; }
}
HttpGet Action:
public ...
0
votes
1answer
44 views
400 Bad Request when posting JSON Array to a Spring controller
I have been successful in sending a simple JSON object over to a spring framework Controller
curl -v -H "Content-Type: application/json" -H "Accept: application/json" -d ...
0
votes
2answers
50 views
How to recieve data from database back into android
I have created a webservice called "login.php" where I send the id and password information from android. The webservice successfully catches the id and password. I need to compare that id and ...
0
votes
0answers
8 views
Facebook giving post ID but not showing post on wall
Using the Graph API, we are posting to a Page Wall (like page) with a valid extended token.
Facebook gives us a successful post ID and when we check the post via graph it shows:
{ "id": ...
0
votes
0answers
10 views
Can I use http request post with a file object from file picker in javascript?
I would like to upload a file chosen by the user using the method showFilePicker in javascript. I know that we can post files by using input elements in HTML but it's not what I want to do.
The user ...
0
votes
1answer
21 views
Invalid Post Req
Given this Code:
<form action="/site.php" METHOD="POST">
<div align="center"><input type="text" name="thing" size=25>
<input type="submit" value="Something" ...
-2
votes
0answers
32 views
How to get value of <ul> from jquery sortable connected to post variable [closed]
I'm using the jquery sortable connected code from this post
Everything works fine, but now I need to pass the values from the second list to a post variable using an onclick event.
Edited to include ...
0
votes
2answers
31 views
Android HttpPost and Multithreading a few issue
I have an Android application that makes a post request to my .NET Web Api. It works fine but I need some updates to provide better service to user. And this leading some problems for me.
I have ...
0
votes
1answer
37 views
Android HttpPost response returning code of website
I've made the Android app correctly using Eclipse, there are no errors there.
What my app should do -
Send a string to my server which should return another value which I want to display.
The ...
1
vote
1answer
40 views
null on HTTPPost on ASP.NET
My Problem is like this ,Im trying to get a model object from a view after seinding it with a form,the model Looks like this:
public class PackageModel
{
public PackageDTO Package { get; set; }
...
2
votes
1answer
43 views
Android gson serialization issue
I have HttpPost request on my Android application to my .NET Web Api.
I am using json data type and gson class in order to serialize my object.
Here is my code about serialization:
HttpPost ...
0
votes
0answers
41 views
Apache HTTP POST returns 400 Bad Request from IIS 7.5 but not IIS 6.0
WI have created an Apache HTTPPOST object that I use to call a web service running IIS 7.5.
I can set headers, execute the POST, the request works great.
However, if I add a simple string entity ...
0
votes
3answers
34 views
Android URL access crashes [duplicate]
I am trying to access a URL with my Android App, but i keep getting an error. I tried with a new blank project also, to check if i ain't writing the program properly.
The code is the following:
...
2
votes
2answers
56 views
How to upload image in to php server using Multipart
I have been headache , how to upload image in to server.It is new task for me.but big confusing for me.i searched on stackoverflow and googled. but i getting problems.
My intention is Upload photo ...
0
votes
1answer
43 views
jQuery post with form.serialize() receives null
When I post a HTML.Form with jQuery in the following syntax:
$.post('<%: Url.Action("ActionName","ControllerName") %>',
$("#FormName").serialize());
the object is posted ...
0
votes
0answers
13 views
are html get/post methods similar to http get/post verbs
Warninig: noob question
Are 'GET' and 'POST' method definitions different for HTML and HTTP?
This is what i could collect -
HTTP-GET - Requests data from a specified resource
HTTP-POST - Submits ...
1
vote
0answers
40 views
Capture response of form post with input[type=“file”]
I have the following html code:
<form action="@Url.Action("SavePicture", "Pictures")" method="post" enctype="multipart/form-data" id="SavePictureForm" target="my_iframe">
...
1
vote
2answers
59 views
How to Increase item size in Http Post
I am posting data into a IIS web server using C#.
I have used XML and the mode and I am getting an 'Bad Request Error' when posting very long data in one field.
For example,
...
0
votes
3answers
67 views
How to get json object from android to php
i am trying to build a web service for my android app.
But i am having problem to sending parametres to php.
I am using these code blocks to Http-Post.
public String requestJson(String ...
0
votes
1answer
24 views
Why are my querystring parameters being doubled up in the post body of my ASP.NET MVC 4 Application?
Here are the relevant bits of my
Viewmodel:
[Display(Name = "One Per Line")]
public bool OnePerLine { get; set; }
[Display(Name = "Comma Separated")]
public bool CommaSeparated { ...
0
votes
1answer
65 views
Send data from Android to Webservice to be inserted in my database
I'm trying to send a few variables(or data) for registration to a webservice from android throught "httppost" method. Here's the code.
HttpClient httpclient = new DefaultHttpClient();
HttpPost ...
0
votes
3answers
54 views
Http Post Image data in C# .Net
I have implemented a Restful web service in C# .Net and I want to enable users to upload images via this.
What I currently have is a service that only accepts text data. Ideally I need to get an ...
0
votes
1answer
26 views
MVC 4 won't recognise System.Web.Mvc and HttpPost [closed]
I'm trying to implement the Code below for upload functionality but MVC won't recognise it.
[HttpPost] and System.Web.Mvc
give either the does not exist in the namespace error or namespace could ...
0
votes
1answer
42 views
414 The requested URL is too large to process
I have a Google app engine game which deals with coordinates. During a save game operation, I am passing coordinate pairs to my python GAE servers. This is a post. I have started getting this error...
...
0
votes
0answers
37 views
How to use javascript to do a drop down menu on mysql column in a HTML text field?
I would like to create a javascript drop down menu in a text field in HTML, using an MySQL query.
This is my query
select distinct `Column_Name` from `Table_Name` limit 0,66;
I'd like to have a ...
0
votes
0answers
16 views
Android - getting an image from a vb.net service
I have an app where I need to get an image from a vb.net webservice. So far Ive been doing all the communication using ksoap but mostly everything I know how to do easily for getting images from a ...
0
votes
1answer
29 views
What is the max-length of the value for an HTML input form (in InternetExplorer)
I haven't been able to find this anywhere, either because it is undefined, a silly question for some reason I will discover shortly, or because I'm using the wrong terms.
What is the maximum amount ...
0
votes
1answer
52 views
Dealing with complex models in ASP.NET MVC
I have a model that looks like this:
Business
- Branch
- Phone(*)
- Phone Type
- Number
- Opening hours (*)
- Days in week
- Working period (*)
- From ...
0
votes
2answers
43 views
JMeter Raw Body Parsing
I am using JMeter to do load-testing. My test consists of a simple POST request. When I perform this request, the server, in its error logs, says No Payload Detected. I have verified that the server ...
0
votes
1answer
73 views
sending data in Post Method from Android Client to Java Servlet
I implement client server code with java android. the problem is I couldn't be able to connect to servlet. Where is my problem? Here is my code:
android code:
....
HttpClient client=new ...
0
votes
1answer
39 views
Sending Image: post, put or json?
I need to send an image from a client application (Java) to my web server (play framework). However, it needs to be secure - not necessarily as in encrypted but transfer needs to be assigned to a ...
0
votes
1answer
33 views
java: performing website search and getting the result
First of all I have to say, I do not want anybody to do my work for me.
I want to make an java application that will search for data on a particular website. It will look like this:
I will type a ...
1
vote
2answers
38 views
Preventing CSRF and XSRF Attacks for jQuery $.post
I was recently hit by a simple CSRF attack and realized a lot of my ajax scripts are open. These are accessed on my site with $.post().
Is there a way to automatically add a PHP token to all of ...
0
votes
1answer
50 views
How to convert stream reader response to a class object?
I am currently working on some functionality that makes an httppost then get a response.
Here's the code I'm currently working with:
public string SubmitRequest(string postUrl, string contentType, ...
0
votes
1answer
40 views
Whats the correct way to use streamwriter & steamreader?
I'm into uncharted territory - I have to create an httppost for the first time (xml). I've looked at plenty of examples but to be frank, its kinda confusing for a noob.
The function I'm currently ...

