J2se 1.5 jnlp installer extension

Has any one being successful in getting an installer extesion (using installer-desc) to run under j2se 1.5 webstart. It constantly fails with following error for me.
JNLPException[category: Launch File Error : Exception: null : LaunchDesc:[/b]
However this Runs well under j2se 1.4+
I am not sure this is a java bug or I am doing something wrong.
Any reply would be greatly appreciated.
Vajira

main jnlp file
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.5+" codebase="http://eslserver:9085/installer_web/launch/" href="$$name">
     <information>
     <title>FSOnline Desktop Client</title>
     <vendor>Future School</vendor>
     <homepage href="http://www.future.com.au"/>
     <description>Version 1.0</description>
     <description kind="short">FSOnline Desktop Client</description>
     <icon href="images/icon.gif"/>
               <icon kind="splash" href="images/splash.jpg"/>
     <offline-allowed/>
     </information>
     <security>
     <all-permissions/>
     </security>
     <resources os="Windows" arch="x86">
     <j2se version="1.3+" maximum-heap-size="250m"/>     
     <jar href="resources/app/rmiserver.jar"/>
     <jar href="resources/app/common.jar"/>     
     <jar href="resources/app/bsf.jar"/>     
     <jar href="resources/app/jaxp-api.jar"/>
     <jar href="resources/app/js.jar"/>
     <extension name="FSOnline Desktop Client Installer" href="installer-ext.jnlp"/>
     </resources>
     <application-desc main-class="com.fs.learner.core.rmi.FsdsRmiImpl">
          <argument>Main.htm</argument>          
          </application-desc>
     </jnlp>
installer extension is as follows
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.5+" codebase="http://eslserver:9085/installer_web/launch/" href="$$name">
     <information>
     <title>FSOnline Desktop Client Installer</title>
     <vendor>Future School</vendor>
<homepage href="http://www.future.com.au"/>
     <icon href="images/icon.gif"/>
     <offline-allowed/>
     </information>
     <security>
     <all-permissions/>
     </security>
     <resources os="Windows" arch="x86">
          <j2se version="1.3+" maximum-heap-size="250m"/>
          <jar href="resources/app/installer.jar"/>          
     </resources>
     <installer-desc main-class="com.fs.launch.core.Welcome"/>          
</jnlp>

Similar Messages

  • JNLP installer - cached vs. non-cached resources

    Hello,
    I am currently trying to provide an installation procedure for some application. The application is in java and made of multiple jars and plugins. One constrain is that the application can launch java commands on the plugins (requiring access to jar files). Hence, I prepared an installer/updater to work with jnlp so as to install the application on the user computer. Each time the application is launched, we need to check for plugin updates and download the updates to the adequate directory before actually launching the application (via a ProcessBuilder), meaning the installer needs to be called each time the app is launched.
    I went as far as I could but get stuck on some (possibly core) concepts: I have 2 jnlp files, one being the installer, referencing the base jar resources and a jnlp plugin resource being a component.
    Through jnlp api, the installer is able to get cached resources and copy them to a given directory for the app to be launched. The main issue concerns the resources to be upgraded. Whenever new resources are present, the app do not get to see them as jnlp download them an put them in the cached resources before my installer can be launched. I thought I could use a DownloadServiceListener to get a hold on new resources, adding it as a progress-class parameter, but the service is apparently never called.
    If the resources are set to lazy, they never get to be available in either cached or available resources for upgrade...
    Here are reduced versions of the resources :
    installer :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="6.0+" codebase="%CODEBASE%/apps/" href="">
         <information>
              <offline-allowed />
              <shortcut online="true">
                   <desktop />
                   <menu submenu="Company">
                        <menu submenu="App" />
                   </menu>
              </shortcut>
         </information>
         <security>
              <all-permissions />
         </security>
         <update check="always" policy="always" />
         <resources>
              <j2se version="1.6+" java-vm-args="" href="http://java.sun.com/products/autodl/j2se" />
              <jar href="jnlp-installer.jar" main="true" />
              <extension name="applicationResources" href="%CODEBASE%/JNLP?jnlp=resources" download="eager"/>
         </resources>
         <application-desc main-class="com.company.JnlpInstaller" name="App name" >
         </application-desc >
    </jnlp>
    plugins :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="6.0+" codebase="%CODEBASE%" href="">
         <information>
              <offline-allowed />
         </information>
         <security>
              <all-permissions />
         </security>
         <update check="always" policy="always" />
         <resources>
              <j2se version="1.6+" java-vm-args="-d32" href="http://java.sun.com/products/autodl/j2se" />
              <jar href="../jnlp-installer.jar" />
              %RESOURCES%
         </resources>
         <component-desc progress-class="com.company.CustomDownloadServiceListener"/>
    </jnlp>
    Thanks in advance for your returns

    I am having the same jnlp cache problems and would appreciate if someone can post a solution to this.
    I use jsp to generate a value for a variable and I pass this variable to the application via the "property name".
    tag. Problem is, JavaWebStart will always use the cached jnlp even when the variable's value changes.
    Thanks for any help you can provide.
    [email protected]

  • Installer Extension (update problem)

    Hi,
    I tried a little example with the installer extension of JWS. For the first time visit all is fine. The installer is starting and installs something (stupid :-).
    Also the second and third time visit all is running fine.
    So, I'm happy and try to modify my application. I expect that the installer will called to uninstall and then make a new install with the modified application.
    But when I try to call my new application I get an error.
    The application hangs during the initialisation process
    (downloading installer-descriptor).
    In the log I get the following error:
    java.lang.NullPointerException
         at com.sun.javaws.LaunchDownload$2.visitExtensionDesc(Unknown Source)
         at com.sun.javaws.jnl.ExtensionDesc.visit(Unknown Source)
         at com.sun.javaws.jnl.ResourcesDesc.visit(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkJNLPSecurityHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkJNLPSecurity(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Any idea?

    I've put my example in the web, see
    http://www.mpi.nl/world/tg/j2se/jnlp/test/installer/
    Main and Installer are opening exit-buttons each.
    I saw the Installer button once, but failed to see him again. Any hint appreciated.
    I get the same Exception as in the initial posting:
    as soon as any jar or jnlp file is updated (touched)
    JWS hangs and must be aborted. Log says NullPointerException at
    com.sun.javaws.LaunchDownload$2.visitExtensionDesc
    I can confirm what dmullens describes:
    setting _default.locallyInstalled=false
    in file ELinstaller.jnlp will allow you do get a new update.
    But this is no good! It will work only one time
    because the next update will set
    _default.locallyInstalled=true  back which reveals the bug again.
    I have two questions:
    1) Why don't I see the JFrame of the Installer?
    2) Can I change the source code in order to prevent the
    visitExtensionDesc Exception?

  • Could not download an installer extension

    Hi,
    I have a Macbook pro with retina display. I restarted it today and now all the programs i downloaded since i got the Mac are all gone. (vlc media player/utorrent). I tried installing them again but it keeps giving me an error could not download an installer extension. My firewall is already disabled and my settings are on "allow apps downloaded from anywhere". I do not have any VPN software and have verified and cleared my hard disk. I don't have any apple support where i am . Help  Please !!

    Well, you have turned off most of the protection on your Mac and you are downloading carpware from utorrents, now you wondering why things are disappearing. It sounds like you are getting just about what you should expect there.
    Please download and install EtreCheck from http://www.etresoft.com/etrecheck
    Run it and post the report here.
    Maybe we can help you to cleanup some of the damage you have done so far.

  • Installation extensions failed safari

    i tried to install extensions to safari, but always failed and the system answer was:
    "installation extensions failed, try later"
    extensions with firefox were no problem and work fine

    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Safari/Extensions
    Right-click or control-click the highlighted line and select
    Services ▹ Show Info in Finder (or just Show Info)
    from the contextual menu.* An Info dialog should open.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    What is the Modified date?
    If you don't have read and write access to the item, change the settings as directed here. Note, however, that if one file has wrong access settings, most likely others do as well. If the item is locked, unlock it.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Installer extensions and "uninstall". Still no chances?

    Hello,
    I've looked through this forum and found many questions about "uninstall" installer extension not invoking when application is removed. I have found out that "uninstall" is only invoked when removing the extension but not the application. This is also confirmed in this thread by dietz333: "...+uninstallers not run when removing an app is a known problem with JDK6. When we moved to a shared cache between javaws and plugin, we no longer uninstall extensions when uninstalling an app that uses them. This would be a problem if multiple apps and/or applets were using the same common extension. I suspect we can address this in a future update, at least if the extension is from the same codebase+."
    Most discussions of this problem is dated 2007 or earlier, so I hoped that this problem should be resolved by now, and also there's a [bug report|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6515728] with state "Fix Delivered". However, I'm using 1.6.0_05 and still get "uninstall" invoked only when removing the extension.
    Is there any chances it will work or I just need to forget about this feature?

    Hello,
    I've looked through this forum and found many questions about "uninstall" installer extension not invoking when application is removed. I have found out that "uninstall" is only invoked when removing the extension but not the application. This is also confirmed in this thread by dietz333: "...+uninstallers not run when removing an app is a known problem with JDK6. When we moved to a shared cache between javaws and plugin, we no longer uninstall extensions when uninstalling an app that uses them. This would be a problem if multiple apps and/or applets were using the same common extension. I suspect we can address this in a future update, at least if the extension is from the same codebase+."
    Most discussions of this problem is dated 2007 or earlier, so I hoped that this problem should be resolved by now, and also there's a [bug report|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6515728] with state "Fix Delivered". However, I'm using 1.6.0_05 and still get "uninstall" invoked only when removing the extension.
    Is there any chances it will work or I just need to forget about this feature?

  • Installer-extensions de-installation in JWS ?

    Hi List,
    The installer/de-installer stories of JNLP are really seducing. I'm about to maange to launch "jEdit" over JNLP.
    However, one of the main reasons for me to use JNLP is not so much automated installation but automated upgrade.
    Is there any kind of precise statements on how should an installer be called if the user requests an application requesting a previous or future version of a given instller-extension ?
    Also, I see no way for a user to manually de-install an extension... is it enough to de-install all applications depending on that ?
    Thanks.
    Paul

    An Extension Installer should implement a main that takes both "install" and "uninstall" args. Unfortunately, Java Web Start 1.4.2 never calls the main function with the "uninstall" arg when the installer is removed from the cache. This should be fixed in 1.5
    /Dietz

  • Please help this: JNLP association extensions confict with arguments

    Hello, Please help this:
    I use <argument> tag to transfer some parameters to JWS application.
    I also use <associatio> tag to associate a specila file(such as .zzz) to JNLP. But when I doulbe click .zzz file, my application only get "-open" and file path as argument, those parameters in <argument> tag in my jnlp are lost!
    What should I do

    ..Is this a bug for JWS? No.
    ..association extensions tag conflicts with <argument>?Quoting the 'JNLP Specification', section 3
    'JNLP file', part 5 'Descriptor Information', under
    association element/mime-type attribute
    "An application making such a request
    should be prepared to have its main
    method invoked with the arguments
    -open filename and -print filename
    instead of any arguments listed with
    the application-desc element."

  • Query regarding j2se tag in JNLP file for JRE 1.4.2_07

    Hi,
    Can the j2se tag take different servlet link other than "http://java.sun.com/products/autodl/j2se" in the href field.
    eg: <j2se initial-heap-size="64m" max-heap-size="512m" version="1.5+" href="http://localhost:8080/j2se"/>
    Since i am planning to download latest JRE from the sun site and place it my local server so that download time can be reduced for other users.
    Thanks in advance
    Bharath

    There is no utility that I'm aware of. The installer is InstallAnywhere from Zerog, and it uses the MS installer to actually do the install. So you can look at either Zerog or MS for one.
    Sun's Java 5 version has deployment information, including silent install options, at:
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/index.html
    I don't know if that exists for your version.

  • J2se 1.4.2 Installation Errror 'failed to extract file'

    Hi,
    I am running windows 2000 and am trying to install the J2SE v 1.4.2, SDK and keep on getting this error in the install shield:
    "Failed to extract file 'dll.ini' from binary table"
    I would be grateful if you could help me out why I am getting this error.
    Thanks in advance,
    smriti

    did you ever get this solved? I am having the same problem. I also tried the jdk and got the same error so it's likely not a download problem.
    thanks
    bill page

  • Does j2se element in JNLP support non-standard options

    I am trying to use options like -Xbootclasspath while starting the application to set search path for bootstrap classes and resources. Going by the documentation, it appears j2se supports options like initial-heap-size, max-heap-size but I could not find anything on Xbootclasspath.
    Any pointers are welcome.
    Thanks,
    Raman.

    No I'm sure you can't do this, it would open a huge security hole if you could. As webstart uses it's own classloaders it'd be pretty meaningless non the less.
    If your trying to override the java or sun packages (eg for running LumberJack) your going to be bang out of luck, in any case it'd be prohibited by the Java 2 binary code license even if webstart allowed it.

  • Automatich download JRE

    Hi,
    In the jnlp file it's possible to specifiy the jre version needed to run the application.
    Example :
    <j2se version="1.4+"/>
    Because I'm not sure that the JRE 1.4 is installed on the client machine and because the automatic download from the Sun site doesn't work I prefer to specify a location on my webserver.
    Example :
    <j2se version="1.4+" href="/MyProject/J2SE"/>
    I copied the j2re-1_4_2_04-windows-i586-p.exe file in the specified folder on my webserver.
    When I launch the jlnp file I receive the following error :
    Missing version field in response from server when accessing resource: (http://158.67.39.160/MyProject/J2SE, 1.4+)
    What is wrong, did I copy the wrong JRE file in the webserver folder ?
    What do they mean with 'missing version field' ?
    Any idea ?
    Thanx for you help,
    Piet

    First of all, webstart will request the jre using version based protocol, so you have to run a servlet or equivilant on the hosting webserver that implements the version based download protocol.
    Secondly, the thing pointed to isnt a windows executable (you have j2re-1_4_2_04-windows-i586-p.exe) but needs to be a jnlp installer extension.
    Finally, you need to abide by the java licensing agreement.
    You can get an example of how all this is done int the sdk of Java 1.5.0. The new samples directory contains both the sample jnlpservlet, and the sample jreinstaller.
    /Dietz

  • Deploying Application Without codebase and an extension (installer.jnlp)

    Hi,
    It seems that the deployment file can be relative to launch.html but the extension file requires the codebase attribute.
    This launch fails
    http://www.dksy.net/auctionzoom/downloads/download/jpawebstart-no-codebase/launch.html
    this launch succeeds
    http://www.dksy.net/auctionzoom/downloads/download/jpawebstart/launch.html
    In the second case, the codebase attribute is specified
    <jnlp codebase="http://www.dksy.net/auctionzoom/downloads/download/jpawebstart/" href="installer.jnlp" spec="1.0+">This reference documents the deployment file (launch.jnlp), but not the extension (installer.jnlp).
    http://java.sun.com/docs/books/tutorial/deployment/deploymentInDepth/deployingWithoutCodebase.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
        <head>
            <title>Test page for launching the application via JNLP No Codebase</title>
        </head>
        <body>
            <h3>Test page for launching the application via JNLP No Codebase</h3>
            <p><a href="javascript:deployJava.launchWebStartApplication('launch.jnlp');">Launch Paystation application</a></p>
            <script src="http://java.com/js/deployJava.js"></script>     
        </body>
    </html>
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <jnlp href="launch.jnlp" spec="1.0+">
        <information>
            <title>JPAWebStart</title>
            <vendor>AZ</vendor>
            <homepage href=""/>
            <description>JPAWebStart</description>
            <description kind="short">JPAWebStart</description>
            <shortcut online="true">
                <!-- create desktop shortcut -->
                <desktop/>
                <!-- create menu item for this app under the major heading -->
                <menu submenu="JPAWebStart"/>
            </shortcut>
            <related-content href="README.TXT">
                <title>Readme File</title>
                <description/>
            </related-content>
        <offline-allowed/>
    </information>
        <security>
            <all-permissions/>
        </security>
        <update check="background" policy="prompt-update"/>
        <resources>
    <j2se version="1.6+"/>
    <jar eager="true" href="JPAWebStart.jar" main="true"/>
        <jar href="lib/antlr-2.7.6.jar"/>
    <jar href="lib/asm.jar"/>
    <jar href="lib/asm-attrs.jar"/>
    <jar href="lib/cglib-2.1.3.jar"/>
    <jar href="lib/commons-collections-2.1.1.jar"/>
    <jar href="lib/commons-logging-1.1.jar"/>
    <jar href="lib/dom4j-1.6.1.jar"/>
    <jar href="lib/ehcache-1.2.3.jar"/>
    <jar href="lib/jdbc2_0-stdext.jar"/>
    <jar href="lib/jta.jar"/>
    <jar href="lib/hibernate3.jar"/>
    <jar href="lib/hibernate-tools.jar"/>
    <jar href="lib/hibernate-annotations.jar"/>
    <jar href="lib/hibernate-commons-annotations.jar"/>
    <jar href="lib/hibernate-entitymanager.jar"/>
    <jar href="lib/javassist.jar"/>
    <jar href="lib/ejb3-persistence.jar"/>
    <jar href="lib/derby.jar"/>
    <jar href="lib/log4j-1.2.15.jar"/>
    <jar href="lib/jardiff.jar"/>
    <jar href="lib/jnlp-servlet.jar"/>
    <jar href="lib/jnlp.jar"/>
    <extension href="installer.jnlp" name="Installer" version=""/>
    </resources>
        <resources>
            <jar href="JPAWebStartMain.jar" main="false"/>
        </resources>
        <application-desc main-class="demo.main.JPADemo">
        </application-desc>
    </jnlp>
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp href="installer.jnlp" spec="1.0+">
        <information>
            <title>Installer</title>
            <vendor>AZ</vendor>
            <offline-allowed/>
        </information>
        <security>
            <all-permissions/>
        </security>
        <resources>
            <j2se version="1.6+" />
            <jar href="installer.jar" main="true" />
        </resources>
        <installer-desc main-class="com.az.installer.Installer">
            <!-- Application Arguments -->
        </installer-desc>
    </jnlp>

    Can't see any question mark and can't actually guess one, you wrote out quite a dissertation on it. Are you giving away 10 dukes for the first one telling you 'CORRECT!' (I really hope so)?
    Bye.

  • J2se version="1.6+" in JNLP not working on a client with Java 1.5

    Hi all,
    In my deployment scenario I have two jnlp files, one for the app and one for its installer extension. The deployment process works fine on a client with J2SE 1.6 but there are some problems when the client has an older Java installed.
    I am trying to enforce a J2SE 1.6 version for my app deployed with WebStart and I have found that
    <j2se version="1.6+" ...> has no effect.
    The solution that I have found was to change "1.6+" into "1.6.***" and thus the JWS will download and install JRE 1.6 (however I was expecting it to download the latest JRE (update 16) but it installs 1.6 update 7).
    Could anybody confirm that?
    Thank you in advance.

    Thanks for the reply. I think Sun should update the auto-downloaded jre from 6u7 to the latest one.
    But this is a minor issue. The problem from my post is that you cannot impose a j2se version number 1.6 or greater. IOW <j2se version="1.6+" ... > has no effect. I have tested this on a clean win xp machine that had installed only j2se 1.5.
    I think it is a bug in jws but I want to check this issue with others.

  • Extension Installer in infinite loop

    Hi,
    I'm trying to use an Extension Installer to install some extra files for my application. I've searched the forum for problems with the Extension Installer and I've seen a few posts, even the same problem I'm having. But none of the suggestions have helped.
    When I run the Extension Installer locally on my own machine it works just fine. However when I move the code to access over the internet the extension installer gets stuck in an infinite loop and my application will never start. And yes, my installer ends with eis.installSucceeded(false).
    Based on other messages in the forum, these are some of the things that I've tried, to no avail:
    1. Add System.exit(0) as the very last statement in my installer.
    2. I don't specify a port in my codebase in either the application jnlp or the extension jnlp.
    3. The webserver is running on the default port (80).
    4. Tried adding "javaws.cfg.forceUpdate=false" to my javaws.cfg file.
    I'm using JWS 1.0.1_02. My web server is IBM HTTP Server. The machine that I'm trying to install to is running W2K.
    Anyone have any suggestions?
    Thanks,
    Beth

    The funny thing is that with you it seems to happen
    during
    one JWS launch session.
    So I wonder why JWS will run k instances of your
    Extension
    installer.
    You don't have an <extension> tag in the jnlp file of
    your extension
    installer, creating an infinite recursion?
    Yes, I wonder why I get multiple instances of the Extension Installer. And also that it works fine if everything is running on my local computer. If I just change the codebase and run everything over the internet is when I get it an infinite loop. Any ideas would be greatly appreciated.
    If it will help, here are my .jnlp files:
    Extension:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for SpellChecker Installer -->
    <jnlp     spec="1.0 1.0+"
         codebase="http://apsrv176.ctt.com/bethTest" >
         <information>
              <title>NGS SpellChecker Installer</title>
              <vendor>Vendor</vendor>
              <homepage href="docs/help.html"/>
              <description>SpellChecker Installer</description>
              <description kind="short">Install the SpellChecker files</description>
         </information>
    <security>
    <all-permissions />
    </security>
         <resources>
              <j2se version="1.2"/>
              <property name="ngs.root" value="NGS"/>
              <property name="spellchecker.home" value="SpellChecker"/>
              <jar href="SpellChecker/SpellCheckerInstaller.jar"/>
         </resources>
         <installer-desc main-class="com.ngs.spellcheckerinstaller.SpellCheckerInstaller" />
    </jnlp>
    Main:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for test application -->
    <jnlp     spec="1.0 1.0+"
         codebase="http://apsrv176.ctt.com/bethTest" >
         <information>
              <title>NGS Application</title>
              <vendor>Vendor</vendor>
              <homepage href="docs/help.html"/>
              <description>NGS</description>
              <description kind="short">NGS</description>
              <icon href="images/ngs.jpg"/>
         </information>
         <security>
              <all-permissions/>
         </security>
         <resources>
              <j2se version="1.2" initial-heap-size="64m" max-heap-size="64m"/>
              <property name="ngs.root" value="NGS"/>
              <property name="spellchecker.home" value="SpellChecker"/>
              <jar href="jars/NGSMainForm.jar"/>
    <snip... lots of other jars>
              <nativelib href="jars/bridge2java.jar" />
              <extension href="Third_Party_Jars.jnlp" />
         </resources>
         <resources>
              <extension
                   name="SpellCheckerInstaller"
                   href="SpellCheckerInstaller.jnlp">
              </extension>
         </resources>
         <application-desc main-class="NGSMainForm"/>
    </jnlp>

Maybe you are looking for

  • VM on Hyper-V runs ver slow

    We are running Hyper-V on windows 2012 R2 servers. VMs on one of 4 Dell PowerEdge servers run very slow. I have tried different OS such as windows XP and Windows 7. All have the same issue. If I move the VM to different Hyper-V host, it runs normal.

  • 'Structured' error handling and reentrancy

    The parentheses in the subject are due to the fact that I'm not using the Structured Error Handler reference library, but have rolled my own to do something similar but in the manner I want it to. I don't actually use the SEH (haven't even got it ins

  • What Monitor Brightness is required for Accurate Editing ?

    My 26 inch NEC monitor was 5 years in March this year. For the first 3 years or so I was easily able to achieve the Maximum Luminance of 110 candelas per square metre (cd/sqm) recommended by the Match 3 software supplied with my Gretag Macbeth Eye-On

  • SD pricing based on Batch characteristics

    Hi, I have a requirement whereby the pricing in the billing document is dependent on the batches in the delivery document. Eg. For a single material, I may two batches each one having its % of impurities - 2% for the Batch 1, and 5% for Batch 2 in th

  • Macbook Retina says it cant play hd downloaded from iTunes

    I have one of the new MacBook Pro Retinas, and just tried to buy and download a movie in HD from iTunes. iTunes complained that my computer would not allow me to watch the movie in HD, and offered to let me buy the SD movie instead! I figure it was s