Tagged Questions

0
votes
4answers
339 views

Connection to a URL from within an applet using Apache’s HttpClient vs using the JDK’s URLConnection

In the following code, I have verified that connecting to a URL from within an applet preserves the browser's session if JDK's URLConnection class is used. However, this is not th …
4
votes
2answers
197 views

How does URLConnection.setUseCaches() work in practice?

I have an Applet which is loading images over a http connection using URLConnection. I am setting setUseCaches(true) for all connections, but still not seeing any caching behavior. …
1
vote
2answers
227 views

How to optimally clean up outgoing UrlConnection objects in high use multithreaded environment?

I have a use case where a servlet (that has reasonably high concurrent use) makes an outgoing URLConnection to retrieve some data REST style as part of its normal server-side proce …
0
votes
1answer
88 views

Websphere slow URLConnection

We have a Websphere version 6.1 deployed on a Linux environment. To open an https connection we call openConnection() and connect() on a java.net.URL object. Opening this connecti …
2
votes
11answers
6k views

Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?

I'm getting a ConnectException: Connection timed out with some frequency from my code. The URL I am trying to hit is up. The same code works for some users, but not others. It s …
0
votes
2answers
317 views

Java URLConnection crashes the entire process when I call getInputStream

I am writing a Java applet that downloads images from a web server and displays them to the user. It works fine in Java 1.6.0_3 and later, but on older versions it will completely …
0
votes
2answers
883 views

In java, how to create HttpsURLConnection or HttpURLConnection based on the url?

I'm working on a project where I'm creating a class to run http client requests (my class acts as a client). It takes in a url and a request method (GET, POST, PUT, etc) and I wan …
-1
votes
3answers
324 views

URLConnection FileNotFoundException for non-standard HTTP port sources

I was trying to use the Apache Ant coretask Get to get a list of WSDLs generated by another team in our company. They have them hosted on a weblogic 9.x server on http://....com:7 …
1
vote
4answers
370 views

Calling servlet from another servlet

I have two servlets which are running on different tomcat servers. I and trying to call a servlet1 from servlet2 in the following way and wanted to write an object to output stre …
0
votes
2answers
551 views

How to send an HTTP header in java

Hi, Is it possible to send a Http header via a URL connection in java? I had this working using sockets, but ran into issues with a firewall which don't seem to be a problem with U …
4
votes
3answers
1k views

How can I specify the local address on a java.net.URLConnection?

My Tomcat instance is listening to multiple IP adress, but I want to control what source IP address is used when opening a URLConnection. How can I specify this?
0
votes
2answers
455 views

Java URL Connection blank input stream

The application I am working on has a terribly slow loading web page. If I run the following code it works fine but only because of the call to sleep. If I don't sleep then the I …
0
votes
2answers
246 views

Make URL Request from Servlet and retain Header information

I need to make a request from a servlet but I also need to retain all the header information. That is in the request object. For example, I if I do something like the following f …
1
vote
3answers
690 views

Java UrlConnection HTTP 1.0

I am trying to download a file from my Java application. But because UrlConnection uses HTTP 1.1 protocol i get a Tranfer Encoding: chunked response in which case i can not find ou …
0
votes
1answer
940 views

What is the proper way of setting headers in a URLConnection?

My code is like the following: URLConnection cnx = address.openConnection(); cnx.setAllowUserInteraction(false); cnx.setDoOutput(true); cnx.addRequestProperty("User-Agent …