DO NOT USE - Use [apache-commons-httpclient], [apache-httpclient-4.x] or [dotnet-httpclient]

learn more… | top users | synonyms

0
votes
0answers
30 views

URL opens in browser but not in android program

There is a URL which opens fine on PC and mobile browser (chrome), but when i try to open it in an android program using below code it gives following error. private class DownloadWebPageTask extends ...
0
votes
0answers
18 views

Cookies with httpclient in android

There are more topics about cookies in SO. but i am stuck with setting cookies on request with httpclient. first in login activity class i use this code DefaultHttpClient httpclient = new ...
0
votes
1answer
18 views

android cant open pdf from cache dir

Trying to download and open a pdf file from internet using HTTPClient on android. I have 2 classes. First one is the parser class that has the next method: public static void saveFile(String link, ...
0
votes
0answers
12 views

Can't POST MultiPartEntity in Android application

I am trying to send an image using MultiPartEntity and HttpClient in Android, but keep getting the exception: java.lang.UnsupportedOperationException: Multipart form entity does not implement ...
0
votes
1answer
15 views

cURL emulating by HTTPClient Apache

I'm trying to upload data to CrowdFlower using their api, for which I'm writing JAVA wrapper. I'm using HttpClient Apache. the cURL example CrowdFlower give is following: curl -T 'sampledata.xlsx' -H ...
1
vote
2answers
22 views

Sometimes have to wait long till exception is being thrown by HttpClient.execute()

I'm using HttpClient to connect to my webservice. I want to implement a simple check if app could connect to this webservice. If not, I want a specific message to appear. This is how I try to achieve ...
0
votes
3answers
53 views

C# Asynchronous HTTPWebRequest on Windows Phone

I am new to .Net and Windows Phone development. I am currently investigating different ways for making asynchronous web requests through HTTPWebrequest class. Async and Await: async and await seems ...
0
votes
0answers
20 views

JMeter: better performance with Java impl of HTTP Sampler than with HTTPClient impl

I have been using JMeter for a few years now and have been using the Apache HTTPClient sampler implementation as it seems to be the recommended implementation, and the Apache HTTPClient is a mature ...
0
votes
3answers
61 views

Android SSL HttpGet (No peer certificate) error OR (Connection closed by peer) error

I am trying to do a simple HttpGet to read a webpage. I have this working on iOS and working on Android over http, but not https. The url is an internal network IP and custom port, so I can read with ...
0
votes
0answers
23 views

post text with file to server via google's http client

I need post text with file to my sever on android device.I am using Google's HTTP Client with the MultipartContent to achieve it but unsuccess. My code is below: MultipartContent multipart = new ...
4
votes
2answers
52 views

How can I tell when HttpClient.execute() is finished fetching all content in a large request?

I'm working with this issue on Android but it's not an Android-specific problem. Using org.apache.http.client.HttpClient, I can make a request to a URL of size 1kb and the entire response is ...
0
votes
0answers
26 views

HTTP client : Get request from webservice throws InvocationTargetException

I have following code that works fine when executing directly from Eclipse but when i am calling it from standard (Eclipse generated) client on Server (IBM WAS) then its giving exception. public ...
0
votes
1answer
19 views

Android - Connecting MySQL by HTTPClient via PHP

I'm trying to create a login function in my new App. I wrote a php file in my server to be an interface between my App and MySQL. JAVA code private void connectPHP(){ try { HttpClient ...
0
votes
1answer
27 views

Why cookie is null?

I make an webserver with lamp(linux+apache+mysql+php).I want to set cookie to hold user information such as userid,username.So the load.php is like this: .... ///login successful session_start(); ...
1
vote
0answers
16 views

java.net.SocketException: Connection reset by peer on android device. working in emulator [closed]

I'm connecting to Microsoft Exchange Web Services from my android application. It is working on emulator but i get the following exception while connecting from my device. java.net.SocketException: ...
1
vote
1answer
26 views

How do I make JVM use the IPv4 stack in isolated scope?

I have an application that runs on JVM/Tomcat and the machine(s) that it runs on all have IPv6 stack enabled. I'm trying to make a request to another machine that only supports IPv4 and the JVM will ...
0
votes
1answer
46 views

Android: HTTPS Authentication Username and Password for HTTPClient

I am connecting to a server via HTTPS. I accept all x509 certificates from the server. Now I just need to add authentication user name and password to the httpclient. I am using HTTPClient not ...
-4
votes
1answer
53 views

How to be sure of the accuracy of HttpClient response?

Please tell me what is the better trick to be sure of a HttpClient response, for example, if we do a login through HttpClient and we need to tell the user of success or failure of his login operation. ...
3
votes
2answers
79 views

Android - HttpClient only works once

I'm opening an url in the background because when going to the link http://website.com/3020/like it 'likes' the article 3020 I'm doing this with HttpClient: public static class LoadURL extends ...
0
votes
0answers
33 views

How can i sync an async call to my webapi?

When i'm using the HttpClient.GetAsync method, i've made an async call. The problem is my web api which make some validations, but if i shot a lot of calls at same time, the validation fails. When the ...
0
votes
1answer
19 views

Android parse RSS feed from ASPX URL

I'm trying to parse a RSS feed from an url that ends with .aspx. I can't modify the .aspx file unfortunatly. The problem is that the first line of the file crashes my whole app. <rss ...
0
votes
4answers
43 views

Posting using httppost not being received at server end

I am new to Android programming, but have decent knowledge of PHP. I am trying to send data to my server via post request. I have the following code: ArrayList<NameValuePair> nameValuePairs = ...
0
votes
2answers
33 views

Displaying webpages without webview

Actually i want to displaying webpages with proxy in it, i have problem using webview. Is there any other way beside webview to displaying webpages in android? like httpclient or httpurlconnection? ...
0
votes
2answers
49 views

Status Code 500 when tetsing HttpClient in ASP.NET Web Api

I am trying to work through an example using HttpClient from the ASP.NET Web Api but I am receiving a status code 500 in the response and I don't know why. I have the following code in a test: ...
0
votes
0answers
14 views

Using HttpClient with ASMX in C#

I am playing with HttpClient'. I'm wondering if it is compatible with.asmx` web services. Say I have a method such as this: var baseAddress = new ...
0
votes
1answer
29 views

Will the entire picture be load while I just read the first few bytes using Apache HTTP Client,Java,Android

I am using Apache HTTP Client to get file stream from url on Android,I want to check header of the stream to determine whether I should load the entire file, to avoid meaningless cost of network ...
0
votes
3answers
81 views

Fatal Exception AsyncTask #1 at doInBackground()

I am newbie on Android and I am developing an app that gets some information from a QR code and then connects a php page. However app crushes after it reads QR code and logCat gives a Fatal Exception ...
0
votes
1answer
29 views

The Source Attachment Does Not Contain DefaultRequestDirector.class Android

I am newbie on Android and I am developing an app that connects a php page. However, when I debug my code it gives a Source not found Last time it gave it for DefaulRequestDirector.class; however, it ...
0
votes
0answers
35 views

Unbuffered entity enclosing request can not be repeated

This is my code to upload a file. I use an EntityWrapper to fetch the upload progress. I used the wrapper described in this answer. After uploading the file I receive an error: ...
0
votes
2answers
73 views

PostAsync HttpClient error with Web Api - System.AggregateException “A task was canceled.”

I'm trying to call PostAsync method using System.Net.Http.HttpClient from the Web API. I get the following error: System.AggregateException "A task was canceled." Task: Id = 1, Status = ...
0
votes
1answer
33 views

What has to be installed on the remote http server to use apache httpclient

In a project we use apache httpclient and there are no exceptions when we use it. But the problem is, we can't find files on the remote http-server or whatsoever. We read online that jakarta file ...
0
votes
1answer
28 views

HttpClient in Netbeans

How can I use HttpComponents (Download) 4.2.5 to in order to make the QuickStart example compatible in Netbeans 7.3? In Eclipse everything works fine, creating a custom library with the path to the ...
0
votes
1answer
22 views

Library type remote web service calls and HttpClient ConfigureAwait(false)

Suppose you are creating a library to be shared among multiple applications some that may exist as fully synchronous codebases. The purpose of this library is to execute web service calls using ...
0
votes
0answers
72 views

Nested Android Asynchronous Http Client

I use the library http://loopj.com/android-async-http/ to receive some data from a REST Api and put them into a ListView. This works great! But I have to receive some additional data from the Api. ...
0
votes
1answer
37 views

AllowAutoRedirect in windowsPhone

In HttpClientHandler have propertie AllowAutoRedirect, but on build app for WindowsPhone throw exception: HttpClientHandler.AllowAutoRedirect is not supported on this platform. Please check ...
0
votes
1answer
37 views

System.Net.Http.HttpClient adds @ at the end of JSON keys. Why?

I have a pretty simple problem I am not able to solve. I have an Action method defined like this: [HttpPut] public ActionResult Register(ClientRegistrationInformation clientInformation) ...
-1
votes
2answers
95 views

Is this HTTPS connection secure?

I was looking for a way to retrive data from a server-side using Https and a self-signed certificate. Following this question: Self Signed SSL acceptance Android and @Brian Yarger Answer I have ...
0
votes
0answers
40 views

Java : Restful service response displays : “You need to sign in or sign Up” to continue

I am working on simple service in java, that fetches a response from a restful service : "https://api.cloud.appcelerator.com/v1/users/login.json?key=" . The response has a parameter as "sessionId" ...
0
votes
3answers
115 views

Android Proxy Setting

I want to browse some website with proxy that i already have (with apps that i want to make of course). i want to change it programmatically (without go to settings or other 3rd apps included). here ...
0
votes
1answer
33 views

HttpClient queries on main thread keeps crashing when in Runnable

I've expierenced this code runs smoothly on Android 2.2. But on Android 4.0 it crashes. I am assuming that, It's caused by HttpClient. So I moved the code into a Runnable, but it keeps crashing. new ...
0
votes
0answers
49 views

HttpClient 4.0 Java bot

I try to create a bot for my brother with java. This bot will help him to get some informations of a website. For exemple, i want this bot connect on the website. Then, i want it acces to an URL, and ...
0
votes
2answers
155 views

Can't Download Json Array Windows phone

I can download a Json array in Windows 8 with the following code: aString = "http://website.com/image/image_manifest.json"; private async void GetJSON(string aString) { var ...
0
votes
2answers
49 views

Issue on POSTING data by using “NameValuePair”

I wrote in java method that responsable to send POST like ajax public String getWebInfo() { DefaultHttpClient httpclient = null; String out = null; try { ...
0
votes
1answer
31 views

HttpClient is not found in .NET 4.5

I am trying to use the new HttpClient in .NET 4.5, but Visual Studio complains that it doesn't exist. I have System.Net, but when I type System.Net.Http, it complains for that too. Am I supposed to ...
1
vote
1answer
83 views

SSL connection with custom keystore .jks file and password and Send a request to URL

I need send a request to URL with custom keystore .jks file and password . Here is the following piece of code . It is not very clean. I need to clean it up :-) I see an exception of ...
0
votes
0answers
23 views

How can I capture the bytes being streamed in httpClient via the HttpRequestInterceptor?

I am trying to intercept the byes that are being streamed to a servlet via httpClient. I need to do some other processing on the bytes and I would like to do it one time (when it is being streamed). ...
2
votes
1answer
63 views

Getting “peer not authenticated” while using google map api's

I am getting "peer not authenticated" using google map api's after creating javafx package. It is working fine when directly run from code or from executable jar file, The following is the exception I ...
0
votes
0answers
41 views

Synchronous request in node.js with common-node

What's wrong in this simple example? I have compared this code with the examples in other synchronous/request examples, but I can't see it. HttpClient = require('common-node').httpclient.HttpClient ...
0
votes
1answer
119 views

Asp.net Web Api Redirect request

I have an Asp.net Web API project which has several CRUD methods. On top of these methods, i want to add an Authorization service that reads the Authorization header and prevent users of accessing ...
3
votes
1answer
73 views

HttpClient connect to internet; error opening trace file: No such file or directory (2)

I'm trying to access a website, and put the html source code into a TextView. The browser on my emulator works, but I believe accessing the internet within my app is not functioning properly. I think ...

1 2 3 4 5 34