Tagged Questions
1
vote
2answers
32 views
Rails validating post request
Is there a gem or easy way to validate a API post request? For example I am always expecting a field to be either present or always a string and if it is not to ignore the request all together.
Or ...
2
votes
2answers
69 views
How bad is it to use @POST to retrieve data?
I am currently using a @POST web service to retrieve data.
My idea, at the beginning, was to pass a map of parameters. Then my function, on the server side, would take care of reading the needed ...
0
votes
2answers
27 views
The remote server returned an error“ (400) Bad Request. ContentType = ”text/xml; charset=utf-8"
I have a simple WCF POST that posts a simple XML to the service.
This is the service contract.
` [ServiceContract]
public interface ITest
{
[OperationContract]
[WebInvoke(Method = "POST", ...
0
votes
1answer
17 views
Slim framework php GET and POST
I trying to figure how restful apis work in php. How does the code get the information passed for example from a javascript browser plugin (what I am working on). Is it through GET or POST? Can ...
0
votes
1answer
21 views
Django - doing an internal view post
I have a Django app that has two view requests. The first request ("add_item") is the add request, which does some validation and then ultimately adds an item to a user's queue. The second request ...
1
vote
1answer
27 views
How to post array values via curl?
I like to test an API backend which is designed as shown in the following example:
http://localhost:3000/api/v1/shops/1.json
The JSON response:
{
id: 1,
name: "Supermarket",
products: [
...
0
votes
2answers
23 views
Post with Jax-RS
This really should be a simple question, and I apologize but I just can't seem to find the answer. From my understanding you can take in an object and have it use say a bean in Java EE to produce this ...
0
votes
1answer
16 views
Rest reading a long using @QueryParam always returns 0 when using @POST
I send the following ajax call to my JBoss server (using jQuery):
$.ajax({
type: "POST",
url: "http://localhost/services/v1/online/123/abc",
data: {
"status": 100
},
contentType: ...
0
votes
1answer
22 views
Large python JSON post request times out
I'm trying to post some data using python, essentially a very large JSON file (around 420kB). The problem is that it works fine when it's posting to a local server, but times out for any external ...
0
votes
0answers
35 views
Send a file and a parameter by POST HttpWebRequest (mode REST, C#, .NET) [duplicate]
I read so many posts about this problem but i never found solution.
I've got a PDF file (Infos.pdf) and the id of this file (id=111).
I want send this at a WebService by POST method.
I think that my ...
1
vote
2answers
50 views
Python - How to make REST POST request
I have implemented a REST service with Java:
@POST
@Path("/policyinjection")
@Produces(MediaType.APPLICATION_JSON)
public String policyInjection(String request) {
String queryresult = null;
...
1
vote
2answers
52 views
How send a PDF by POST HttpWebRequest in C#
(i'm french, sorry for my english)
I don't find / understand how send a simple PDF file by post request at a webService (REST protocol).
I tried some examples but it's doesn't word. And when i use a , ...
0
votes
1answer
53 views
POST method to grails resource - Unsupported Media Type
I would like to send some data with POST to my grails application.
I have got a really easy domain:
class Step {
String name;
Long taskId = -1;
static constraints = {
}
}
I ...
1
vote
1answer
107 views
Spring mvc RestTemplate postForObject doesn't send parameter to REST API
I have a REST API. I'm making a client.
I configured spring security to authentication by my rest service.
My REST API controller
@RequestMapping(value = "/login", method = RequestMethod.POST, ...
0
votes
1answer
45 views
How to make POST request in Restler Client?
I'm using Restler 3 library and I want to make a post request from php .
I tried this way :
POSTing JSON Data With PHP cURL
$data=array('name'=>'ddddd','email'=>'sdfsdf@sdgdsg'); ...
-5
votes
0answers
93 views
POST in REST Web Service on PHP [closed]
Please let me know how to submit form with POST method using REST Web Service in PHP.
I have one form which contain text fields as well as file field.
I want to upload file and insert data in to ...
0
votes
1answer
37 views
request body on Server side is an empty array, express node.js REST
So I've searched all over for the answer, can't seem to find one
I'm making a nodejs app, and at one point I want to POST data in the form of a JSON to my server. Here is what I have in my 'users.js' ...
0
votes
4answers
49 views
GET request on page removing POST information
I have a page called test_photo.php, which people get directed to from a form after doing a POST request
<form id="search_photos" action="test_photo.php" method="post">
<select ...
0
votes
0answers
22 views
Wavemaker RESTful web services post data
I am trying to create a simple page to send an api post and create a new account.
I have managed to do most of it using the REST(build a service) however I am not sure how to send the postdata.
I ...
0
votes
0answers
121 views
Powershell Invoke-RestMethod POST Method timeout issue
I'm trying to write a program that deletes files from a specific device. The device has a REST API and I can access it from the CLI without any problems.
For example if I write this in the CLI, it ...
1
vote
3answers
130 views
How to send JSON data as parameter from Android to Jersey RESTful Service
I am creating a login function for my Android app which will be connected to a Jersey RESTful web service. As part of the service call I will be sending a JSON object, but my problem now is that I do ...
0
votes
0answers
44 views
import or INSERT in a Google Fusion table?
I have doubts whether I should use import or (as I was doing right now), use INSERT sql statements when inserting quite a lot of rows (10K+) in a Fusion Table.
Documentation suggest to use import ...
0
votes
0answers
111 views
How to associate a HTTP POST request with a Jersey class method?
I want to use Java Jersey RESTful API to make a POST request when the user submits a web form containing some customer information. My web form uses a simple POST method:
<form ...
0
votes
1answer
38 views
Ruby -> RestClient::Resource -> post -> arguments
I do constructed RestClient wrapper
require 'json'
require 'rest_client'
$url_common_part = 'http://host:port/cgi-bin/cgi_script'
class Grabber
def initialize
@site = ...
0
votes
1answer
15 views
What is better to use with cURL to make parameterized query
I am developing mobile application and now I'm preparing server API.
There will be search bar and user will be able to search other people by using mutliselects, inputs (just like web form).
And now ...
0
votes
1answer
38 views
Restful Get Json from URL by POST method and add to DB?
I have a postAction in my Controller. Then I send JSON by curl with POST method
{
"first_name":"Nguyen",
"last_name":"Tien Hai",
"dob":"1991-07-09",
"sex":"F",
"address":"80\/280 ...
0
votes
0answers
46 views
Post media in RestSharp doesn't work
I want to attach a file to post request, but it doesn't work.
public override string Post(string url, object payload)
{
IRestRequest request = CreateRequest(url, Method.POST);
...
0
votes
0answers
41 views
POST to PHP file doesn't work in Fiddler
I have this very basic PHP file uploaded to www.example.com (not local):
<?php
header('Access-Control-Allow-Origin: *');
echo $_POST['var1'];
?>
I composed a simple test in Fiddler as below
...
0
votes
0answers
57 views
Neo4j Rest Calls Using Java( not in embedded mode)
I am actually using the community plugin in Neo4j and trying to make POST requests through java to query neo4j server.
I am always getting a java.io.IOException: Server returned HTTP response code: ...
1
vote
1answer
459 views
Rest WCF Post Json body parameter is always null while using Fiddler
I have been struggling with this the past few days. I have researched the issue and tried the solutions posted. However it has not worked. I have REST WCF Post method that has
...
1
vote
1answer
80 views
How do I do a basic REST Post with Requests in Python?
I am having trouble using Requests
The API I am testing indicates the parameter device_info to be POSTED in the message body. It also says that the device_info as a form field. In all the ...
0
votes
1answer
190 views
Java: send POST HTTP request to upload a file to MediaFire REST API
I need to send a HTTP POST request to the MediaFire REST API from a Java web app running in Google App Engine, in order to upload a file.
Please see upload function documentation here (few lines).
...
1
vote
1answer
93 views
Nancy : use array of data from POST request
I need to send an array of object from my web application to my Nancy web service in order to update my database.
Sending just an object, it works fine : in my web method, I get the data using ...
0
votes
0answers
118 views
Sending files to REST server using POST - premature FIN/ACK from server
I'm writing an app for Android which is supposed to send files to REST server using POST request. Reading through wireshark logs, it seems, that the server sends FIN/ACK before client sends whole ...
1
vote
1answer
592 views
Pass array of data from Angular $http POST
I need to pass an array of object from my Angular application to a .Net web service with Nancy framework.
I tried this :
function TestCtrl($scope, $http){
$scope.postTest = function(){
...
0
votes
1answer
37 views
How to run HTTPPost call service?
I have RESTfull service (Let say, http://apc.tr.re.er:5050/testxyz/service/loaninfo/) and i need to run POST service. I am using following classes :
HttpClient client = new DefaultHttpClient();
...
2
votes
1answer
84 views
Node.JS Odd Behavior Receiving Post Data
I am sending XML data in a post request to my node.js server. The server is setup to accept post and have been running tests without an issue through CURL. Now I am attempting to get this same data ...
1
vote
1answer
95 views
can REST post/put have request parameter and no request payload
I am working on REST APIs.
can REST API post/put can include request parameters without a request payload?
where I can find the standard REST specifications
1
vote
0answers
52 views
POST file directly from string in Ruby
I have a string:
text = "a bc def" and need to send it to a REST API call which uses 'multipart' to take a POST call with a file. Looks something like this:
post '/upload' do
tempfile = ...
1
vote
1answer
123 views
Is it possible to add an item to a site level list in Sharepoint 2010 with REST API?
I have a site which I am currently able to retrieve/add/delete list items:
http://portal/_vti_bin/listdata.svc/Announcements
I can retrieve data from the following url:
...
0
votes
1answer
76 views
Get or create unique node (create) ocurre Error 415 Unsupported Media Type
When i use chrome extension Postman test "17.11.1. Get or create unique node (create)"
I got some exceptions:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; ...
0
votes
1answer
84 views
How to best represent dynamic game actions in a REST API?
I want to create a simple card game and put all the game logic server side. The client app will then interact with the backend via a REST API.
I have a part of it figured it out, however I'm ...
1
vote
0answers
40 views
REST: Prevent creation of duplicate resources via conditional POST?
I've been searching for best practices for preventing the accidental creation of duplicate resources when using POST to create a new resource, for the case where the resource is to be named by the ...
1
vote
1answer
235 views
Sending application/xml POST message to REST API doesn't work
This is the POST method with JAX-RS annotations:
@POST
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.TEXT_PLAIN)
public Response storeUser(User user) {
boolean wasStored = ...
0
votes
0answers
103 views
Combine x-www-form-urlencoded with HTTP POST body data
Is it possible in standard clients/servers like jQuery to combine a HTTP POST request using application/x-www-form-urlencoded but also send a data payload in the POST body?
Or phrased differently: ...
0
votes
0answers
95 views
WCF-REST POST Methos not work with C# Winform Client with multiple User defined Complex objects
I want to create WCF-REST Service which can Have JSON/XML input & Output.In POST Method if i take MessageBodyStyle.Bare it works but only for Single Parameter but i want it to work for Multiple ...
-1
votes
1answer
62 views
SOAP, REST or plain HTTP POST for sending file and other data to different domain?
I am in the process of creating and negotiating a specification for some new functionality on a web app. The new functionality includes enabling users to send PDF files along with some other data (a ...
-1
votes
2answers
111 views
How to make http/https POST requests manually? [closed]
I want to test some url's on a small custom server i am working on.
i have used Wfetch on windows and its awesome
My requirements for these tests are:
- should be able to run on linux(ubuntu)
- ...
1
vote
0answers
91 views
WCF Rest : DataContractSerializer - serialize an object whose name contains a colon
Hi to all I need to Get XML Custom from my WCF/REST but the name of my property is not serialized as I wish because it contains a colon.
My DataContract for an error response
[DataContract(Namespace ...
3
votes
1answer
107 views
TWebResponse is not parsing my posted files
I have a simple DataSnap REST server, on the TWebModule I have added a action to listen to a POST request on the path "/upload_file".
On the onAction event I have this code:
procedure ...



