DO NOT USE - Use [apache-commons-httpclient], [apache-httpclient-4.x] or [dotnet-httpclient]
0
votes
0answers
22 views
Apache httpclient library not found
When I try to deploy an application to my Mule standalone server, the application deploys properly but when I try running a flow which uses RestTemplate (spring) and ...
0
votes
1answer
14 views
SSL issue with HttpGet probably because server is requesting client authentication
We are using following versions of diff libraries
Apache-HttpComponents-HttpCore = 4.1;
Apache-HttpComponents-HttpClient = 4.1.1;
JDK = 1.6_64;
and suddenly started ...
0
votes
0answers
9 views
Android HttpClient refused connection stop thread
I have local REST server. In my android application I repeatly (every 200ms) send HttpGet over HttpClient to server. I have set timeout to 2 seconds.
When server is running I don't have any problem. ...
0
votes
0answers
19 views
HTTP Get failing for HTTPS with javax.net.ssl.SSLPeerUnverifiedException
I have been using this infrastructure from past couple of months and it was working fine. I used to hit Google with https and get the result. Suddenly, I started getting SSLPeerVerifiedException for ...
1
vote
1answer
33 views
How to post using HttpClient?
I am able to get a webpage using HttpClinet class as follows :
HttpClient client = new HttpClient();
HttpResponseMessage response = await client.GetAsync(@"http://59.185.101.2:10080/jsp/Login.jsp");
...
0
votes
0answers
6 views
Commons HttpClient: is there a way to have global properties for all clients?
A lot of libraries we use with maven depend on apache commons http-client library. They mostly use it internally without exposing and settings outside.
I wonder, if there is any way to set global ...
0
votes
1answer
35 views
HttpClient.DeleteAsync and Content.ReadAdStringAsync always return null
When I'm using DeleteAsync function in HttpClient (System.Net.Http) and retrieve the content with Content.ReadAsStringAsync() I always get null returned.
I've tried the same with GET, POST and PUT - ...
1
vote
0answers
35 views
Windows 8 HttpClient
I want to use TheMovieDb Api in a Windows Store app.
For Windows Phone 8, I used a WebClient :
WebClient client = new WebClient();
client.DownloadStringCompleted += client_DownloadStringCompleted;
...
1
vote
2answers
25 views
Your post request is not being received quickly enough please retry
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(
"http://xxxxxxx/geo/getlocation.php");
MultipartEntity reqEntity = new ...
1
vote
0answers
39 views
wait for a long HTTP response in java
I hava a java application that calls a service. The service call will take about 5-10 minutes to complete its operation and return a status log as a response. (The reason behind the long duration is ...
0
votes
3answers
63 views
HttpClient timeout
I have a client server app using spring HttpInvokers. I am struggling with the timeouts. I see other threads regarding this but no clear answers.
As far as I know the readTimeout is supposed to ...
0
votes
1answer
33 views
[Android]HttpClient can't get whole content of website?
I'm working with HttpClient in Android.
I have sent GET request to url http://e-info.vn/tvguide/listings/channel/7/296043, but the response is not similar as the content I received when browse by ...
0
votes
0answers
27 views
Java - File parsing vs fetching html over http
We have a Java class that is supposed to fetch an HTML file and then read some content in it based on the id of certain divs and then return the content to a frontend which will then render it.
Now ...
0
votes
1answer
26 views
Android : Http request : get response time
In ANDROID, is there any way to get the reponse time from an http request (Using httpClient for instance)
Am looking for an alternative to what Curl does.
0
votes
0answers
23 views
Symfony2 firewall issue Android
Let me explain my situation, I developed a complete backend for an Android application in Symfony2.1 that works perfectly, now I'm trying to create the Android app part, for that I created a firewall ...