'lazy' download test

http://www.javasaver.com/testjs/jws/cache/
Here is one test of the JWS download behaviour
for jar and resources marked as lazy.
Does it work for you?
(It should appear on-screen real quick, once
you click a list item, the image download is
initiated and the GUI ..locks until the image
is on-screen)
This raises some questions though.
1) On my box, the lazy downloads got no progress
dialog - is that expected behaviour? Is there any
easy (configuration) way to put it back?
2) I had to reference the classes in the lazily
downloaded jars using reflection. Are
there easier ways to reference the lazy resources
without invoking an eager download?
Note that I have also linked to a file containing
the source, media and build file, to make it easy
to download and experiment with off the local
file system.
All results, comments welcome.

http://www.javasaver.com/testjs/jws/cache/#eg5
Is the best example so far. The previous examples
blocked the EDT, and that caused the 'blank' dialogs
that were observed.
I am having new problems with it though,
& would appreciate any ideas..
The issue is that the second invocation
of the download service fails.
Here is some output from the web start console.
Part animal cached!
jar:http://www.javasaver.com/testjs/jws/cache5/animalmedia.jar!/image/DCP_7940.jpg
DownloadServiceListener com.sun.jnlp.DownloadServiceImpl$DefaultProgressImpl@2f1921
Part plant downloading!
jar:http://www.javasaver.com/testjs/jws/cache5/plantmedia.jar!/image/100_1829-800x600.jpg
DownloadServiceListener com.sun.jnlp.DownloadServiceImpl$DefaultProgressImpl@2f1921
Part art downloading!
java.lang.RuntimeException: canceled by user
     at com.sun.jnlp.DownloadServiceImpl$DefaultProgressImpl.progress(Unknown Source)
     at com.sun.jnlp.DownloadServiceImpl$ProgressHelper.<init>(Unknown Source)
     at com.sun.jnlp.DownloadServiceImpl$6.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.jnlp.DownloadServiceImpl.loadPart(Unknown Source)
     at com.sun.jnlp.DownloadServiceImpl.loadPart(Unknown Source)
     at test.JWSCacheTest.run(JWSCacheTest.java:78)
     at java.lang.Thread.run(Unknown Source)
