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.

learn more… | top users | synonyms

0
votes
0answers
15 views

jQuery fadeOut > get/load > fadeIn

Good evenin, basically my problem is, when trying to fadeOut div, load by ajax the new content, and fadeIn that new content, my parent div will lose the "opacity:0" from fadeOut the moment the ...
1
vote
0answers
6 views

How to avoid java.io.IOException: Attempted read on closed stream

I am trying to find a way to avoid the IOException related to the fact that I read on a closed stream. I'm calling a webservice method that returns a Stream: InputStream stream = ...
1
vote
0answers
4 views

Populate Drop Down List Box (DDLB) with two values in Powerbuilder

guys.. I've created a Drop Down List Box (DDLB) in my window (I'm using Powerbuilder 10.5). Once I would call my function, the DDLB would fill with all the different cities from my table. This is the ...
-3
votes
2answers
52 views

Can i access variable inside another variable? PHP

In PHP, is visible to access variable that is inside another variable? in my case i need to access $value (from $output1) and $value (from $output2) independently. how to do that? thanks if ...
-3
votes
1answer
28 views

how to read this xml

<Country Name='EGYPT'> <Destination Name='ALEXANDRIA'> <Resort> <ResortID>5568</ResortID> ...
1
vote
2answers
46 views

$_GET “+” sign causing in mysql search

I have a form that inputs a $_GET and pops this into a MySQL query. It works roughly as I'd expect however: When searching for an item that has spaces in, the $_GET replaces those spaces with "+". ...
0
votes
1answer
32 views

JQuery JSONP request fail [closed]

I've been working on the JC DECAUX api for a while, using AJAX requests to get data (JSON objects). $.ajax({ url:'https://api.jcdecaux.com/vls/v1/stations/6018', type:'GET', data: { ...
2
votes
1answer
22 views

Recording HTTP in Python with Scotch

I am trying to record HTTP GET/POST requests sent by my browser using the library scotch. I am using their sample code: http://darcs.idyll.org/~t/projects/scotch/doc/recipes.html#id2 import ...
0
votes
1answer
23 views

turn http post request to http get

I want to setup a proxy or a standalone aplication where a "server A" can do some POST request to this proxy and turn the POST request to a GET request to "server B". Then the GET response must be ...
0
votes
1answer
39 views

What would a body in an HTTP GET look like?

I realize this is not recommended, but I'm wondering what the URL would look like, for example: http://myserver.com/rest/info?param1=foo&param2=bar how would you append a body to that URL, I ...
0
votes
2answers
49 views

Can't access other variable in php

i have problem here. i need to get $pilihdomain in searh_request.php to use in search_response.php i haven't access it yet. i define like this : settings.php <?php $dbHost = "localhost"; ...
0
votes
0answers
21 views

Trying to get portion of HTML from another website in ASP.NET

I am currently coding a GridView that gets populated by a stored procedure/DB with links in the first column of each row to a job posting. I have generated the correct href for each link and now need ...
1
vote
0answers
10 views

php while fgetcvs function - displaying only last x lines

I have a code that works just fine: if (($handle = fopen("file.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 0, "|")) !== FALSE) { echo $data[0].$data[1].$data[2]."<br />\n"; ...
-1
votes
3answers
23 views

Java Server that accepts GET and POST requests [closed]

Basically I'm just trying to create a java application that runs on some port on local host, and will read queries and send responses. I'm not exactly sure where to begin though, I have experience ...
0
votes
2answers
24 views

Web method ajax get giving 500 Internal Server Error

$.ajax( { type: 'GET', url: 'ProductOp.aspx/getProduct', data: '1', contentType: 'application/json; charset=utf-8', ...

1 2 3 4 5 298
15 30 50 per page