Offline Mode - command line

Hi,
How can i launch my app in offline mode from a command line ? I have added
<offline-allowed/> to my Jnlp and use the following
java -Djnlpx.home="c:/program files/java web start" -cp "c:\program files\java web start\javaws.jar" com.sun.javaws.Main http://localhost/tech/tech.jnlp
The application gets downloaded and runs fine. Now if i turn of the Web Server (IIS), then try the above command it won't work. Shoudn't it work as the offline tag is present in local jnlp ? I thought webstart would be using its local cache if the web server is down, as long as the offline tag is present.
With the Offline tag, Offline mode does work fine from webstart application manager even when the Web server is down. Is there a switch to do the same using the above command line ?
Any response is much appreciated.
Best regards,
zap

Marc, thanks for the prompt reply.
I guess its a subtle confusion on my part with the use of offline-mode. From the webstart app manager, i did click the connector plug-icon and the application got launched from the local cache correctly. The scenario is that the the web server is down but the machine still connected to the network and hence my program even does network stuff. Now when i tried to launch the application from command line and still providing a URL argument instead of a path of the Jnlp in the cache, it didn't work. I had thought that either there might be an offline switch in the command line or javaws would automatically launch the jnlp from the local cache even when provided with a bad Url argument. But in the absence of the above, i have now explicitly indicated the local Jnlp path and the following is working fine from the command line in the above context (web server down).
java -Djnlpx.home="c:/program files/java web start" -cp "c:\program files\java web start\javaws.jar" com.sun.javaws.Main "file:///C:/Program Files/Java Web Start/.javaws/cache/http/Dlocalhost/P80/DMtech/AMTechClient.jnlp"
Thanks again.
Best,
zap