jar:http://www.javasaver.com/testjs/jws/cache5/artmedia.jar!/image/scan0036-670x470.jpgWhile this is the code for the run() method,
Line 78 has a comment added..
It is the call to ..
downloadservice.loadPart(Sring, String)
..that is throwing the Exceptionpublic void run() {
  String title = getTitle();
  setTitle("Loading " + resourceName);
  try {
    if (downloadservice==null) {
      downloadservice = (DownloadService)ServiceManager.
        lookup("javax.jnlp.DownloadService");
    if ( !downloadservice.isPartCached(part) ) {
      DownloadServiceListener dsl =
        downloadservice.getDefaultProgressWindow();
      System.out.println("DownloadServiceListener " + dsl);
      System.out.println("Part " + part + " downloading!");
      downloadservice.loadPart(part, dsl);  // code line 78
    } else {
      System.out.println("Part " + part + " cached!");
  } catch(Exception e) {
    // ignore the USE or IOE and proceed..
    e.printStackTrace();
  try {
    Class displayClass = Class.forName(resourceName);
    setTitle(title);
    imagePanel.add(
      (Component)displayClass.newInstance(),
      images[index]);
    cl.show(imagePanel, images[index]);
  } catch(Exception e) {
    setTitle(title);
    imagePanel.add(
      new JLabel("Error loading!"),
      images[index]);
  validate();
}Why would that be showing as 'canceled by user'
on any second invocation of the downloadservice?
Is there something I am forgetting to reset at
the end of the first invocation?

Similar Messages

  • Debugging JNLP lazy download

    Hi everyone,
    I'm having issues with lazy downloading: it doesn't work in our (rather complex) application with multiple JARs, including third party JARs, all signed with same certificate. When I tested lazy loading with simple application which included two signed JARs, it worked as expected.
    My guess is that some class is requesting a resource which doesn't exist and web start is then loading all JARs, even lazy ones, trying to find that resource.
    I could see on this forum people are talking about log files listing classes and other resources being requested by JWS, but I can't seem to enable this info to be logged. I've turned on logging and tracing in java control panel. I also tried running web start by using javaws with both -verbose and -J-verbose:class arguments. I also tried adding
              <property name="javaws.debug.0" value="+TraceSecurity" />
              <property name="javaws.debug.1" value="+TraceCache" />
              <property name="javaws.debug.2" value="+TraceDiskCache" />
              <property name="javaws.debug.3" value="+TraceDownload" />
              <property name="javaws.debug.4" value="+TraceXMLParsing" />and java-vm-args="-XX:-TraceClassLoading -XX:-TraceClassLoadingPreorder -XX:-TraceLoaderConstraints" to JNLP file but it didn't help.
    I'm kind of getting desperate trying to figure this out, so any help would be appreciated. Thanks.

    Yes, main JAR contains index of all used JARs and additional JARs have been marked as belonging to different part.
    I managed to find a problem: I've been using ant to generate JAR index, which didn't add folder information to JAR index. Eg. inside jar task I had something like:
    <indexjars>
         <fileset dir="${websites}/lib/">
              <include name="jdom.jar" />
         </fileset>
    </indexjars>However, when index file was generated it listed jdom.jar without subfolder in which it's located (jdom.jar instead of /lib/jdom.jar). I managed to fix this by creating manifest for main jar and adding all additional JARs to it's classpath, eg:
    <manifest file="${websites}/ALL-MANIFEST.MF">
         <attribute name="Class-Path" value="/lib/jdom.jar" />
    </manifest>So, lazy downloading is working now.
    However, it would still be nice to know how to display class loading information (-verbose:class jvm argument) inside Web Start application, as it might be helpful in the future.

  • Lazy download - howto?

    All that is said about lazy download is that it "can be accomplished using Jar Indexing". But what about examples and tutorials?
    I have three jars, for example, core.jar, aux1.jar and aux2.jar. And some jars with graphics, res1.jar, res2.jar and res3.jar.
    then I cd to the directory that contains all jars, run:
    jar i *.jar and acquire INDEX.LIST in first jar file. Then I set download="lazy" in my jnlp file, but all jars are downloaded before the start of the application.
    So a few questions.
    1. What I am doing wrong?
    2. How to get resources to download when they are really needed?
    Thanks.

    First thing I can think of: did you set a different part for the lazy jar? 'cause whenever one jar of the part is asked they all get downloaded (this means any jar in the same jnlp if no part specified).
    Second: I've succesfully used lazy with indexing, having index.list in the main jar (not just the first) using something like:
    jar -i Main.jar *.jarCan't think of anything else right now.
    Bye.

  • Lazy download and PrintServiceLookup.lookupPrintServices

    In my jnlp file all jars are with "lazy" tag, and everything works fine, but when I execute this line of code:
    javax.print.PrintService[] result = PrintServiceLookup.lookupPrintServices( null, null );
    all of the jar are downloaded.
    I've opened the bug request n: 830151 (but this is only an internal ID) 2 months ago, but got no answers yet.
    Any ideas or suggestion?
    Regards
    Alessandro

    If you attempt to load a non-existant resource, all
    jars will be loaded looking for it.
    This can be avoided in JDK 6 using JarIndexing to
    specify what jar contains what resources.Never tried JDK 6.
    In JDK 5.0_02+, you can also achieve the same thing
    using the "part" and "package" attributes.
    In previous versions of Java Web Start, neither of
    these worked, so accessing a non-existant resources
    would always download all lazy jars.
    /AndyI use jre1.5.0_08 and my jnlp (for the test case) is:
    <package name="testJWS.*" part="main" recursive="false"/>
    <jar href="/client/test-jws/starter.jar" part="main" download="lazy"/>
    <package name="testJWS1.*" part="test1" recursive="false"/>
    <jar href="/client/test-jws/testJWS1.jar" part="test1" download="lazy"/>
    <package name="testJWS2.*" part="test2" recursive="false"/>
    <jar href="/client/test-jws/testJWS2.jar" part="test2" download="lazy"/>
    <package name="testJWS3.*" part="test3" recursive="false"/>
    <jar href="/client/test-jws/testJWS3.jar" part="test3" download="lazy"/>
    <package name="com.incors.plaf.*" part="alloy" recursive="true"/>
    <jar href="/client/test-jws/alloy.jar" part="alloy" download="eager"/>
    So, according to what you say, it should work.
    My test case is very simple: a main jar which opens a JFrame contained in testJWS1.jar, which opens a form conteined in testJWS2.jar and so on.
    Without the PrintServiceLookup, works perfectly, the jars are downloaded only when needed.
    With that line of code everything is download at that moment.
    How can I say to JWS something that concern resources contained into rt.jar of the JRE (like PrintServiceLookup)?
    I've tried to debug this class (I've found the source code, copied in my class, and used mine with some debug message) and saw that the download appens when Java looks for the file javax.print.PrintServiceLookup which is inside rt.jar\META-INF\services
    This file exists ... but it seems like JWS looks for it in all the jar of the classpath (including lazy jar), and then inside rt.jar which is the right place.
    Any idea how to say to java: look inside rt.jar before my lazy jars?
    The problem is that I cannoy say (don't know how) to JWS that a file is inside the META-INF folder of a jar, otherwise I could copy that file inside my first jar and tell to the JNLP to look there.
    Thanks
    Alessandro

  • Dependency JAR debugging in JWS operation: Eager/Lazy downloads

    I'm trying to see if there is a way to watch which .JARs is downloaded as a program runs. However, if there are [import] statements in the main class, wouldn't the dependency .JARs be downloaded anyway? I just want to test the download patterns of a JWS application and see its results.
    Specifically, I want to know when the JAR was downloaded in the course of runtime.
    Currently, I have a main JAR and 3 dependency JARs; each JAR contains only one package with only one class within it. The main JAR will call methods from 2 of the 3 dependency JARs, which simply return strings to be printed to a console that is instantiated in the main class/JAR.
    In the JNLP file, I will toy with the lazy/eager download settings for each of the dependency JARs, testing its behavior when each of the JARS are downloaded eagerly and lazily, with one of the JARs acting as control.
    Is it possible to print the downloaded/not-downloaded status of each JAR to the console in my main class? Is there more I can do to this code so it can display whether or not JARs have been downloaded, and in what order?
    //This is the main class. This will be declared as such in the JNLP.
    package front;
    import javax.swing.*;*
    *import java.awt.*;
    import java.io.*;
    import right.RightOf;
    import left.LeftOf;
    import back.BackOf;
    public class FrontOf extends JFrame{
    ObjectOutputStream out;
    private JTextArea consoleout;
    public FrontOf(){
    Container c = this.getContentPane();
    consoleout = new JTextArea();
    c.add(new JScrollPane(consoleout), BorderLayout.CENTER);
    setSize( 300, 150 );
    this.setVisible(true);
    public void rockout(){ //The test operation. Note the dummy package's operations have been commented out.
    RightOf unit01 = new RightOf();
    LeftOf    unit02 = new LeftOf();
    //BackOf    unit03 = new BackOf();
    consoleout.append(unit01.go());
    consoleout.append(unit02.go());
    //consoleout.append(unit03.go());
    public static void main(String args[]){
    //This is code for one of the dependency classes/JARs. The other two are identical except for names and strings.
    package left;
    public class LeftOf {
        String debug;
        public LeftOf(){
            debug = new String("UNIT 01 ACTIVE");
        public String go(){
            return debug;

    jkc532 wrote:
    .. Is the fact that the CachedJarFile class doesn't attempt to reload the resource when it can't retrieve it from MemoryCache a bug? From your comprehensive investigation and report, it seems so to me.
    ..I've dug as deep as I can on this and I'm at wits end, does anybody have any ideas?Just after read the summary I was tired, so I have some understanding of the effort you have already invested in this (the 'wits' you have already spent). I think you should raise a bug report and seek Oracle's response.

  • SCOM 2012 - Visual Studio Web Test - Cannot retrieve downloaded test results / share not configured

    Hello-
    I am trying to get my Visual Studio web test to work in SCOM 2012. I have configured the run-as account, and set the correct overrides for the Alert attachment file share discovery. I followed this guide to the T: http://technet.microsoft.com/en-us/library/jj899889.aspx
    When I Select the site that I want to download the test result file for, The results pane shows the following error:
    "The share does not seem to be configured in the Alert Attachment Management Pack"
    When I attempt to download the result file without manually entering creds, it fails. When I do enter creds, in the "task history" it shows as succeeded, but I get no results. All subsequent automatic "Retrieve previously..." fail. In
    the "task history", the "Run As" column is blank (unless I manually enter the credentials, which doesn't do me any good, anyway)
    My "Alert Attachment" MP is inside another MP I created, along with the "System Center Global Service Monitor VS Web Test" MP and two other System Center MPs. This created MP is the one that my Alert Attachment Overrides are attached
    to.
    My Run-As account has the needed permissions to the file share, so I am lost as to why this isn't working. Any help would be greatly appreciated.

    Have you followed the steps here to configure the share location http://technet.microsoft.com/en-us/library/jj899889.aspx ?

  • Lazy downloading broken for updated jar-files?

    Hello,
    Using webstart-6.0 + jar-index + download="lazy" works great - jar files are downloaded on demand when they are really needed.
    However when updating all jar-files, the files that have been downloaded lazily and cached before are downloaded again before the application can be launched, not only on demand.
    Is this the intended behaviour, and is there any way to let webstart lazily download updates, just when the jar-files are needed?
    Thank you in advance, lg Clemens

    Libraries loaded from the j2ee/home/lib directory are opened and loaded at the J2EE container level. So they are accessed from the very start of the server, to the point where it is stopped.
    Therefore if you modify a class library which has already been loaded, you may run into file locking related issues (which will be OS dependent, Windows for example probably won't even let you overwrite the file) so that is what you are likely to be seeing.
    JAR files loaded at the J2EE container level aren't really suitable for dynamic updating -- the classes can be referenced in a multitude of other classloaders.
    As you have seen, replacing a J2EE container level class file, then a restart will be required along the lines of what you have written.
    Stop mid-tier, move new file in and restart?? cheers
    -steve-

  • PROBLEM DOWNLOADING TEST DATABASE

    I have been trying to download the database that is part of the computer based training with the book, "Oracle:SQL" published by Thompson Course Technology. I put the CD in the drive, click the "Install Product" tab, get the screen where I am instructed to register the product so I can download the test database from Oracle. I input the publisher of the book that contained the CD, the Book name, Oracle9i:SQL, and I enter the ISBN of the book, 0-619-15913-8. I am then informed by a screen that I will be sent a registration code via e-mail. Nothing! I have tried this several times. Can someone get me a registration code for this database?
    Thanks,
    Tom Dowd

    That key didn't work either. I appreciate your effort, but is there someone who works at Oracle who can help with this?
    Thanks,
    Tom DOwd

  • Lazy downloading not working!!!

    Dear all,
    I have four jars in my jnlp file, apart from the main jar. All the jars apart from the main jar is declared as "lazy", and there is no dependency b/w these jars. When a class in the third jar is instantiated, the first two jars in the jnlp file got downloaded even though they were declared as lazy.
    Now, I used the DownloadService API to download the third jar explicitly, so that the other jars wont get downloaded. Even then, when the class is instantiated, all the jars are getting downloaded.
    Any solutions please??
    Thanks in advance
    Anil

    The package element is described in the jnlp spec, which you can download from http://java.sun.com/products/javawebstart/download-spec.html
    An example of using package is as follows:
    <resources>
    <jar href="myapp.jar" part="myjar" />
    <package name="com.mysite.myapp.*" part="myjar" recursive="true"/>
    This tells Java Web Start that all classes beginning with com.mysite.myapp can be found in myapp.jar.
    Regards
    Brendan

  • Progress dialogs for (eager and lazy) downloads

    <resources progress="all-downloads">
    </resources>
    Where 'progress' values are
    "standard" - default behaviour if omitted - progress
       dialog for eager downloads only
    "all-downloads" - progress dialog supplied for all
       downloads, eager or lazy.
    "none" - (suggest) no progress dialogsThe 'progress' attribute is not something in the
    web start API, but I would like to see it added.
    The intent is to allow the JNLP file to suggest a
    behaviour for progress dialogs during the download
    of both eager and lazy resources.
    Currently (web start in 1.5), there is no progress
    dialog, or message of any kind, during the download
    of 'lazy' resources.
    My questions.
    Is it technically feasible to provide this ability?
    Does it conform to the web start ..framework?
    Would an RFE to add support for this 'progress'
    attribute (call it what you like) be well received
    (or disappear into the abyss as some other
    requests assigned an ..'internal review ID'
    sometimes seem to)?
    More generally to other forum members, is
    this something that is important to you?
    Would you vote for an RFE to support the
    progress dialog attribute?

    ScheduleWorld used to use around 40 jars and I noticed a big speedup when I started using the version protocol. Now, my httpd logs only report a HTTP HEAD request on the jnlp file (sometimes icon image too?) and the app starts quite fast. I use less jars now but I am sure the main thing is the switch to the version protocol.
    With the version protocol, the client can determine if it has all of the right versions without making network connections. If you have a slow network connection (like a modem) and/or your server has keepalive disabled and is rate-limited to the number of new connections/second to the same IP you could see exactly what you are describing.

  • PS CC - download test version not possible

    not possible "https://creative.adobe.com/products/download/photoshop" not working - can this be? thanks!
    Forward to this - page not available
    aam://SAPCode=PHSP/?productVersion=15.0?passPhrase=Y1fjETqKXzV0NLe1WTGQaXVKVBZa+or9dxYuyVR TtS19TN1I7xipvQAxU8X0KkTebACh6lYHKAHK3FFw4pCKu0sWrnp6zgULiMouLkCsBZXDK7IgW90XkcDuW+HBmw1DJ smt65YcwH7rdfAuXd49iPsnNE3rgGsiW7L/RGXuOqg=

    Thank to all!
    It first looked like an error on download-site or whatever... but it I think it's a local system error.
    solution:
    1. download and install Creative Cloud App > only in WINDOWS SAFE MODE (otherwise error 50)
    2. installation APP / Photoshop etc. > only in normal started system (otherwise installation fail on third party application etc.)
    Now it's running - cool!
    Thanks,
    Barbara

  • Help:Want to download test messages off phone

    How can I download my text messages without a sims card so I can print on my computer to save?

    You can use this app to create an xml file of your text messages. Then you can email over Wifito yyourself or connect the phone to the computer via USB cable and copy the file from the SMS Backup folder. The xml file can be opened with Internet Explorer or Excel and printed out.
    https://play.google.com/store/apps/details?id=com.riteshsahu.SMSBackupRestore

  • New MPEG Streamclip download Tested In Lion

    2011-08-02 (02/08/2011):Another beta version compatible with YouTube and Lion: MPEG Streamclip 1.9.3b6 beta.
    http://www.squared5.com/

    I should have add this for mac users that have Windows. There a new version for Windows, 1.2.
    http://www.squared5.com/svideo/mpeg-streamclip-win.html
    I just posted this in the Windows Qt forum.
    Oh my, what was I thinking?

  • Download trial version for mac

    22 Hours and still no reply, seriously????
    Hi, I am i can't seem to reply to the initial message.  I tried the instructions below, but the download has been hanging for almost an hour and not progressing at all - so it seems to not be working...any other solutions?  I am in Qatar, does the fact that my IP address is not north american affect this at all?
    Trouble downloading captivate 6 trial for mac.
    Apr 9, 2013 9:23 PM
    im trying to download the trial version of captivate on my mac, the akamai netsession interface is now on my desktop, i go through installation, it makes that happy sound and says the installation was successful, but nothing actually happens, no new folders or documents, or applications, seems like sort of a dead end.
    To investigate i clickedon Akamai in "other" of my system preferences is tells me the status is "forbidden" but I am the administrator and i have never used this free trial before, so why am I "forbidden?"
    Here's part of the diagnostic if that helps:
    This file was created on 2013-04-09 7:54:12 PM when a user initiated the "Generate Report" action in the Akamai NetSession Interface Control Panel or System Preferences. This is a report on the results of diagnostics tests concerning proper installation, connectivity, download and streaming capability.
    This data is intended to be used by support and technical representatives as an aid in diagnosing problems using NetSession on this computer. Users seeking help with NetSession problems may be asked by those representatives to click the "Generate Report" button to create a current report.
    OS version: OS X 10.8.3
    Interface Status Test
    Status: PASSED
    Interface Port Test
    Status: PASSED
    Interface Connection Test
    Status: PASSED
    Basic HTTP Download Test
    Status: PASSED
    Basic HTTPS Download Test
    Status: PASSED
    Basic Auth Download Test
    Status: PASSED
    Cookie Auth Download Test
    Status: PASSED
    Query Auth Download Test
    Status: PASSED
    CLIENT ATTRIBUTES
                        GUID: c973268d67665313deb5375e87e5121e
          Executable Version: 1.8.9
          Running Executable: netsession_mac
       Configuration Version: mac_4a26ad2_1.8.9-RC5
                   Is Online: Yes
    Is Client Upload Enabled: No
              Download Speed: 169984 bytes/sec
    PROXY EXCEPTIONS
    *.local
    169.254/16
    CLIENT CONNECTIVITY
                 CN Address: 195.59.54.84
        External IP Address: 37.208.135.46
               Mega Address: c973268d67665313deb5375e87e5121e(lan:udp:192.168.100.6:59331;rstrstat ic:udp:37.208.135.46:59331)
    NAT safe mapping period: 128 second(s)
            Firewall Active: yes
    /Users/raimey/Applications/Akamai/euc_state.json
      "updates":
        "cookieJar":
      "updates":
        "supportresources":
      "updates":
        "downloadrequests":
          "235052820":
            "urls":
              "http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg":
                "peerboost":false,
                "wait":true,
                "checkcontentmd5":false,
                "usecontentdisposition":false,
                "resumefilename":"Adobe_Captivate_6_English_Mac",
                "urlSetId":235052820,
                "autopause":30,
                "resumeurl":"http://trials3.adobe.com/DlmResumeLink/www.adobe.com/cfusion/tdrc/resu me.cfm?urlSetId=235052820&language=en&downloadName=Adobe_Captivate_6_ E nglish_Mac&product=captivate_EN_US&loc=en_us",
                "cookiestring":"MM_TRIALS=12345",
                "resetdownload":false,
                "sequential":false,
                "originonly":true
            "urlsetid":"235052820"
          "588607797":
            "urls":
              "http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg":
                "peerboost":false,
                "wait":true,
                "checkcontentmd5":false,
                "usecontentdisposition":false,
                "resumefilename":"Adobe_Captivate_6_English_Mac",
                "urlSetId":588607797,
                "autopause":30,
                "resumeurl":"http://trials3.adobe.com/DlmResumeLink/www.adobe.com/cfusion/tdrc/resu me.cfm?urlSetId=588607797&language=en&downloadName=Adobe_Captivate_6_ E nglish_Mac&product=captivate_EN_US&loc=en_us",
                "cookiestring":"MM_TRIALS=12345",
                "resetdownload":false,
                "sequential":false,
                "originonly":true
            "urlsetid":"588607797"
          "204237093":
            "urls":
              "http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg":
                "peerboost":false,
                "wait":true,
                "checkcontentmd5":false,
                "usecontentdisposition":false,
                "resumefilename":"Adobe_Captivate_6_English_Mac",
                "urlSetId":204237093,
                "autopause":30,
                "resumeurl":"http://trials3.adobe.com/DlmResumeLink/www.adobe.com/cfusion/tdrc/resu me.cfm?urlSetId=204237093&language=en&downloadName=Adobe_Captivate_6_ E nglish_Mac&product=captivate_EN_US&loc=en_us",
                "cookiestring":"MM_TRIALS=12345",
                "resetdownload":false,
                "sequential":false,
                "originonly":true
            "urlsetid":"204237093"
          "517068062":
            "urls":
              "http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg":
                "peerboost":false,
                "wait":true,
                "checkcontentmd5":false,
                "usecontentdisposition":false,
                "resumefilename":"Adobe_Captivate_6_English_Mac",
                "urlSetId":517068062,
                "autopause":30,
                "resumeurl":"http://trials3.adobe.com/DlmResumeLink/www.adobe.com/cfusion/tdrc/resu me.cfm?urlSetId=517068062&language=en&downloadName=Adobe_Captivate_6_ E nglish_Mac&product=captivate_EN_US&loc=en_us",
                "cookiestring":"MM_TRIALS=12345",
                "resetdownload":false,
                "sequential":false,
                "originonly":true
            "urlsetid":"517068062"
      "updates":
        "files":
          "0:http://client.akamai.com/misc/dev/test-objects/query-auth/rand-1MB.bin":
            "prevNumHashFailures":0,
            "prevFailedBytes":0,
            "uniquerecv":1048576,
            "totalRecvWithOverhead":1295174,
            "localurl":"http://127.0.0.1:9421/api?function=serveFile&cid=0&url=http%3a%2f%2fcl ient.akamai.com%2fmisc%2fdev%2ftest-objects%2fquery-auth%2frand-1MB.b i n",
            "contenttype":"application/octet-stream",
            "totalrecv":1274400,
            "searchBlackout":true,
            "suberror":0,
            "url":"http://client.akamai.com/misc/dev/test-objects/query-auth/rand-1MB.bin",
            "verifiedBytes":1048576,
            "authToken":"B9AEABE14811798F125A9ACF6C7E10FF",
            "servableProgress":1048576,
            "appName":"Akamai",
            "prevPeerRecv":855040,
            "lastMTime":1365526501,
            "enableOpenFile":true,
            "path":"/Users/raimey/Applications/Akamai/Cache/client.akamai.com/mis c/dev/test-objects/query-auth/rand-1MB.bin",
            "failedBytes":0,
            "startTime":1365526494,
            "hashBlockSize":1048576,
            "completeMTime":1365526501,
            "sentSRStartMsg":true,
            "cid":0,
            "progress":1048576,
            "integrityVersion":"99844054d939b97221563594cdae8df21b946afd",
            "validPath":true,
            "gotSettings":true,
            "enableEndgamev2":false,
            "size":1048576,
            "name":"rand-1MB.bin",
            "prevVerifiedBytes":1048576,
            "integrityHashAlgorithm":"SHA1",
            "prevHashlessBytes":0,
            "firstByteCount":0,
            "peerForSpeed":false,
            "error":0,
            "prevTotalRecv":1274400,
            "cacheTimestamp":1365526501,
            "newDownloadMechanism":true,
            "downloadingTime":6967964,
            "enableEndgameForHttp":true,
            "sequential":false,
            "delayHttp":0,
            "lastByteCount":0,
            "integritySignature":"5 1 AES-128-CBC QMT5zfX0p2QbO/ZZZ9mbZZ54ILrG7S7ndRVkvHBChRBVPskdRLqSS9MpeVzGIvLy6OSf+ sMl0bKFn5uL9IJ8qRa/fuc6+D8jYZwRt5R2M6e64rifdF5iw0KWVMDZs1bBRHQAaF+Q7E X dd7pv5TE2jg1Q+Tv/1l/oP2NCN6/pb53XXz2j36olQctXrZAXGb6156wyZ8R433g1T68I Z B5N8g==",
            "timeTaken":6967750,
            "originurl":"http://client.akamai.com/misc/dev/test-objects/query-auth/rand-1MB.bin",
            "initiated":true,
            "srid":"TK6I98P93P",
            "owner":"raimey",
            "ghosts":
              "23.62.100.140",
              "23.62.100.157"
            "targetSpeed":2147483647,
            "sentSrDlComplete":true,
            "peerrecv":855040,
            "hashlessBytes":0,
            "numHttpRequests":3,
            "status":"COMPLETE",
            "transId":670703907,
            "originOnly":false,
            "queryAuth":"token=12345"
          "0:http://client.akamai.com/misc/dev/test-objects/cookie-auth/rand-1MB.bi n":
            "prevNumHashFailures":0,
            "prevFailedBytes":0,
            "peerrecv":1026048,
            "sentSrDlComplete":true,
            "uniquerecv":1048576,
            "totalRecvWithOverhead":1470783,
            "contenttype":"application/octet-stream",
            "totalrecv":1443432,
            "url":"http://client.akamai.com/misc/dev/test-objects/cookie-auth/rand-1MB.bi n",
            "verifiedBytes":1048576,
            "authToken":"DC6D7D58BEF29BD8C0E73992E56AA7B7",
            "suberror":0,
            "prevPeerRecv":1026048,
            "servableProgress":1048576,
            "appName":"Akamai",
            "lastMTime":1365526493,
            "searchBlackout":true,
            "failedBytes":0,
            "enableOpenFile":true,
            "path":"/Users/raimey/Applications/Akamai/Cache/client.akamai.com/mis c/dev/test-objects/cookie-auth/rand-1MB.bin",
            "startTime":1365526485,
            "hashBlockSize":1048576,
            "completeMTime":1365526493,
            "sentSRStartMsg":true,
            "cid":0,
            "progress":1048576,
            "integrityVersion":"f153a7f77da3f94a01107ed9347db49462159aa4",
            "validPath":true,
            "enableEndgamev2":false,
            "size":1048576,
            "name":"rand-1MB.bin",
            "prevVerifiedBytes":1048576,
            "integrityHashAlgorithm":"SHA1",
            "prevHashlessBytes":0,
            "firstByteCount":0,
            "peerForSpeed":false,
            "error":0,
            "prevTotalRecv":1443432,
            "cacheTimestamp":1365526493,
            "newDownloadMechanism":true,
            "downloadingTime":7857861,
            "enableEndgameForHttp":true,
            "sequential":false,
            "delayHttp":0,
            "lastByteCount":0,
            "integritySignature":"5 1 AES-128-CBC lUokOCmjinsvqP/A2btT51DeR8WDRTVygyqJuCNw48eKyOTItGVoMQw4124fNTdRhlbeM /TrsgbSladWuuUv95HxNTyLR5x6mo017K3xZZc7qXo73K8j62ObBkfLwYA6zeO//DK2tb 8 BeXOYZajEnKmKD5lt0ssPFmI2h5sgFBW6GCcbRt+JmiU3xKH/WZK4",
            "timeTaken":7857635,
            "originurl":"http://client.akamai.com/misc/dev/test-objects/cookie-auth/rand-1MB.bi n",
            "initiated":true,
            "srid":"E4MHYQJH9K",
            "localurl":"http://127.0.0.1:9421/api?function=serveFile&cid=0&url=http%3a%2f%2fcl ient.akamai.com%2fmisc%2fdev%2ftest-objects%2fcookie-auth%2frand-1MB. b in",
            "owner":"raimey",
            "ghosts":
              "23.62.100.140"
            "hashlessBytes":0,
            "numHttpRequests":3,
            "status":"COMPLETE",
            "transId":375175424,
            "targetSpeed":2147483647,
            "gotSettings":true,
            "originOnly":false
          "0:http://client.akamai.com/misc/dev/test-objects/basic-auth/rand-1MB.bin":
            "prevNumHashFailures":0,
            "prevFailedBytes":0,
            "uniquerecv":1048576,
            "totalRecvWithOverhead":1542325,
            "contenttype":"application/octet-stream",
            "totalrecv":1490944,
            "searchBlackout":true,
            "suberror":0,
            "timeTaken":10992325,
            "servableProgress":1048576,
            "appName":"Akamai",
            "prevPeerRecv":1200128,
            "lastMTime":1365526485,
            "enableOpenFile":true,
            "path":"/Users/raimey/Applications/Akamai/Cache/client.akamai.com/mis c/dev/test-objects/basic-auth/rand-1MB.bin",
            "failedBytes":0,
            "startTime":1365526474,
            "hashBlockSize":1048576,
            "completeMTime":1365526485,
            "verifiedBytes":1048576,
            "url":"http://client.akamai.com/misc/dev/test-objects/basic-auth/rand-1MB.bin",
            "authToken":"3D7D434F6AD8AE7E138F1F89E486A025",
            "transId":428527127,
            "sentSRStartMsg":true,
            "cid":0,
            "basicAuth":"bmV0c2Vzc2lvbjpwYXNzd29yZA==",
            "progress":1048576,
            "integrityVersion":"42d107726acd0bf5fce2d39a42d9474f75e44af8",
            "validPath":true,
            "gotSettings":true,
            "enableEndgamev2":false,
            "size":1048576,
            "name":"rand-1MB.bin",
            "prevVerifiedBytes":1048576,
            "integrityHashAlgorithm":"SHA1",
            "prevHashlessBytes":0,
            "firstByteCount":0,
            "peerForSpeed":false,
            "error":0,
            "prevTotalRecv":1490944,
            "cacheTimestamp":1365526485,
            "newDownloadMechanism":true,
            "downloadingTime":10992557,
            "enableEndgameForHttp":true,
            "sequential":false,
            "delayHttp":0,
            "lastByteCount":0,
            "integritySignature":"5 1 AES-128-CBC sbNAgPQMgMSmzSjlYM91y9IdbCUMlF5de+s5X4pVTq8SojyiBxxwlYyjuAIXTQqlKyPF5 f1b1O2Xo0/CpiuIqNOtPiWovaQo44vYGL+HwJW04NA+ptquOxZGtb9l07pqOerMz/6cts o H3tETpr9vbWd1jQWeriMGr6qA36YT3US0WbRm6N5lXqddPvh+EB4f",
            "originurl":"http://client.akamai.com/misc/dev/test-objects/basic-auth/rand-1MB.bin",
            "initiated":true,
            "srid":"F64QE31GWY",
            "localurl":"http://127.0.0.1:9421/api?function=serveFile&cid=0&url=http%3a%2f%2fcl ient.akamai.com%2fmisc%2fdev%2ftest-objects%2fbasic-auth%2frand-1MB.b i n",
            "owner":"raimey",
            "ghosts":
              "23.62.100.140"
            "targetSpeed":2147483647,
            "sentSrDlComplete":true,
            "peerrecv":1200128,
            "hashlessBytes":0,
            "numHttpRequests":35,
            "status":"COMPLETE",
            "originOnly":false
          "0:https://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin":
            "size":1048576,
            "prevNumHashFailures":0,
            "prevFailedBytes":0,
            "peerrecv":1347584,
            "sentSrDlComplete":true,
            "searchBlackout":true,
            "uniquerecv":1048576,
            "totalRecvWithOverhead":1589290,
            "suberror":0,
            "servableProgress":1048576,
            "appName":"Akamai",
            "prevPeerRecv":1347584,
            "lastMTime":1365526473,
            "failedBytes":0,
            "enableOpenFile":true,
            "path":"/Users/raimey/Applications/Akamai/Cache/client.akamai.com/mis c/dev/test-objects/no-auth/rand-1MB(2).bin",
            "startTime":1365526463,
            "hashBlockSize":1048576,
            "completeMTime":1365526473,
            "sentSRStartMsg":true,
            "cid":0,
            "progress":1048576,
            "integrityVersion":"9a5fa59976efbff28e6a78e1870a6c935a0f3fb1",
            "validPath":true,
            "enableEndgamev2":false,
            "name":"rand-1MB.bin",
            "prevVerifiedBytes":1048576,
            "integrityHashAlgorithm":"SHA1",
            "prevHashlessBytes":0,
            "firstByteCount":0,
            "peerForSpeed":false,
            "error":0,
            "prevTotalRecv":1523712,
            "cacheTimestamp":1365526473,
            "newDownloadMechanism":true,
            "downloadingTime":10291676,
            "enableEndgameForHttp":true,
            "sequential":false,
            "delayHttp":0,
            "lastByteCount":0,
            "integritySignature":"5 1 AES-128-CBC U8cfAdOvX53FzyuBPpCiKq8kjUIydTvcGzZ1LOzydcFFIiw+boatA4YC/96vDtJ0dx1Gv BulTMbNvvfQ21aUsGqNVOVxc8yL2Rtc7OMS5bLuEteTcWW7/74gGA9yl/vS5l0N/DH4OW T y9WGHhpnPcwGdMogykA0utctdgqT0D5JRbZa9bmgbjwRIdpwmMZ7I",
            "timeTaken":10291474,
            "originurl":"https://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin",
            "initiated":true,
            "srid":"MU8L50IER9",
            "owner":"raimey",
            "ghosts":
              "23.62.100.161"
            "url":"https://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin",
            "verifiedBytes":1048576,
            "localurl":"http://127.0.0.1:9421/api?function=serveFile&cid=0&url=https%3a%2f%2fc lient.akamai.com%2fmisc%2fdev%2ftest-objects%2fno-auth%2frand-1MB.bin",
            "hashlessBytes":0,
            "numHttpRequests":39,
            "status":"COMPLETE",
            "transId":664434707,
            "targetSpeed":2147483647,
            "gotSettings":true,
            "contenttype":"application/octet-stream",
            "totalrecv":1523712,
            "originOnly":false
          "0:http://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin":
            "size":1048576,
            "prevNumHashFailures":0,
            "prevFailedBytes":0,
            "peerrecv":1302528,
            "sentSrDlComplete":true,
            "searchBlackout":true,
            "uniquerecv":1048576,
            "totalRecvWithOverhead":1662962,
            "suberror":0,
            "servableProgress":1048576,
            "appName":"Akamai",
            "prevPeerRecv":1302528,
            "lastMTime":1365526462,
            "failedBytes":0,
            "enableOpenFile":true,
            "path":"/Users/raimey/Applications/Akamai/Cache/client.akamai.com/mis c/dev/test-objects/no-auth/rand-1MB.bin",
            "startTime":1365526453,
            "hashBlockSize":1048576,
            "completeMTime":1365526462,
            "sentSRStartMsg":true,
            "cid":0,
            "progress":1048576,
            "integrityVersion":"83c3ba74f4a95ccf51ea79f58772864545fa422f",
            "validPath":true,
            "enableEndgamev2":false,
            "name":"rand-1MB.bin",
            "prevVerifiedBytes":1048576,
            "integrityHashAlgorithm":"SHA1",
            "prevHashlessBytes":0,
            "firstByteCount":0,
            "peerForSpeed":false,
            "error":0,
            "prevTotalRecv":1613376,
            "cacheTimestamp":1365526462,
            "newDownloadMechanism":true,
            "downloadingTime":8823971,
            "enableEndgameForHttp":true,
            "sequential":false,
            "delayHttp":0,
            "lastByteCount":0,
            "integritySignature":"5 1 AES-128-CBC WsgpexCsLpfELz6IWq01BfkUi8nlTwtoRFE6OqKpAy4Mge8s2wHd1UQOOnalNeumM6792 HSDdvrn/+S8ec0W185JCmt7yD96UhChyBRTrEBxC0GwjF1Cq4iQddxVNfQo1ejX1uK8+D a O7M+3XBdbXh5mongpMaxwuSsAqzaaYZus5HBqa7vueiPEjHuMa3XC",
            "timeTaken":8823672,
            "originurl":"http://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin",
            "initiated":true,
            "srid":"GVJT7T6P27",
            "owner":"raimey",
            "ghosts":
              "23.62.100.140",
              "23.62.100.157"
            "url":"http://client.akamai.com/misc/dev/test-objects/no-auth/rand-1MB.bin",
            "verifiedBytes":1048576,
            "localurl":"http://127.0.0.1:9421/api?function=serveFile&cid=0&url=http%3a%2f%2fcl ient.akamai.com%2fmisc%2fdev%2ftest-objects%2fno-auth%2frand-1MB.bin",
            "hashlessBytes":0,
            "numHttpRequests":3,
            "status":"COMPLETE",
            "transId":269722074,
            "targetSpeed":2147483647,
            "gotSettings":true,
            "contenttype":"application/octet-stream",
            "totalrecv":1613376,
            "originOnly":false
          "0:http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg":
            "searchBlackout":true,
            "startTime":1365523437,
            "prevNumHashFailures":0,
            "totalRecvWithOverhead":13368644,
            "uniquerecv":13081600,
            "prevFailedBytes":0,
            "timeTaken":76991836,
            "size":2066340737,
            "hashBlockSize":2097152,
            "verifiedBitmask":"+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
            "failedBytes":0,
            "enableEndgamev2":false,
            "enableOpenFile":true,
            "path":"/Users/raimey/Downloads/Captivate_6_LS12.dmg.part",
            "gotSettings":true,
            "numHttpRequests":440,
            "hashlessBytes":0,
            "status":"FORBIDDEN",
            "sentSRStartMsg":false,
            "cid":0,
            "progress":12163072,
            "integrityVersion":"df91c70c95e3868d46d12c3536d67e31efbada14",
            "validPath":true,
            "initiated":true,
            "srid":"G326U1OY8Y",
            "urlSetIds":
    33 Views   1 Reply   Latest reply: loveeshKumar,      Apr 10, 2013 2:03 AM
    Was this helpful? Yes   No
    Replies
    1.loveeshKumar,Apr 10, 2013 2:03 AM   in reply to inkwomanReport 
    Hi Inkwoman, Thank you for contacting Adobe Support. Please use the below mentioned steps to download and install Captivate 6 for MAC : 
    First click on the URL below http://www.adobe.com/cfusion/tdrc/index.cfm?loc=en_us&product=captivat e
    Then login with you Adobe ID and Password (if needed).
    Then Copy and Paste the mentioned below URLs one by one  in the same window as shown below:                            http://trials3.adobe.com/AdobeProducts/CPTV/6/osx10/Captivate_6_LS12.d mg  Then Press Enter Key from the keyboard and save the above mentioned file one by one in any folder created on to the desktop.
    Then click on the DMG file to extract and install Captivate 6.
    Once the folder gets extracted and install Adobe Captivate 6
    Please let me know if you face any issue while downloading the software  Thanks and RegardsLoveesh

    Hi,
    Please check Private message under your Forum Account.
    Thanks.

  • Time Capsule timeouts when accessing secure web pages, downloading apps, backing up to iCloud, etc.

    Last week I upgraded my broadband connection to fibre, requiring me to install a different router because the Draytek one I had in place was not suitable, so I went for a Time Capsule.  My other devices are a 13” MacBook Air, an iPad 2 and an iPhone 4.
    Web browsing performance was immediately fantastic, with consistent readings on the Mac of 12ms ping, 35Mbps+ download speed and 1.5Mbps+ upload speed.  One oddity I did notice when running a speed test (using speedtest.net), but which I didn’t think about much at the time, is the time taken between finishing the download test and starting the upload test.  In my previous experience there would be only a few seconds between them, but on my new fibre connection through Time Capsule it takes anything from 30 seconds to a minute for the upload test to begin.
    However, a few days ago I tried to download some app updates in iTunes to the Mac, but after a wait I received a message that the network connection had timed out.  I tried again multiple times and each time the result was the same.
    I then Googled the problem to see what might be causing it, but I found I was not able to access any results from the Apple Support Communities pages because the browser would time out with a network connection error, or they would take an absolute age to load. Subsequently, I have also discovered that I cannot backup my iOS devices to iCloud (it tries for ages and then says there was an error), I cannot log in to any online accounts (the browser eventually times out with a network connection error) and I cannot send email from the mailbox that syncs with my work Exchange account.  I have also realised that the Apple Support Communities pages are secure, so the common theme seems to be there is a problem accessing anything that requires security/authentication/encryption.
    This is not a Wi-Fi issue as it is the same when I switch off Wi-Fi on the MBA and attach it to the router via an Ethernet cable.
    It is also not a Mac/iPad issue, as both function normally on my work Wi-Fi network.
    I have reached the end of my limited technical tether, so does anybody have any suggestions please?

    Hi,
    Many thanks for taking the time to respond.
    Bizarrely, after more than a week of problems and time wasted in trying to resolve them, I arrived home from work today to find that everything is working perfectly. The network is exactly as it has been all week and when I called my ISP they said they had changed nothing on the line, so it's a complete mystery.
    I'm happy it's working, but it would have been nice to understand what caused the problem, just in case it happens again.
    Anyway, thanks again and sorry for wasting your time.
    Gareth

Maybe you are looking for

  • Header text dump for the given purchase orders.

    Hello Gurus, Could you please help in pulling the report, which contains all the header text and the header note data for the  purchase orders. I tried EKKO and EKPO, these tables giving me all the data except the Header details ( we as the end users

  • HT4113 Ipod is disabled and I do not know how to get it unlocked.

    Granddaughter has Ipod and it is locked. I do not know how to reset the passcode and need help.

  • Macbook Pro: A Little Clarity?

    Hi, I have been battling temperature on my Macbook Pro, and I feel I have figured it out, but I was wondering (I don't think it is) but is is 60-65 degrees celsius considered in any way hot to run every day in that will it shorten the lifespan of my

  • Iomega Home media network drive & Time machine backups

    First timer guys, so go easy. :-) I have macbook pro. Upgraded from Snow Leopard to Lion couple of days ago. I have Iomega Home media network drive NAS box which I had setup for Leopard and my backups via time machine were working perfectly. I could

  • Printing, can it be made easy?

    Hello, I am trying to figure out a way to print the contents of a Jpanel in a JFrame. However, this Jpanel holds 1 to many other JPanels which may contain lables, textfields, a textArea, as well as some other things. Is this a hard and complicated th