The http-get tag has no wiki summary.
0
votes
2answers
29 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
41 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 ...
0
votes
2answers
31 views
window.open with French characters in the url
I use window.open to open a popup with French accented characters in the url.
When a new popup opens, I see the French characters properly displayed in the url.
ie.
...
0
votes
1answer
28 views
javax.xml.ws.Service fails in constructor because site has username/password
I want to access a web service and this is what the code looks like:
URL url = new URL("http://localhost:8080/sample?ver_=1.0");
QName qname = new QName("http://webservices.sample.com/sample", ...
1
vote
1answer
17 views
ProtocolViolationException when doing a WebRequest with GET
I'm trying to gather data from a public API for a Windows Phone app.
private void GatherPosts()
{
string url = baseURL + "?after=" + lastPostId + "&gifs=1";
HttpWebRequest request = ...
0
votes
0answers
30 views
TCP Redirection
I need to implement a TCP redirection module (sitting between the actual client and server) which does following:
If the site requested in HTTP GET is cnn.com then redirect that packet and ...
-3
votes
4answers
67 views
Please explain $.get() function to me [closed]
$.get("test.php", function(data) {
alert("Data Loaded: " + data);
});
What exactly can I expect to be inside the data parameter of the callback function after requesting for test.php?
Secondly, ...
0
votes
0answers
45 views
ClientProtocolException Android
So I am trying to browse to a localhost webpage with my android device. When I put the following url in my Android browser it works:
http://192.168.x.x/timecode
But when I try to access via ...
0
votes
1answer
88 views
httphostconnectexception connection refused
I know there are lots of questions about this matter but I just could not find an answer to this one in specific. I am trying to access
HttpClient client = new DefaultHttpClient();
...
0
votes
0answers
27 views
Calling Blogger API from Android with HTTPGet
I'm trying to access the google Blogger API from an Android App. I have gotten OAuth2 working and it seems to be returning valid OAuth tokens. Here's what I'm tryiing to do:
My url is formed like ...
3
votes
1answer
43 views
Using tcpdump to watch which websites are accessed on my network
I've just got my hands on a Raspberry Pi and I've set it up to act as the DNS and DHCP server on my home network. This means that all network requests go through it before they are released into the ...
0
votes
1answer
52 views
Extracting data from server takes too much time- android
I have a android application, where i extract data from the multiple urls and save then as arraylist of string. It works fine, but for fetching data from 13 urls, it takes close to 15-20 sec. Where as ...
-1
votes
1answer
47 views
Optimal networking [closed]
I am trying to make the networking part of my app more stable, more optimal, since I recieved some issues, stating it takes too much time for the queries to run. Before I share the pieces of my code, ...
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
1answer
45 views
How can I structure a REST API endpoints for MS Web Api cleanly?
I have a data model called PIM (Product Info Manager) that requires that I pass a company AppId for every request. So if I want to get all the products I would pass a Company AppId and the resource ...
1
vote
1answer
31 views
Undefined variable error in php while updating value from android
I am trying to update a field in database but getting undefined variable error from my php page...
My code is:
Intent myintent = getIntent();
//mdate = intent.getStringExtra("mdate");
...
0
votes
1answer
31 views
Illegal Argument Exception at query index 70
I am trying to update my database field with some value with respect to value send from edit text values ...
My code is:
Intent myintent = getIntent();
//mdate = intent.getStringExtra("mdate");
...
0
votes
0answers
31 views
just getting a partial of result from server, httpGet, android,java
I am learning Anroid now and I am working on how to fire a request and receive a result from server. What I am doing is
// Button Click Event
btnLogin.setOnClickListener(new ...
1
vote
2answers
56 views
Can't execute GET request from Win8 app
I tried to do GET request, and i have an InnerExeption:
{"Unable to connect to the remote server"}, {"An attempt was made to access a socket in a way forbidden by its access permissions ...
2
votes
6answers
86 views
Error with JSON data Android Illegal Argument HttpClient
I'm having trouble with JSON transfer in Android. I receive the following error in LogCat.
04-29 04:47:11.362: E/Trace(851): error opening trace file: No such file or directory (2)
04-29 ...
0
votes
1answer
28 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();
...
0
votes
0answers
49 views
Django Unit Test: Exception on File Download
I'm using a Django Unit test to try and test a file download. It works as an API call, with a required token as a GET parameter, but nothing special. Code is:
from django.test.client import Client
c ...
0
votes
1answer
72 views
java http GET - result parsing
With my application I am connecting to a php scrip which is on http server (GET method). I am reading a result with buffer reader.
public String updateOsv(String urlToRead) {
URL url;
...
0
votes
0answers
41 views
java read parameters values with http get
What I want to do is to connect my application with my php script which is on a http server. That script is currently printing out values of 3 parameters in this order : id_miestnosti, zapnuty, ...
2
votes
1answer
64 views
IllegalStateException: Content has been consumed (on first getContent())
private HttpResponse doResponse(String url) {
HttpClient httpclient = new DefaultHttpClient(getHttpParams());
HttpResponse response = null;
try {
HttpGet httpget = new ...
0
votes
5answers
67 views
Android I can't get xml from url
I'm trying to get an xml from a url, but I have a bug in HttpResponse.
The URL is for example as follows:
...
1
vote
1answer
53 views
How to httpPost() to covert httpGet()?
The httpPost() java class here,
public String getXmlFromUrl_NewRegistration(String url,
String username, String firstname, String lastname, String email,
String password) {
String ...
1
vote
1answer
153 views
Connection to url unauthorized
Itry to create a connection to an URL to check the last content modification, with the created username/password as basic authentication. The returned modification time should be checked with the last ...
0
votes
1answer
33 views
Why does the back button not work with HTTP POST?
What is the reason that we cannot use the browser Back button when we submit a page using HTTP POST? But it is fine with HTTP GET? I have read that the browser tries to prevent multiple POSTS (to ...
0
votes
2answers
49 views
Authentification with HttpClient and httpget in API level 4 in Android application
I want to make a request with an authentification on an android application with api level 4, HttpClient and httpGet.
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response;
...
0
votes
1answer
180 views
How do I issue an HTTP GET from Excel VBA for Mac 2011
I need to issue an HTTP Get with a query string to a web service from Excel for Mac 2011. I've seen the answers for using QueryTables (How can I send an HTTP POST request to a server from Excel using ...
0
votes
1answer
33 views
Amazon receipt verification
Can anybody help how to implement their receipt verification system? I set up the sandbox environment, and it works: when I enter the URL to the browser, it displays the correct answer. However, I ...
0
votes
2answers
84 views
XMLHTTPRequest response doesnt contain Location field in the header
I was trying to modify the adblockplus code for testing purpose. I was modifying the code to send a http get request on a URL and get the final URL from the response. I tried using the below code, but ...
0
votes
0answers
31 views
cURL unable to interpret hostnames, proxy issue?
When using cURL from my ubuntu machine to merely GET from a remote machine, I seem unable to resolve the hostname and just get a Proxy Issue - The proxy has encountered an error (Error 21: Server ...
0
votes
1answer
32 views
URISyntaxException while trying to build an httpget link
I'm getting an URISyntaxException exception while trying to do the following. I have absolutely no idea whats causing the issue. it would be nice to get some help. The error is located in the last ...
1
vote
3answers
200 views
Standardized way to serialize JSON to query string?
I'm trying to build a restful API and I'm struggling on how to serialize JSON data to a HTTP query string.
There are a number of mandatory and optional arguments that need to be passed in the ...
0
votes
1answer
26 views
How to place parameter so that rails request can find it
I have the following piece of ruby code:
authenticate_this(request.env["SOME_ID"])
What I want to know is how do I place this "SOME_ID" within the HTTP GET request.
From what I understand, these ...
0
votes
0answers
39 views
Getting UknownHostException when doing HttpGet in Android
Hey guys so I am getting an UknownHostException trying to do an HttpGet request. I am basically trying to get a json object online and put it into Android and parse it. The problem is how to get that ...
0
votes
0answers
358 views
How to avoid java.net.SocketException: Socket closed in android HTTP get?
I am getting data for my android application from RESTful web service via HTTP client.
It is working perfectly on emulator and SonyErection XEperia(ICS) phone with out getting any exception.So my ...
0
votes
1answer
94 views
Java, How to get connection response code from HTTP POST method?
I can get data when I'm using following code:
private static String getHttpPostContent(String address, String token) {
try {
HttpClient client = new DefaultHttpClient();
...
1
vote
1answer
108 views
How to catch post/get variables with Powershell httpListener?
I want to know how to catch url vars with powershell system.net.HttpListener
Thanks
$listener = New-Object system.net.HttpListener
$listener.Prefixes.Add('http://127.0.0.1:8080')
$listener.Start()
...
0
votes
2answers
63 views
Unable to fetch and display JSON in Android
I am building a complex application however I am having an isolated problem. My Android application class UserPage.java should be able to fetch a String from a webpage and then pass that over to the ...
0
votes
1answer
118 views
Make REST call in JavaScript without using JSON?
(extremely ignorant question, I freely admit)
I have a simple web page with a button and a label. When I click the button, I want to make a REST call to an entirely different domain (cross-domain, I ...
0
votes
1answer
85 views
Android get request returns incomplete data
As the title states, Im using httpget in android, and its working. However, it's returning incomplete data. the call is returning roughly 99kb of json data. However, My function is only producing 38kb ...
0
votes
0answers
122 views
android retrieving large string from HttpGet
I have an httpclient class i created. Within it i have a static method, "retrieveHttpGet(String url)", that returns a JSON object.
I'm using my own web API as the endpoint to retrieve data. ...
0
votes
1answer
110 views
Yummly API returns strange characters in JSON response (Android)
I access the Yummly database for recipes in my Android app using the html query:
http://api.yummly.com/v1/api/recipes?_app_id=MY-APP-ID_app_key=MY-APP-KEY&q=KEYWORD
Even though their ...
0
votes
0answers
24 views
Send All NON existent get request to a default page
please be aware that I am very new to php.
okay I have a script.
that send variable pages to certain pages but only if the variable matches with an already preexisting page,
For example ...
0
votes
1answer
70 views
Android HTTPGET HTTPOST -
I'm trying to run a php script from Android. I tried 1000 ways and nothing works. Any idea please?
I do not care if using GET or POST, I just want it to work T_T
With web browser ...
-1
votes
1answer
263 views
Get data from JSP to android with GSON
I have 2 activities for getting data from .jsp file to android device. I´m using GSON for this. My project includes the gson library. The problem is, when I start the activity, the application fails ...
0
votes
0answers
89 views
signpost OAuth consumer.sign() on android
I'm trying use consumer.sign(request) for HttpPost in android, but I could not.
Only I could on HttpGet but using consumer.sign(String url) that returns me the url + parameters for the GET method.
I ...