Similar Messages

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • SINGLE MODE COMMAND LINE

    Im not to sure if I've accidentally changed a setting in the application 'terminal' before it started playing up but when i start it in single mode now the command line says "-sh-3.2#" instead of something else i forgot what it was at the beginning but it ended with "root #"
    Does anybody know how to change it back to that

    What does it show if you hit enter at that point?
    http://www.westwind.com/reference/os-x/commandline/single-user.html

  • WDS 2012 standalone mode command line configuration

    To configure WDS on command line I can run this: wdsutil /initialize-server /reminst:E:\RemoteInstall
    However, I'd like to initialize WDS in standalone from the command line. Any ideas?
    Thanks!

    Well here's a really ugly way to do it with autohotkey:
    Run, WdsMgmt.msc
    WinWait,Windows Deployment Services,Windows Deployment Services
    WinActivate
    Sleep 1000
    ControlSend,SysTreeView321,{Down},Windows Deployment Services
    Sleep 1000
    ControlSend,SysTreeView321,{Right},Windows Deployment Services
    Sleep 1000
    ControlSend,SysTreeView321,{Down},Windows Deployment Services
    Sleep 1000
    Send {Alt}+a
    Sleep 1000
    Send c
    WinWait,Windows Deployment Services Configuration Wizard,You can use this wizard to configure Windows Deployment Services
    ControlClick,&Next >,Windows Deployment Services Configuration Wizard
    WinWait,Windows Deployment Services Configuration Wizard,Select one of the following options
    ControlClick,&Standalone server,Windows Deployment Services Configuration Wizard
    Sleep 1000
    ControlClick,&Next >,Windows Deployment Services Configuration Wizard
    WinWait,Windows Deployment Services Configuration Wizard,The remote installation folder will contain boot images
    ControlSetText,Edit1,E:\RemoteInstall,Windows Deployment Services Configuration Wizard
    Sleep 1000
    ControlClick,&Next >,Windows Deployment Services Configuration Wizard
    WinWait,Windows Deployment Services Configuration Wizard,You can use these settings to define which client
    ControlClick,&Next >,Windows Deployment Services Configuration Wizard
    WinWait,Windows Deployment Services Configuration Wizard,You have successfully configured Windows Deployment Services
    ControlClick,&Add images to the server now,Windows Deployment Services Configuration Wizard
    Sleep 1000
    ControlClick,Finish,Windows Deployment Services Configuration Wizard
    Exit, 0

  • How to start up MAC mini only in the verbose mode (command line) , no GUI

    Can anyone let me know how I can set up the mac mini to ALWAYS boot into a verbose mode only, no GUI interfaces at all?
    Mac Mini   Mac OS X (10.4.6)  
    Mac Mini   Mac OS X (10.4.6)  

    Hi, Andy your replies are really helpful. I did tried your method and also followed the link http://www.oreillynet.com/pub/h/348
    Now my mac mini - Tiger seems hanging forever at the boot up screen. A Apple log showed up with a message "Starting Mac OS X ..." and now almost 5 minutes passed, nothing happened ...

  • Offline Bookmarks - Command-line utility

    Hello,
    I'm working on zsh script that (wget -pk)'s  a webpage for offline viewing. Includes options for easy viewing and listing.
    I have one problem. I am unsure of what type of file system i should use to store/organize everything.
    Right now i have this
    BOOKMARK_DIRECTORY
    |- all
    |- tags
    So all bookmarks are downloaded into there own folder under "all"
    When a user creates a bookmark, he can specify tags. For each tag, a directory under "tags" is created with the tag name, and a symlink is created to the bookmarks hardcopy in "all"
    It works, but it feels stupid. Maybe thats just inexperiance.
    Anyways, any better ideas?

    You could store the same data in a database like sqlite or mariadb. Those databases are quite handy if you have large amounts of data and enable you to easily expand your database if you want to store more meta data (or rearrange it). On the other hand, if you just want to add some tags to some bookmarks those databases might be overkill.
    If you want to get into SQL and the database stuff, you could give sqlite a try. If you think, that your file based solution gets the job done perfectly for you, just stick with it.

  • Can't change activation only mode to off using the command line in Windows 7 64 bit

    I used the command line to turn activation only mode on and now when I use teh command to turn it off it will not change the iTunes setup. I am on Windows 7 64 bit. I tried uninstalling itunes and reinstalling and it is stillin activation only mode.

    Hi! Thx for your quick reply! I am still unsure what to do tho---see my questions below in bold:
    Windows 7 comes with its own version of the standard PostScript driver. = Where is this driver? I have no idea how to find it, it doesn't show up in my Printer menu in FM?
    Given that PostScript generated by a driver can be highly device-specific, you need to install the driver as modified by the PPD file for the device in question. Most printer manufacturers in fact provide a PostScript driver installer that associates their printer's PPD file with the standard Windows Printer driver and subsequently creates what is called a PostScript printer driver instance for the particular device on the I/O port you designate. = ??? I've only updated a PPD file for watermarks and have no idea what this means...is there a step-by-step instruction for this? I just need to download a PS driver to select that works & doesn't freeze up my FM when creating a .ps file.
    The real question thus is exactly what are you trying to generate PostScript for? = I create a PS, & then use Distiller to create a PDF. This enables me to have a PDF that automatically has Bookmarks, the TOC/LOF/LOT & all corss-refs are hyperlinked, etc.
    If you are trying to create PostScript for distillation into PDF, Acrobat installs a PostScript driver instance of its own, labelled Adobe PDF, that is associated with the Acrobat Distiller PPD. = I have tried the Adobe PDF selection from my Printer menu in FM, but it freezes up FM and I have to close the whole program & no PDF generates.
    BTW, although you may be successful in installing and running FrameMaker 8 on Windows 7, in fact Adobe officially does not support FrameMaker 8 on Windows 7. = I don't know what to say---the upgrade is too expensive for some of us folks out here right now, so we all need to work with what we have for now!
    I appreciate your help, thank you.

  • CANNOT_START-UP: Stars in Command-Line-Mode: "Deallocation of a pointer not

    HELLO EVERYONE, PLEASE CAN YOU HELP ME...
    My computer: Mac OS X (10.3.9) had froze, couldn't force quit..and i forced started it by holding the power button. Restarted it, came on: the grey-screen and apple, spinning-gear...satayed like that long time then it went into Command-Line_Mode.
    Darvin,
    UserName:
    Password:
    I enterded UserName and Password, but could not start in normal ways.
    Now when I start-up the computer, Command-Line opens with only:
    :/root#
    and a curser-point.
    I have been reading all the leads that I found in the discussions, tryed most of the suggestions: fsck (/sbin/fsck -fy), Safe-Mode (didn't start in), couldn't start up from CD.
    COMMAND-LINE (at one time it said like this):
    *God boot device= IOService:/MacRISCZPE?pci@f2000000/AppleMacRiscPCI/*
    *mac-io@17/AppleKeyLargo/ata-4@1f000/KeylargoATA/ATADeviceNum@0/IOATABlockStorag eDrive/IOATABlockStorageDevice/IOBlockStorageDriver/ST340810A.Media/IOAppleParti tionScheme/MacOS@5 BSD root: diskOs5, Major 14, minor 5*
    *Feb 22 14:32:25 mach_init[2]:Started with uid=0 audit-uid=-1*
    *Feb 22 14:32:25 init:ignoring exwss arguments/etc/rc.boot:cannot dublicate*
    *fd-1048577 to fd 1: Bad file descriptor*
    **malloc[3]: Dealocation of a pointer not malloced: 0x710; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug*
    *at an other time after using fsck*
    Command-Line-Interface:
    *:root#/sbin/fsck -fy*
    **/dev/rdiskOsF
    *Root file System*
    *Checking HFS Plus volume.*
    *Checking Extents Overflow file.*
    *Checking Catalog file.*
    *Keys out of order*
    *(4, 8874)*
    *Rebuilding Catalog B-tree.*
    *The Valume Macintosh could not be repaired.*
    PLEASE HELP!
    WHAT Should i do?
    If nothing works, could i start-up from OS 9.2.2? (Both Systems OSX and OS_9.2.2 were installed)
    If the B-tree is corrupt, does it being shared by both OSX and OS_9.2.2?
    THANK YOU

    Hi Kappy,
    Thank you for taking an interest.
    I already tryed to start_up from CD, but it either didn't started-up
    or it started still in Command-Line-Mode.
    Put the CD in the tray, startedUP with the C_Key Held.
    It took a little longer and seemed it was going to start from CD but went into CommanLine again.
    but instead of
    :/root#
    it said something else, something like:
    2e_sh.. (Something! i could redo it and write it down here if it will help)
    Other times i tryed to bootUP from CD by holding-down the Option-Key and saw the install-CD icon next to
    OSX-Icon, so i chose the CD and hit the Straight-ARROW-Icon to start up from the CD, but again it fell
    into CommandLine.
    If i try the Target-Disk-Mode with a healty-Mac, could i be able to see my HD. Then i can switch to
    OS_9.2.2 which i spose is healty because i was using OS_10.3 when this problem happened. And the way
    i think, if the B-tree Catalog is not being shared by both Systems, if each have its own one, then the
    OSX's B-tree Catalog have been corrupted, not OS9's, and so if i could change the start-up-system(Disk)
    somehow, i could be able to start the computer with OS_9.2.2 running. Both systems were installed,
    and i was switching back and forth between them. Then i can fix my computer by, at least, starting
    to throw away some of the junk and so making some free-space.
    I had read that HD should not be full more than 85%. I had 2.5GB space left out of 40GB.
    But if there is a risk that things like this could happen because your HD is too full;
    why arn't they (Apple) fix this, buy, at least, showing as if you HD is full before it gets
    too full to leave a safety net for the B-tree Catalog files evidently that need to be written
    in continuous blocks on the HD.
    So thank you again, and keep me posted if you might think something else could fix my computer. I need
    this computer.
    thanks

  • Error message in Command line (cannot mount database in EXCLUSIVE mode)

    Hello Experts
    I'm new in Oracle and trying to connect to my database though SQL command line. After I login as SYS I user I get the message that 'connected to idle instance'. Then I use “STARTUP” to connect to database. Now from my understanding it should mount the database and open it as well. But it does'nt happens.Instead I get the message 'cannot mount database in EXCLUSIVE mode' . I'm not sure why it can't mound the database and what should I do to make it working. Please can somebody show me how to make it working again. Here are the details about my problem
    Enter user-name: SYS as SYSDBA
    Enter password:
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 595591168 bytes
    Fixed Size 1220748 bytes
    Variable Size 301993844 bytes
    Database Buffers 285212672 bytes
    Redo Buffers 7163904 bytes
    ORA-01102: cannot mount database in EXCLUSIVE mode
    Thanks a lot in advance.

    Thank you so much for both of you. I've checked everything. All looks fine to me and then i tried to connect though SQL and it worked. Now what I've notice that this time I didn't start Enterprise Manager only I started the listner and then start sql it worked. Does this means that I can't use both SQL and EM at a time together?

  • Is there a command line option for VNC to automatically launch in fullscreen mode?

    I can launch a VNC window from the command line, as such:
    open vnc://username:password@hostname
    ... but I'd like it to automatically start in full screen mode. Is there a command line option for this?
    I'm using an old MacMini purely to connect to another Mac over screen sharing, but when the MacMini boots I'd like it to go straight into the fullscreen of the other desktop.
    Many thanks!

    Set the Integer pref browser.sessionstore.max_resumed_crashes to 0 on the about:config page to get the about:sessionrestore page immediately with the first restart after a crash has occurred or the Task Manager was used to close Firefox.
    * http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes
    That will allow you to deselect the tab(s) that you do not want to reopen, but will allow to reopen other tabs.
    See:
    * http://kb.mozillazine.org/Session_Restore#Restoring_a_session_after_a_crash
    * http://kb.mozillazine.org/Browser.sessionstore.max_resumed_crashes

  • Opening pdf in read mode by using command line

    In adobe reader there is an option "Read mode"(In view menu). I want command line by which a pdf can be opened directly in read mode.

    Not possible.

  • Crystal Reports in Command Line mode

    Where can i find a complete list of the different parameters i can use crystal reports in command line mode with?

    Command-line mode?
    Sincerely,
    Ted Ueda

  • HT3924 Target display mode connects but only displays desktop background, no files or command lines

    I have connected my early 2014 MacBook to a late 2012 imac and connected them via Thunderbolt cable.  Pressing Command F2 causes the screen on teh iMac to change to teh MacBook background screen, but does not display any desktop files or command lines.  Any ideas how to fix this?

    Hi tdmone,
    Welcome to the Support Communities!  The resource below may help you with the Target Display Mode options for connecting your Macbook and iMac:
    Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support
    http://support.apple.com/en-us/HT3924
    The table below shows iMac computers that support TDM, the required cables, and the port of the computer to which you are connecting the iMac.
    iMac Model
    Cable Supported
    Port on Source Computer
    iMac (27-inch Late 2009)
    Mini DisplayPort to Mini DisplayPort
    Mini DisplayPort or Thunderbolt
    iMac (27-inch Mid 2010)
    Mini DisplayPort to Mini DisplayPort
    Mini DisplayPort or Thunderbolt
    iMac (Mid 2011)
    Thunderbolt to Thunderbolt
    Thunderbolt
    iMac (Mid 2012 and later)
    Thunderbolt to Thunderbolt
    Thunderbolt
    Are you connecting via the Thunderbolt ports on both computers?
    How do I enable TDM?
    Make sure both computers are turned on and awake.  
    Connect a male-to-male Mini DisplayPort or ThunderBolt cable to each computer. 
    Press Command-F2 on the keyboard of the iMac being used as a display to enable TDM. 
    Note: In Keyboard System Preferences, if the checkbox is enabled for "Use all F1, F2, etc. keys as standard functions keys," the key combination changes to Command-Fn-F2.
    Can I use a third-party keyboard or older Apple keyboard to enable TDM?
    Some older Apple keyboards and keyboards not made by Apple may not allow Command-F2 to toggle display modes. You should use an aluminum wired or wireless Apple keyboard to toggle TDM on and off.
    I hope this information helps ....
    - Judy

  • Latest DNG converter not working in command-line mode

    Today I downloaded Adobe's latest DNG converter. It is failing with both .NEF and .CR2 files when run in command-line mode. It does appear to work in GUI mode. The switches+arguments I've used for my tests are:
    -u -e -p1 filename.CR2
    (or filename.NEF)
    With an older (CS2) version of the converter, the above arguments produce a .DNG output file as expected (with .CR2 files; I didn't try it with D3 .NEF files; surely that older version doesn't support the D3's format).
    With the very latest version, running the program with the above command produces no output. There's no error message.
    The 'readme' file that comes with the converter doesn't include any information about command-line usage, but I did find a PDF file covering this (adobe.com/products/dng/pdfs/dng_commandline.pdf). The switches+arguments shown in the PDF file appear to be exactly the ones I used in the past.
    I'm sure I'll need to use the most recent version to convert D3 RAW files. Is there something wrong with how I'm specifying its command-line switches/arguments?

    It struck me silly that I've been running tests with v.3.3 when 5.2 is the latest, so I downloaded it. The setup "wizard"...hmm, why is it a "wizard"? It provides no choice of installation path. I didn't realize this because immediately after I'd launched it, I knocked something onto the floor, reached down to pick it up ... and looked back up just in time to see the "wizard" complete the installation...but where, I didn't know. It didn't display any information about where it had installed the app. Adventures In Discoverability. :) I hunted around on the hard drive until I found it (C:\Program Files\Adobe -- well, at least you can launch it if you think to look for it in the 'Start' menu). So ... that needs a bit of work. Anyway, I copied the app into a directory of my choice -- one that's in my system's %PATH%, replacing spaces in the name with underscores. It works fine in that directory -- no problem with the name-change as far as I can tell. Now back to the fun stuff...
    This version doesn't seem to require a fully qualified path to the input file or to the output directory when "-d" is used. That's an improvement. IOW, this worked:
    converter -p1 -d DNG filename
    where "converter" is the program's name, "DNG" is the name of a subdirectory of the directory where I'm running the test, and "filename" is the name of a RAW file in that directory.
    The program still doesn't know how to create a directory (or ask about creating one if it doesn't exist). Fails silently if "-d" is used and the specified directory doesn't exist. But at least this version returns an exit code of 1 due to the failure -- better than returning 0.
    Still doesn't understand wildcards. Hope done sprang eternal there for a moment, but oh well. Back to "for" loops...
    Still fails silently, returning exit code 0 (oops), if a nonsensical command-line is used (e.g., using "-c" as the only argument).
    Hey, how about a truly silly command-line error -- a command line including both "-c" and "-u". What happens? It "consumes" the first of the two mutually exclusive switches, ignoring the second -- you get a compressed DNG file. Swap the order of the switches, and you get an uncompressed file. (I'd vote for a syntax-error message in that case, m'self.)
    Interestingly strange little program...If I run it from the command line, it drops back to the command line immediately after I press ENTER. That makes it appear to have failed. But it hasn't -- it's running in the background, and a few seconds later the DNG file is created. But, if I run it from within a batch file, it does NOT return control to me until it has completed writing the output file. Wonder what's up with that.
    Fun stuff. :)

  • RunInstaller in command line mode

    Hi All
    Can I runInstaller in command line mode without using the GUI?
    I download linux_11gR2_examples.zip and upload it onto my Amazon AMI
    I would like to iinstall the examples but I am not able to set xdisplay so how I can get around this?
    -Thanks for all your input

    Hi;
    Please see below doc
    http://download.oracle.com/docs/cd/E11882_01/install.112/e16763.pdf << Oracle Database Installation Methods
    By the way why you can not xdisplay? What is error?
    Please see:
    Re: 11gR2 Grid Infrastructure cannout launch installer OEL 5.5
    Regard
    Helios

