GET is one of many request methods supported by the HTTP protocol. The GET request method is used when the client needs to get data from the server as part of the request-URI.
0
votes
0answers
11 views
executing the method only once in the thread?
Good evening, I would like to run this thread, but when sending a message is duplicated by "onMessageReceivedListener.onMessageReceived (message); within" onMessageReceivedListener "" but thanks to ...
0
votes
0answers
7 views
Are the client URL GET length limits on HttpWebRequest.GetResponse() different between server 2008 R2 and 2012?
In my context i have an webapp, which uses ajax to my own MS WebAPI , and that webAPI then generates an Odata QUery and calls another service.
the issue i am have is happening when my WebAPI runs the ...
0
votes
0answers
9 views
No http handler was found for request type 'GET'
I have read and attempted the repairs in at least 8 threads here to no avail. I am still getting this error "No http handler was found for request type 'GET'" on my default.aspx file when loading a ...
0
votes
1answer
41 views
how to redirect from a form to different page?
I would like to add a form in my page. When I click on the submit button it post some details.
<form action="http://toggletime.net/redirect.php" method="get">
<input type="text" name="url" ...
3
votes
1answer
41 views
GET request for redirect initiated by browser but not successful
While trying to redirect user to a URL, it works with GET requests but not with postback requests.
Through firebug's Network window, I can see the redirect response received by browser after the ...
0
votes
0answers
8 views
Search results with pagination lost $_POST variable on next page, trying to include variable in URL
Although there are a lot of same topics around web and on stackoverflow forum, the solutions given are not what I am looking for, as most of them suggest to use SESSION. What I am looking for is to ...
0
votes
2answers
24 views
How to rewrite function used POST metod to use also GET method in LoadRunner?
For POST method I have this piece of code in LR (it is working):
web_custom_request(transname,
URL,
"Method=POST",
"TargetFrame=",
"Mode=HTML",
"Resource=0",
"Referer=",
EncodingType,
...
0
votes
0answers
7 views
Receive data buffers from HTTP asynchronous request
I've started to develop some stuff in C#, and now I need to listen and receive data that's being constantly sent from a HTTP server in my local machine. The goal is to get the connection with this ...
-2
votes
10answers
50 views
PHP $_GET URL info
I'm trying to make a script that pulls info from the URL such as index.php?picid=33409, and use that number (in that case 33409) to pull up the image that is saved in the database as image number ...
1
vote
4answers
44 views
Javascript: save way to read GET without PHP
I know about GET variables and javascript there are many questions, but I do not understand or get them to work.
I have a html formular, and I need to populate a field with the value of the get ...
0
votes
1answer
42 views
page reload and send post to himself
I have a php page that have $id=$_GET['id']; I want to make a select box that when you click on some option will reload the page (with the GET + a new value number in post).
I did that:
function ...
1
vote
2answers
23 views
R, GET and GZ compression
I am building clients onto RESTful APIs. Some links let me download attachments (files) from the server, and in the best case these are .txt. I only mention the RESTful part since it means that I ...
1
vote
0answers
27 views
XMLHttpRequest GET Server Status is 200 but POST Server Status is 500
I am writing a function in Javascript to post JSON data using the XMLHttpRequest POST method. The following code works fine for GET:
function httpGet(myurl, cb){
var xmlhttp = new ...
0
votes
2answers
29 views
Request url on a save way
I would like to read a url. www.domain.com?cookie=set&redirect=yes
Now I want to use $ _SERVER['REQUEST_URI'] but this does not work with strip_tags and htmlspecialchars.
Also many I read that ...
0
votes
2answers
33 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 ...
-1
votes
1answer
42 views
Explaining an HTTP “GET” request
I have many times successfully implemented HTTP "POST" requests in my projects, more importantly because i could understand how the request worked in my code.
Now i need to make a "GET" request , but ...
-1
votes
1answer
25 views
eregi and urldecode($_GET) [closed]
I've been trying to authenticate this website for a while, and I know it's got something to do with the $_GET being urldecoded twice that would make it vulnerable. I've tried encoding "?id=admin" and ...
0
votes
2answers
14 views
Data tables, get data , js
I'm using this library http://datatables.net/index , to do an dataTable, I receve an json from my api and in Js I use this code...
// Variable to send in Get//
var id = $cookieStore.get('uid');
...
1
vote
1answer
66 views
_GET method php
I am making a textEditor website just for fun for me and I got most of what I am going to do down. But now, I am wondering I am having issue with a transfer of data by _GET method in php and won't ...
0
votes
0answers
50 views
First Time Ajax request getting two url different elements
var memberURL;
var memberAva;
var memberName;
var members = data.find('.userdata');
for (var j = 0; j < members.length; j++) {
membername = $(members[j]).find('.username').text();
...
0
votes
1answer
21 views
Using two GET variables in .htaccess (having problems outputting)
I'm currently trying to add a second get variable to an existing htaccess rule. I have little experience with the htaccess but using what expressions I know, I think it's missing one element to ensure ...
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
44 views
PHP switch case $_GET's variables and switch case $_GET's variable's values
Say I have an URL like www.mysite.com/index.php?login=0. Is it possible to switch case $_GET's variables and switch case $_GET's variable's values?
Something like:
switch ($_GET) {
case 'login' ...
0
votes
1answer
11 views
Extract numbers from a string?! Java
For my program I am trying to figure how I can go about taking a series of number as string entered by the user; extract each number at spaces and parse them into integers.
P.S I am still a newbie to ...
0
votes
2answers
60 views
How to monitor an image source for fully loaded status
I am loading a large number of images into a dynamic DIV and I am using a preloader to get the images.
imageObj = new Image();
imageObj.src = imgpath + imgname;
Each of these events creates a GET ...
0
votes
1answer
24 views
Unable to receive cookie using WebClient
Correct me, if I'm wrong in my thoughts.
As I understand, any new instance of WebClient class will start a new session, generating the new session id.
To prevent this, I should receive a session id ...
-2
votes
2answers
58 views
how to destroy GET value in url after refresh page [closed]
hello i have passed some value in url parameter, actually i did not want this value after page get refresh, i know the header();is used for this purpose but i want instead of it..
if it is possible ...
-1
votes
1answer
51 views
How to get body of get request? [closed]
I'm aware of the specifics of params usage in get http request body. However, just looking for a way how to grab body of get http request.
0
votes
1answer
30 views
python tornado get request url
Here is my code:
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write(self.request.url)
def main():
settings = {"template_path": "html","static_path": "static"}
...
1
vote
2answers
48 views
Load mysqli php data via ajax call
What I'm trying to do is calling some database data via ajax and php. But the ajax call doesn't work, and I can't find out a solution on the web.
So here is my code:
test.php
<?php
include_once ...
1
vote
0answers
33 views
dynamically generated open graph tags are missing parameters from URL
I'm generating open graph meta tags dynamically from url paramaters. When I display the page, everything looks fine and if I check the page source, all my meta tags are generated perfectly. Here is ...
0
votes
1answer
19 views
Reference or find unidentified parent element from within that element
If this question cannot be answered, then I'm going to post a second, "fall back" question.
I have been writing javascript jsonp type apps where the client has to insert a single javascript line into ...
18
votes
4answers
318 views
Using getter/setter vs “tell, don't ask”?
Tell, don't ask principle here is often pasted to me when I use getters or setters, and people tell me not to use them.
The site clearly explains what I should and what I shouldn't do, but it doesn't ...
0
votes
1answer
19 views
opening browser using a get method url
I'm trying to open the default web browser from my application, so far I'm using:
Process.Start("view.html");
And it works, but what if I want to open the browser with an url like: ...
0
votes
1answer
31 views
Replace whitespace with hyphen in URL
I am trying to create a SEO friendly site. At the moment the page works because the id is shown in the URL so like product.php?id=4 however I want to replace ID with the product_name, but the value to ...
0
votes
1answer
66 views
Using two $.get in one. Trying to use as a variable [duplicate]
This is my code
$(function () {
$.get('/viewonline', function (data) {
data = $(data);
var members = data.find('.userdata');
for (var j = 0; j < members.length; j++) {
var ...
0
votes
3answers
28 views
form is sending variables by get method
i got a form.
<form id="site-contact-form">
<div>
<div class="wrapper"><span>Ձեր անունը:</span>
...
0
votes
1answer
60 views
php pass value to multiple select queries
I'm having trouble passing a variable between MySQL queries on the same page. Maybe someone can advise what I'm doing wrong. I'm new to PHP/MySQL, but the answer seems very easy, I just don't see it. ...
0
votes
2answers
29 views
Getting an object property multiple times in a row vs getting it once and storing in a variable. Will the compiler optimize it anyway?
Is it better to store an object property when you access it multiple times in a row? Below is a rather silly example of getting an object property multiple times in a row and two ways of dealing with ...
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
2answers
42 views
Preventing SQL Injections Via $_Get [duplicate]
I have a code on my website that calls upon the pin of a specific row and than echos data from that row. I need to know how i can prevent an SQL injection using the code.
Here it is:
<?php
if ...
-2
votes
1answer
21 views
Using a different way to get data from URL without GET function [closed]
I am in need of a nicer way to get data from a URL, and I want something like this:
---.com/members/424124 (the part of the numbers is just an example)
I want a way to get like an ID from a URL, ...
0
votes
0answers
16 views
Why does Facebook not use _escaped_fragment_ instead of #! in some cases?
I have code in my page that is activated by this (I can output its value in a comment in the header):
isset($_GET['_escaped_fragment_'])
and I'm looking at the source of 'what scraper sees' using ...
-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
0answers
4 views
In Apache, can I redirect a requests for a subdirectory to a URL with a GET value?
I'd like to redirect a request like /agent/john to /agentPage.php?name=john
I've tried adding Redirect /agent agentPage.php?name= to the local .htaccess with no luck.
Is this possible?
-2
votes
2answers
41 views
How can I read a GET element from url via javascript? [duplicate]
My URL looks like this one:
http://www.something.hu/#/ask?kerdesPost=fdasdas%20ad%20asd%20ad%20asdas
I would like to get only fdasdas%20ad%20asd%20ad%20asdas or only ...
0
votes
0answers
11 views
PHP Selenium cannot select specific select box with HTML page that has multiple select boxes
I am extensively using phpunit and selenium with the WebDriver-PHP library provided on the chibimagic.org github page. I have done well as to get this automation working but I have stumbled across a ...
3
votes
3answers
226 views
+50
why does $_GET not work in header-function?
I already have a question with this issue but a further question belonging $_GET and header-function:
I have a multidimensional language site. When calling a page that does not exist, .htaccess will ...
0
votes
1answer
28 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 ...



