Where jars files are downloaded using Java Web Start?

Hi,At what location jars files are downloaded on client machine using Java Web Start? Are they converted to some other form, if yes what is way of locating these downloaded jar files?
[197 byte] By [kumahaa] at [2007-11-27 5:28:13]
# 1

The cache location could change with each release of the vm and could be different depending on who makes the vm. And so far the cache location has changed with each release. Relying on the cache location is a mistake. Assuming your app is signed, to get a jar out of the cache just use a HttpConnection to the path specified in the jnlp and copy it anywhere you like.

Caffeine0001a at 2007-7-12 14:50:18 > top of Java-index,Desktop,Deploying...
# 2

I am using following JNLP file for running application from remote machine.

<?xml version="1.0" encoding="UTF-8"?>

<jnlp spec="1.0"

codebase="http://<Machine_IP>/jnlp/Extension/">

<information>

<title>Singleton test</title>

<vendor>Sun Microsystems, Inc.</vendor>

<homepage href="index.html"/>

<shortcut online="false">

<!-- create desktop shortcut -->

<desktop/>

<!-- create menu item for this app under the major heading Esperanto -->

<menu submenu="TestApplication"/>

</shortcut>

<offline-allowed/>

</information>

<resources>

<j2se version="1.6"/>

<jar href="sing.jar" download="eager"/>

<jar href="sing2.jar" download="eager"/>

<jar href="sing3.jar" download="eager"/>

<jar href="sing4.jar" download="eager"/>

</resources>

<application-desc main-class="Single">

</application-desc>

</jnlp>

When i run JWS files then at which default location JWS cahces these files from remote machine on my PC ? As you mentioned location can vary then with what name these files are cahced.

kumahaa at 2007-7-12 14:50:18 > top of Java-index,Desktop,Deploying...