Maybe you are looking for

  • Can't copy file with # in name to Panther server

    I have this problem with any file that has a "#" in its name, which is fairly common on Mac OS X , I think (the result of certain programs truncating the name) For example, from a computer running Panther, I can copy the file "list all movies in path

  • Troubles reinstalling Mountain Lion

    I installed a new hard drive in my mac and want to do a fresh install.  I did the firmware upgrade for internet recovery to my mid-2010 macbook pro and am trying to use internet recovery to reinstall mountain lion.  It says that my apple ID has not p

  • No option to accept End User License Agreement?

    I am using a macbook pro, and have been using adobe reader for the past few weeks without problem. Now, as I try to open web-based pdf files for my immigration application, I get the message saying I must launch adobe and accept the EULA before I can

  • Messages (-1) error - can't send or receive messages

    Haven't been able to send or receive messages since last night. Error shown in link below. Really strange. Don't remember doing anything in particular that might have caused it. http://img217.imageshack.us/img217/6581/photogo.png

  • Air for ios optimization with bitmap break apart

    Hi, I'm developing an ios game with Flash CS5.5, and tries to optimize it as much as possible. I use bitmaps and GPU, but there is one thing I haven't found an answer to. I'd like to fill a background with bitmap tiles. An easy way (for me) to achiev