Vijay Simha

Greenhorn
+ Follow
since Mar 11, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Vijay Simha

When I run JNLP file it downloads the jar and throws above exception:

DownloadService2 ds;
try {
ds = (DownloadService2)ServiceManager.lookup("javax.jnlp.DownloadService2");
} catch (UnavailableServiceException ue) {
ds = null;
ue.printStackTrace();
}

In eclipse it gets compiled properly.
Please help,
Thanks
13 years ago
I have an issue with JNLP DownloadService. I'm trying to write code to download jar files when it is required.
For eg: If user clicks on a button it'll open a frame all frame data is in a jar. first code checks if that jar is available in cache or not if not it downloads.
Now the problem is once jar file is downloaded, if we update the jar file on server, the new file is not getting updated to the cache.

How to solve this, please help me out

Regards,
Vj
13 years ago