3
votes
2answers
479 views
httpclient vs httpurlconnection
Wich are the main differences between the two?
thanks
2
votes
2answers
116 views
Intermittently incomplete response using Apache HttpClient 3.0.1
I am stumped about this, so I thought I'd ask in case any of you have come across it, since HttpClient development is a little bit of an art.
The problem I am facing is this: An …
2
votes
2answers
114 views
mediawiki API & encoding
I'm using the mediawiki Api to update some pages with an experimental robot.
This robot uses the java apache http-client library to update the pages.
(...)
PostMethod postMethod = …
2
votes
4answers
2k views
How to upload a file using Java HttpClient library working with PHP - strange problem
I want to write Java application that will upload a file to the Apache server with PHP. The Java code uses Jakarta HttpClient library version 4.0 beta2:
import java.io.File;
impor …
2
votes
2answers
162 views
Can I use WCF Starter Kit HttpClient with confidence?
I would like to start using the WCF Rest Starter Kit's HttpClient to build clients for my Restful WCF services and I was wondering...
If anyone is currently experience
any proble …
2
votes
1answer
3k views
How do I add query parameters to a GetMethod (using Java commons-httpclient)?
Using Apache's commons-httpclient for Java, what's the best way to add query parameters to a GetMethod instance? If I'm using PostMethod, it's very straightforward:
PostMethod met …
1
vote
1answer
47 views
How to get current Transfer Rate in Commons HttpClient 3.x
I have some code that does a bunch of HTTP GETs, POSTs, and PUTs using Commons HttpClient 3.1. I'd like to provide a current transfer speed indicator in my GUI, but was unable to …
1
vote
3answers
171 views
How to prevent apache http client from following a redirect
I'm connecting to a remote server with apache http client. the remote server sends a redirect, and i want to achieve that my client isn't following the redirect automatically so th …
1
vote
1answer
271 views
HttpClient 4 - how to capture last redirect URL
I have rather simple HttpClient 4 code that calls HttpGet to get HTML output. The HTML returns with scripts and image locations all set to local (e.g. <img src="/images/foo.jpg" …
1
vote
2answers
56 views
How do I count the number of 100 Continues the server sent me?
I am using Apache Commons HttpClient 3.1, and I found that HttpURLConnection from Sun drops the 100 Continues from the stream.
So therefore I don't seem able to get the 100 Contin …
1
vote
1answer
278 views
Access to Facebook API using REST and HttpClient
Hello there,
I am going to use RESTful Web Services and HttpClient to access Facebook API REST Server.
Am somewhat of a newbie to REST and Facebook APIs...
Question(s):
Verific …
1
vote
1answer
340 views
Really weird HTTP client using TcpClient in C#
I am implementing a really simple HTTP Client that just connects to a web server and gets it's default homepage. Here it is and it works nice:
using System;
using System.Net.Socke …
1
vote
3answers
305 views
How can I configure HTTPClient to authenticate against a SOCKS proxy?
I need to set up proxy authentication against a SOCKS proxy.
I found out this post giving instructions that appear to work with common HTTP proxies.
httpclient.getHostConf …
1
vote
0answers
109 views
How to handle IOException and HttpException in Apache HttpClient.execute(HttpMethod)
The documentation (copied below) doesn't say a lot about what IOException and HttpException means in its context.
My question is: after an IOException occurs in a HttpClient.exec …
1
vote
2answers
490 views
handling a comma inside a cookie value using .net’s (C#) System.Net.Cookie
I'm creating a client to visit a website and log in + do some tasks automatically, however they recently updated their cookies to (for whatever reason...) contain a comma inside th …
