0
votes
0answers
10 views
vb6 http get method returns the same response
I have code:
...
MsgBox GetHTMLSource("http://...par1=" & 1 & "&par2=" & 2)
...
Function GetHTMLSource(ByVal sURL As String) As String
Dim xmlHttp As Object
Set xmlHttp = ...
0
votes
2answers
36 views
HTTP GET not working in AngularJS?
Here is my controller, being served from localhost port 80:
function ListCtrl($scope, $http) {
$http.get('/api/moz').success(function (data) {
$scope.moz = data;
});
}
And the ...
0
votes
0answers
17 views
API: GET data and POST to site from a server
I need to send a command to a sever to check data (domain availability), return the data then post it to the site.
The code provided is as follows:
...
0
votes
3answers
28 views
escaping ampersand in url
I am trying to send a GET message that contains strings with ampersands and can't figure how to escape the ampersand in the url.
Example:
http://www.mysite.com?candy_name=M&M
result => ...
-3
votes
1answer
41 views
Learning how to use http requests and javascript [closed]
Say I have this request,
GET /api/pollstar.asmx/functionHere?parameter=value¶meter=value HTTP/1.1
Host: data.pollstar.com
I have tested this with the Postman client and know that it returns ...
0
votes
1answer
29 views
Mule - variable not found
I'm trying to retrieve some variables from a GET http request like
http://localhost:8088/?id=xxx&type=yyyy
using this flow
<flow name="SOAPWebService" >
<http:inbound-endpoint ...
0
votes
0answers
16 views
Is using a redirect when performing a GET request ok / common practice?
In my web application (it's implemented in Grails but the question should be framework agnostic) I perform an HTTP GET request to retrieve some files.
If there are some files, I present them to the ...
0
votes
2answers
22 views
Trying to understand how http GET works , and how to pass parameters in JQuery
I am trying to build a jQuery web page , that when called from the browser (GET request) will get an id as parameter.
For example lets say that the web page written in jQuery is the mypage.com . I ...
0
votes
1answer
16 views
How to handle conflicting HTTP GET param
I'm designing a REST API that supports HTTP GET parameters. In most cases I only accept one value for a parameter. But how should I handle duplicate parameters?
For example, Stack Overflow accepts a ...
11
votes
5answers
176 views
+50
http HEAD vs GET perfomances
I am setting-up a REST web service that just need to answer YES or NO, as fast as possible.
Designing a HEAD service seems the best way to do it but I would like to know if I will really gain some ...
0
votes
2answers
54 views
How to extract the post arguments in go server
Below is an server written in go.
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
...
0
votes
1answer
115 views
GET HTTP request payload
I am designing an API and I wonder if it is fine to send a JSON payload on a GET request?
In this other question Payloads of HTTP Request Methods, we can find according to this link:
HEAD - No ...
-5
votes
0answers
44 views
Using HTTP GET to store an run an sql query [closed]
I wrote a simple webpage(let's call it select.php) in php and there exists a link that when clicked will take the user to a different page called edit.php. In select.php, the user enters some text ...
-1
votes
3answers
60 views
$_SERVER deprecated, how to $_GET http_referer? [closed]
After searching and trying to code around the issue, I am going to ask it here.
I am trying to code in accordance with the php manual, and would like to avoid to use deprecated functions.
Which ...
0
votes
0answers
57 views
NodeJS + Redis + HTTP Get
I'm currently getting data from my database by the way of PHP using Nodejs.
The problem is that the script that I want to execute after grabbing datas is actually executing directly after the instance ...
0
votes
0answers
57 views
Get Request not working for a friend but for me it does
So I've been learning how to receive data while passing some parameters with more data to and from a server using GET,but can't figure out why it's not working for a friend(it works perfectly fine for ...
1
vote
0answers
35 views
checking cacheability of a specific URL object via HTTP HEAD request
I'm focusing on the use of HTTP HEAD request
to know if the specified URL object is cacheable.
For static file objects, I can always know it's cacheable.
When using the method for a query-type ...
0
votes
2answers
121 views
Add query parameters to a GetMethod (using Java commons-httpclient)?
I followed this other SO question to set parameter for the URL but it was giving error:
The method setQueryString(String) in the type HttpMethodBase is not applicable for the arguments ...
0
votes
1answer
15 views
Pass alternate attribute as GET
I have the following input:
<input id="whereInput" type="text" name="where" placeholder="around..." geodata="-73.6050237,45.5511518" value="Current Location">
I want to pass the geodata as ...
0
votes
1answer
18 views
Should mutations always use POST?
Philosophically, I am accustomed to always using GET for HTTP requests that do not alter state, and POST for requests that do. However, lately I have run into some difficulties with this that have ...
-3
votes
0answers
34 views
How to send post request for nested structure using javascript [closed]
Hi All I have been asked to sent post request in this structure where nested URL are used
How to do that please suggest me
<entry ...
0
votes
1answer
80 views
Wireshark not displaying GET or POST data
I'm a student and I'm taking my first networking class. I'm working on an assignment designed to get me used to using Wireshark and understanding packet transfers. Part of the assignment is to collect ...
0
votes
1answer
46 views
Perl While Loop to send HTTP Requests
I need help writing a script to send 25 requests then close the socket and start a new one.
This is what I have so far:
while ($count<25) {
$count++;
die "Could not create socket: $!\n" ...
0
votes
0answers
44 views
Controlling my Roku using GET command
I can successfully send a 'select' command to my roku as in this file:
https://github.com/onaclov2000/roku/blob/master/roku.js
var http = require('http')
var dgram = require('dgram'); // dgram is UDP
...
0
votes
1answer
75 views
Extracting the post body from an HTTP response
I am trying to use httpClient (by apache) to post and get data. Posting is absolutely fine and my code for that has no issues, however, I cannot say the same for getting data.
The website I am ...
1
vote
4answers
48 views
Redirect with URL editing? (remove some 'GET' data)
Right now there is a page redirection using
header("Location: {$_SERVER['HTTP_REFERER']}");
but the URL that the page is redirecting to is something like:
...
0
votes
0answers
50 views
Sending data from osx app to python script on server
i'm trying to send a string from an osx app to a python script hosted on my PC (Apache 2.22 -->cgi-bin) with the POST method; i've written with the help of some guides this code below for the sending ...
0
votes
0answers
82 views
Get HTTP Response from a url by using C#
Environment: ASP.Net MVC 4 using C#
I need to get image by using GET request to a URL /inbound/faxes/{id}/image
I used the code below
HttpWebRequest request = ...
2
votes
1answer
122 views
Node.js HTTP request not returning full response
I'm making a HTTP request using Node's http module, but on data, the chunk returned doesn't seem to content the full request response. Here's my code:
var req = http.request(httpOptions, ...
0
votes
2answers
132 views
java.net.MalformedURLException: no protocol: /intl/en/policies/ GET Request
I've been working on making a simple program that runs through all the links in a page, and visits them, then recurses. But it seems to stop as soon as its run with the error
...
2
votes
0answers
161 views
Handling jQuery $.ajax response data
I'm requesting an OAuth request_token with a jQuery $.ajax. I get the token as an HTTP response:
...
2
votes
2answers
1k views
Angularjs issue $http.get not working
I am a novice to Angularjs and tried to follow example given for $http.get on angularjs website documentation.
I have a REST service, which when invoked returns data as follows:
...
4
votes
2answers
125 views
get http url parameter without auto decoding using PHP
I have a url like
test.php?x=hello+world&y=%00h%00e%00l%00l%00o
when i write it to file
file_put_contents('x.txt', $_GET['x']); // -->hello world
file_put_contents('y.txt', $_GET['y']); // ...
1
vote
1answer
28 views
Joining concurrent/identical HTTP GET requests?
Do browsers join concurrent identical HTTP GET requests? At least, for static or cache-able content?
That is, if something like this happens:
| AJAX/HTTP-GET(resourceX)
| [start ...
0
votes
1answer
107 views
How can I make a http partial GET request in Java
I'm trying to make a partial GET request and I expect a 206 response, but I'm still getting 200 OK. How can I make it responded with a 206?
Here is the code I wrote:
HttpURLConnection urlConn = ...
1
vote
1answer
84 views
Javascript truncated over Servlet Connection
I have written a Servlet that should act like a web-proxy. But some of the Javascript GET calls only return part of the original content when I am loading a page, like ...
0
votes
0answers
57 views
how to save a http get method return png file
I have a quesiton,
there is a http get method URL, like this:
http://tile0.tianditu.com/DataServer?T=A0512_EMap&X=1&Y=0&L=2
also I can adjust the parameters to
...
0
votes
3answers
136 views
How to pass multiple variables on submit?
I have a little form:
//GET the unit and community id
$UNIT = $_GET['unit'];
$COMID = $_GET['comid'];
...//i have echoed $UNIT and $COMID to ensure that they do have values
...
<form ...
1
vote
1answer
50 views
GET Request error, Uncaught SyntaxError: Unexpected identifier OPTIONS
I appear to be getting a very strange error when sending a get request, I am running both the
PHP and the javascript code on the same server, so no origin problems. Errors:
Uncaught SyntaxError: ...
0
votes
0answers
48 views
Does disallowing some concurrent GET requests violate RFC 2616 (safety/idempotency)?
I'm currently debating the question on wether disallowing concurrent GET requests on a given resource constitutes a violation of RFC 2616 (especially the idempotency and safety properties required for ...
0
votes
0answers
31 views
Ruby NET::HTTP version, no method for 1.1
i am trying to make a simple get request with some get-parameters to a
tomtom api. Problem is, i get an 505 HTTP version not Supported Error.
I looked up the HTTP Confs and found out, that ruby uses ...
-2
votes
2answers
34 views
Is there any action I could do with POST, but not with GET?
I know differences and advantages of each command, my question is could I replace POST requests with GET everywhere? And which these commands calls by default while sending request from html form?
0
votes
1answer
188 views
How to save a file sent from a http response without including the header
I am trying to write a program in java which is able to download a file from a URL. I want to do this without using an URLConnection, instead i am just using TCP sockets. I have succeeded in sending ...
2
votes
1answer
86 views
ASPX Losing Session when switching from HttpMethod POST TO Get
Recently I have been asked by a client to log into a legacy site using POST and not GET (from a 3rd party site), All of the needed variables are now sent within a post instead of a query string.
The ...
1
vote
1answer
107 views
StreamReader returns empty string
I have the following code:
System.Net.WebRequest req = System.Net.WebRequest.Create(url);
req.Credentials = new NetworkCredential("admin", "password");
System.Net.WebResponse resp = ...
0
votes
1answer
52 views
What http verb to use to send JSON in body?
I have a UI in my webapp that allows users to build fairly complex charts where they can specify chart types, chart axes, ranges, and also specify multiple filters (which can be quite complex ...
0
votes
0answers
73 views
Application send 1 GET request.Multiple POST Received.Wireshark shows multiple GET.Apache HttpClient
I am facing problem while using httpclient
Problem is my code is executing
GET
request once to another application, which is supposed to send POST.
But due to n/w issue, the
POST
is ...
1
vote
2answers
384 views
HTTP Client Bad Request 400
I am trying to learn about how a HTTP client works in Java. I am trying to build my own client that will make a request to a web server for a php file.
Currently when I make the request the server ...
0
votes
4answers
104 views
Redirect post request to get using PHP
I need a PHP script that gets a POST request and redirects it to another page as a GET request with all parameters in the URL.
Is this possibile?
0
votes
0answers
23 views
Combining queries that each trigger a GET request
I have a website which lists entries of a model, say Person. I implemented a search
functionality to be able to search through entries, for each search a GET request is made and a query string is ...




