Syntax for update descriptor description file?

I'm looking to update my AIR app and I have that working. But what is the syntax for the description in the update descriptor file? How can I add a description that has multiple lines??
Kyle

Hi Kyle,
Are you referring to the updater framework?  You should be able to do this using simple line breaks.
http://www.adobe.com/devnet/air/articles/air_update_framework.html
Chris

Similar Messages

  • JNLP API: Programmatically checking for updates to JNLP file

    I have a webstart application, and I'd like to add a function to check for updates while the program itself is running. DownloadService2.getUpdateAvailableResources checks for updates in the JAR file, but not the JNLP file that launched the application. If I deploy new versions of the JAR files I get prompted, but if I add a new JAR file to the JNLP file I don't.
    Is there any way to check for updates to the JNLP file?
    Also, is there a way to programmatically trigger a background update, so that when the app is next launched it's updated?

    rcasha wrote:
    I have a webstart application, and I'd like to add a function to check for updates while the program itself is running. DownloadService2.getUpdateAvailableResources checks for updates in the JAR file, but not the JNLP file that launched the application. If I deploy new versions of the JAR files I get prompted, but if I add a new JAR file to the JNLP file I don't.
    I assume you passed in a resource spec with type == ALL or APPLICATION ? If so, it sounds like you need to file a bug with details like JRE version, the JNLP desc. involved.
    Is there any way to check for updates to the JNLP file?Yes, call getUpdateAvailableResources(spec) with spec.type == APPLICATION. This supposes to work.
    Also, is there a way to programmatically trigger a background update, so that when the app is next launched it's updated?Try adding this to your JNLP:
    <update check="background" policy="always"/>
    For more details, see: http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html#update

  • Oracle Syntax for Update with Join

    Can anyone help with the Oracle Syntax on and update that includes a join?
    This is what I've got:
    Update
    (SELECT a.DOCUMENT_NO
    From DOCUMENT_CONTROL a, DOCNOTEST b
    where a.DOCUMENT_NO = b.DOCUMENT_NO)
    set a.PATH = NULL
    Everything I try leads to another error message. With the current code I'm getting the error message: ORA-00971 a.path invalid identifier.
    I am much more familiar with SQL Server (if you can't tell :) This is the way I would write the above in SQL Server.
    UPDATE DOCUMENT_CONTROL
    Set [Path] = ''
    FROM DOCUMENT_CONTROL
    INNER JOIN DOCNOTEST
    ON DOCUMENT_CONTROL.DOCUMENT_NO=DOCNOTEST.DOCUMENT_NO
    where DOCUMENT_CONTROL.DOCUMENT_NO=DOCNOTEST.DOCUMENT_NO
    Does anyone have any advice for me? Thanks in advance

    Alternate syntax since it seems you're not able to update the join...
    update DOCUMENT_CONTROL a
    set
       a.path = null
    where a.path is not null
    and exists
       select null
       from DOCNOTEST b
       where  a.DOCUMENT_NO = b.DOCUMENT_NO
    );

  • Syntax for Update Query?

    Hi
    I have the following query:
    update martin_adhoc_pct
    set adhoc.mbr_oed = mbr.orig_eff_date
    where adhoc.subs_ssn = mbr.subs_ssn
    and adhoc.mbr_type = mbr.mbr_type
    I get an error saying that:
    ORA-000904 "mbr"."mbr_type" invalid identifier..
    I am using PL/SQL and pulled the table name and field directly from the Objects listing so the names are right. This is the first time I've attempted an UPDATE statement with SQL, so wondering what I'm doing wrong..
    Thanks for any help..

    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    I have created a table in our data warehouse that has a blank column (specified as datatype DATE) that I want to update with data from another data warehouse table (one that I didn't create). So for example:
    ssn mbr type oed
    123456789 aab needs to be filled in
    987654321 dd1 needs to be filled in
    etc..
    The unique identifier is the sub id and mbr type, so that's why my code joined these fields between the tables. Where they are equal, fill in the associated oed. I need all rows filled in, not just one. Here is the created table code:
    SELECT  mbr00.mbr_type,
            mbr00.mbr00_subs_ssn,
            me607.subscriber_id,
            cast (null as date) mbr_oed       
    from  odw.member_exp me607,
            odw.member_mas mbr00
    where   me607.subscriber_id = mbr00.mbr00_ssn_ref_num   
    and     me607.elig_start_date < sysdate
    and     me607.elig_end_date > sysdate
    and     me607.rmc_code in ('123')
    {code}
    Thanks..
    Edited by: user12296489 on Feb 11, 2010 9:06 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Please syntax for me :)  Re: Rename files with a given string

    From the post http://forum.java.sun.com/thread.jspa?forumID=54&threadID=5118509
    Was wondering if someone could explain how the red characters work and what it does. Thanks!
            String newFileName = destFiles.getName().replaceFirst("[^.]*", rename);
            File newFile = new File(destFiles, newFileName);
            destFiles.renameTo(newFile);

    It would serve you better to look at the API documentation.
    getName() returns a String, right? So it is invoking String.replaceFirst with those arguments. Do you know where the API documentation is?
    http://java.sun.com/j2se/1.5.0/docs/api/index.html
    (That's for version 1.5 - you can find other docs for other versions).

  • UPDATE command syntax for mulitple checkbox update

    Hi,
    I intend update the checkboxes by id in bulk.
    My table is below. I want to update the selected form_id
    checkboxe and their
    values accordingly. That, I click the checkboxes (containin
    form_id
    information) of 1, 3, and 6; and I check their respective
    fields for column
    check01 and check02.
    form_id check01 check02
    1 1 0
    2 0 1
    3 0 0
    4 1 1
    5 1 1
    6 1 0
    I am using below code for deleting. I can do insert into. But
    I could not
    figure out the correct syntax for UPDATE command similar to
    below example.
    Sample for deleting:
    DELETE FROM ADS
    WHERE AD_ID IN (varCheckBox)
    Thank you
    Hakan

    Check here for SQL UPDATE syntax..
    http://www.w3schools.com/sql/sql_update.asp
    Regards,
    ..Trent Pastrana
    www.fourlevel.com
    "Hakan834" <[email protected]> wrote in message
    news:e9tdd8$ppk$[email protected]..
    > Hi,
    >
    > I intend update the checkboxes by id in bulk.
    >
    > My table is below. I want to update the selected form_id
    checkboxe and
    > their values accordingly. That, I click the checkboxes
    (containin form_id
    > information) of 1, 3, and 6; and I check their
    respective fields for
    > column check01 and check02.
    >
    > form_id check01 check02
    > 1 1 0
    > 2 0 1
    > 3 0 0
    > 4 1 1
    > 5 1 1
    > 6 1 0
    >
    > I am using below code for deleting. I can do insert
    into. But I could not
    > figure out the correct syntax for UPDATE command similar
    to below example.
    >
    > Sample for deleting:
    > DELETE FROM ADS
    > WHERE AD_ID IN (varCheckBox)
    >
    >
    > Thank you
    >
    > Hakan
    >

  • Comand line argument for updating .air applications

    Hi all,
    Please help me regarding the issue while updating the .air application silently using command line argument -update -silent -location <%INSTALLDIR%> "Location of .air file".
    For the fresh installation I used the following cmd line arguments
    ------> Adobe AIR Application Installer.exe -silent -eulaAccepted -programMenu -location "<INSTALLDIR>" "Location of .air file" ---> This will work for fresh installations only.
    but the same comand will not work if the older version is already installed in the machine we have t use -update argument.
    I don't fine correct argument list for updating the .air files. Please help me if any one know how to update the .air file silently using command line arguments.

    Hi,
    To update an app, the app installer should be invoked with the following command line params:
    -update -silent <dir> <url> <version>
    where <dir> is the full native path to the application, <url> is the URL to the .air file to update it with (either local or remote), and <version> is the version of the new app in the .air file.
    Thanks,
    Jian

  • Update Hierarchy from file flat

    Hi,
    We have transferred the hierarchy of infoobjet 0IM_REPOBJ  from OLPT, and a new hierarchy is created in SAP BW.
    Now we want to add new characteristic (node)  to this hierarchy, from upload file flat.
    I have followed all steps of documentation from sdn but I can't do it.
    After that, I think that from uploading file flat, only is possible created a new hierarchy or update a hierarchy created before for this way.
    It's correct or exist any way for update by uploading file flat, of a hierarchy downloaded from OLPT?,
    Best Regard,
    Mario.

    Hi Abhishek,
    When I try to upload the new characteristic from file flat, the follow error appear:
    RSAR 204: Error when you calculate the node level in ahierarchy.
    There is two sap notes, but it not apply for our case.
    When I create the infopackage of datasource from file, in tab "Hierarchy Selection" I can't select the herarchies available from OLPT, I have to create a new hierarchy. Although I create a new hierarchy with the same technical name of OLPT hierarchy, the system assign a new internal ID.
    And I think that, when I execute the infopackage from file flat, try calculate the node level in the new hierarchy created and not of the hierarchy existing in a infoobject.
    For this reason I guess that it isn't possible update by file flat of  a hierarchy downloaded from OLPT.
    Regarding your proposal of download the OLPT hierarchy, update it and upload to BW from file flat (deleting the existing hierarchy). I think that would be the more aproximate option, but we'll have to analyze the process, because the hierarchy will be updated both from OLPT as file flat.
    Have I to assume that my guesses are right?.
    Best Regard,
    Mario.

  • Problem in updating a jar file

    Hi ...
    Anyone help me for updating a jar file in windows.
    I am updating a jar file Using Runtime.exec() method.. But it shows an error like this:
    java.io.IOException: Error in writing existing jar file
    at sun.tools.jar.Main.run(Main.java:198)
    at sun.tools.jar.Main.main(Main.java:1022)
    I am using jdk1.6 and ant tool for build.

    Stick to your old thread please.
    [http://forums.sun.com/thread.jspa?threadID=5320704&messageID=10371347#10371347]
    I'll delete this one soon.

  • How can I update the description of my book that is for sale on the iBookstore?

    I have tried to update it through iTunes Producer, in the "Look up Metadata" and the "Open Package" modules.  The new epubs that I upload appear to get published immediately, but the description is never updated in the iBookstore.  I have emailed Apple three times about this in the past two weeks but haven't gotten any response.

    I guess I misunderstood the reason for the decrease of your sellings.
    I thought you made an update and THAN you got the problem.
    But in fact it seems the problem is due to NOT having success with the update.
    however, perhaps I can contribute what I got from a friendly person at itunes support:
    "With regard to changes that can be made, once a title has been delivered to the iBookstore, the only changes that can be made through iTunes Connect are updates to pricing, territory rights, Cleared For Sale/Not Cleared For Sale, and DRM settings. 
    For all other changes (e.g. correcting author name or book title), please make a metadata change request through the Contact Us form in iTunes Connect under the topic "Metadata, File Formats, and Subject Categories."
    Actually that is not the whole story, particuly regarding using producer. It seems to me that I did read somewhere that there is a kind of maximum for updates per quarter of year. I mean updates that are NIT regarded as new versions of a book. I somebody could write an ibook about all this matters, easy to understand and complete, with an index, would be great. i would buy first.

  • Content file download failed - CRC Verification failure For update KB976932

    Hey I'm trying to download the updates for windows 7 and having issues with this specific update. It seems no matter what it keeps failing. Tried two different internet connections The update that i'm having issues with is 
    The message that is being thrown back at me is 
    As i said i've tried it on multiple internet connections and it keeps failing. 
    Any ideas why this could be happening ?
    edit:
    Not sure if this helps but this downloaded correctly not sure if there is some sort of conflict.

    Reason: HTTP status 404: The requested URL does not exist on the server.
    Source File: /Content/FB/134501186F4C81089054E4EC3376E74EEC895EFB.exe 
    Destination File: d:\wsus\WsusContent\FB\134501186F4C81089054E4EC3376E74EEC895EFB.exe
    Source:        Windows Server Update Services
    Description:
    The server is failing to download some updates.
    This error is happening everyday. Please advise for a fix.
    If this is happening on an UPSTREAM server it is because you have approved updates that are no longer available from Microsoft. Almost always this involves approvals of *EXPIRED* updates (which have been pulled from the catalog and cannot be downloaded).
    If this is happening on a DOWNSTREAM server it's because something/someone deleted the files from the upstream server. It can also happen if the entire upstream ~\WSUSContent folder has gone amuk.
    For an upstream server, find the expired updates, remove the approvals, cancel the downloads, and then decline the updates.
    For a downstream server, figure out what the affected updates are and fix the upstream server.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Nano syntax highlighting: catch-all syntax for configuration files

    After years of using nano, I only recently learned that it supports syntax coloring... (Why would they turn that off by default? ) Well, I thought I'll make up for it by making extra good use of it from now on...
    Unfortunately it didn't ship a highlighting syntax for the the kind of files that I use nano the most for: system configuration files.
    So I wrote my own, and after tweaking a bit here and there whenever I encountered a config file for which the highlighting wasn't satisfactory at first, I think the result is now good enough (screenshots below) that it's worth sharing with my fellow Arch users:
    Code & Instructions:
    Here is the syntax definition:
    # config file highlighting
    syntax "conf" "(\.(conf|config|cfg|cnf|rc|lst|list|defs|ini|desktop|mime|types|preset|cache|seat|service|htaccess)$|(^|/)(\w*crontab|mirrorlist|group|hosts|passwd|rpc|netconfig|shadow|fstab|inittab|inputrc|protocols|sudoers)$|conf.d/|.config/)"
    # default text
    color magenta "^.*$"
    # special values
    icolor brightblue "(^|\s|=)(default|true|false|on|off|yes|no)(\s|$)"
    # keys
    icolor cyan "^\s*(set\s+)?[A-Z0-9_\/\.\%\@+-]+\s*([:]|\>)"
    # commands
    color blue "^\s*set\s+\<"
    # punctuation
    color blue "[.]"
    # numbers
    color red "(^|\s|[[/:|<>(){}=,]|\])[-+]?[0-9](\.?[0-9])*%?($|\>)"
    # keys
    icolor cyan "^\s*(\$if )?([A-Z0-9_\/\.\%\@+-]|\s)+="
    # punctuation
    color blue "/"
    color brightwhite "(\]|[()<>[{},;:=])"
    color brightwhite "(^|\[|\{|\:)\s*-(\s|$)"
    # section headings
    icolor brightyellow "^\s*(\[([A-Z0-9_\.-]|\s)+\])+\s*$"
    color brightcyan "^\s*((Sub)?Section\s*(=|\>)|End(Sub)?Section\s*$)"
    color brightcyan "^\s*\$(end)?if(\s|$)"
    # URLs
    icolor green "\b(([A-Z]+://|www[.])[A-Z0-9/:#?&$=_\.\-]+)(\b|$| )"
    # XML-like tags
    icolor brightcyan "</?\w+((\s*\w+\s*=)?\s*("[^"]*"|'[^']*'|!?[A-Z0-9_:/]))*(\s*/)?>"
    # strings
    color yellow "\"(\\.|[^"])*\"" "'(\\.|[^'])*'"
    # comments
    color white "#.*$"
    color blue "^\s*##.*$"
    color white "^;.*$"
    color white start="<!--" end="-->"
    To install, save the above above code snippet as a file called conf.nanorc in the folder /usr/share/nano/ (or /usr/local/share/nano/ or similar if you feel strongly about the /usr <--> /usr/local separation), and then add the following to the end of the file /etc/nanorc:
    ## Configuration files (catch-all syntax)
    include "/usr/share/nano/conf.nanorc"
    Hints:
    The colors I chose look good (imo) with the terminal background and color settings that I use, but might not look good, or even readable, with yours, so simply change the color names in the code snippet to whatever you prefer - valid color names are:
    If you use a console with white background, you'll have to change at least the white color I chose for comments and punctuation.
    The first code line in the snippet includes a regular expression that defines for which file names this syntax highlighting should be used. Whenever you encounter a config file that is not matched by this, but you would still like to open it with syntax highlighting, you can manually select this syntax with nano's -Y switch, like so:
    nano -Y conf myConfigFile
    Technical Note:
    It's implemented as a single catch-all syntax, since nano chooses which syntax to apply based on the filename, and in the case of config files usually not much can be learned about the content format from the file name extension (.conf can by anything from flat key/value tuples to XML, .ini can be the official INI format or something else, etc...).
    This means that some compromises have been made, so with this highlighting syntax probably no config file looks 100% as good as a highlighting syntax that would be specifically optimized for one kind of config format, but all in all the vast majority of config files should look pretty good.
    Screenshots:
    /etc/rc.conf,  /etc/hosts:
    /etc/pacman.conf,  /etc/group:
    xorg.conf,  some .desktop file:
    httpd.conf (Apache config),  php.ini:
    More screenshots:
    /etc/fonts/fonts.conf (uses XML)
    /etc/inittab
    /etc/fstab
    /etc/inputrc
    /etc/mime.types
    /etc/protocols
    /etc/xinetd.conf
    See Also:
    nano syntax highlighting: GNU makefiles
    Update [2012-01-28]: Made some more improvements to the syntax definition (see post)
    Last edited by sas (2012-02-01 15:26:43)

    doug piston wrote:I deal with alot of .mk files and would love to see it there.
    You mean GNU makefiles?
    I'm afraid they might be out of scope for this generic config-file syntax.
    Logically they're not system config files, and technically they're a pretty specialized and complex format (different "types" of rules, rules spanning multiple lines, rules containing arbitrary Bash code, etc.).
    This is how an .mk file currently looks with this highlighting syntax:
    $ nano -Y conf /usr/lib/httpd/build/rules.mk
    And apart from highlighting variables of the form $$abc or $(abc), I'm not sure how much can be improved here without breaking the highlighting for more conventional config files.
    It would probably be better to create a specialized highlighting syntax just for .mk files.
    EDIT: I sat down and did just that, here's the result: nano syntax highlighting: GNU makefiles, and here is how the above makefile snipped looks with it:
    Last edited by sas (2012-02-01 15:18:52)

  • I did the update to 3.6.11 - when it restarted it will not open any pages. When i go to check for updates it gives me this error: Update XML file malformed (200) - Any advice?

    I did the update to 3.6.11 - After it started Firefox it would go to the requested site in the addressbar, but the page would be blank. I went to check for updates and it told me there was a problem in updating. It gave me this error message: Update XML file malformed (200)
    I uninstalled and reinstalled and the same problem exists.
    Any advice?

    For the error message see [[AUS Update XML File Malformed 200]].
    As it appears not to be able to load any sites, a possible cause is your firewall blocking the new version of Firefox. For more details see [[Firefox cannot load websites but other programs can]].

  • Update query is waiting for async descriptor resize

    Hi All,
    One of the update query which was completing in 1-2 mins. Suddenly today it started taking more than 3-4 hours and still it is running.
    Below is the query, I can see the explain plain. I can see the query is waiting for async descriptor resize wait event
    UPDATE AP_INVOICE_DISTRIBUTIONS SET POSTED_FLAG = 'N' WHERE POST
    ED_FLAG = 'S' AND (ACCOUNTING_DATE >= :B2 OR :B2 IS NULL) AND (A
    CCOUNTING_DATE <= :B1 OR :B1 IS NULL)
    when i checked the P1text, P2text columns of v$session, it is showing outstanding #aio,current ai0 limit respectively.
    Explan plan
    CODEPLAN_TABLE_OUTPUT
    | Id  | Operation                      | Name                         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT               |                              |       |       |   250 (100)|          |
    |   1 |  UPDATE                        | AP_INVOICE_DISTRIBUTIONS_ALL |       |       |            |          |
    |   2 |   NESTED LOOPS                 |                              |       |       |            |          |
    |   3 |    NESTED LOOPS                |                              |    39 | 12480 |   250   (0)| 05:14:02 |
    |*  4 |     TABLE ACCESS BY INDEX ROWID| AP_ACCOUNTING_EVENTS_ALL     |    39 |   624 |   145   (0)| 03:02:09 |
    |*  5 |      INDEX RANGE SCAN          | AP_ACCOUNTING_EVENTS_N2      |  3954 |       |    14   (0)| 00:17:36 |
    |*  6 |     INDEX RANGE SCAN           | AP_INVOICE_DISTRIBUTIONS_N18 |     4 |       |     2   (0)| 00:02:31 |
    PLAN_TABLE_OUTPUT
    |*  7 |    TABLE ACCESS BY INDEX ROWID | AP_INVOICE_DISTRIBUTIONS_ALL |     1 |   304 |     4   (0)| 00:05:02 |
    CODE
    Please help me on this.
    Env Details --
    DB version -- 11.2.0.1
    OS - IBM AIX.
    Thanks in advance...

    This could be this bug
    Bug 9829397 - Excessive CPU and many "asynch descriptor resize" waits for SQL using Async IO (Doc ID 9829397.8)

  • Syntax for Illustrator update silent install

    I have 13.0.1 and 13.0.2 updates and tried /? /help /s /qn /r /f1 ... and none of them work to kick a silent install or generate a install script. Can someone tell me how to allow for silent install of these updates?
    We would like to deploy these via our software delivery application
    KT

    I know this post is a few months old, but for those that still need the info:
    Updating Adobe Acrobat Professional from 9.0.0 to 9.1.2
    1. Download the 2 patches, AcroProStdUpd910_T1T2_incr.msp (this updates to 9.1.0) and AcrobatUpd912_all_incr.msp (this updates to 9.1.2) and place them in the same folder.
    If you are already at 9.1, you don't need the first patch.
    2. Copy the AcroPro.msi file from C:\Program Files\Adobe\Acrobat 9.0\Setup Files\guid (I didn't feel like typing out the whole string) to the folder with the patches.  This is where the setup placed this file for my installation of CS4; your location could be in a different spot.
    3. Create your script with the following 2 lines:
    msiexec /p "%installdir%\AcroProStdUpd910_T1T2_incr.msp" /qn /norestart REINSTALL=ALL REINSTALLMODE=omus
    msiexec /p "%installdir%\AcrobatUpd912_all_incr.msp" /qn /norestart REINSTALL=ALL REINSTALLMODE=omus
    Substitute your path to the folder with the patch files for %installdir% above.
    Obviously, this procedure is for updating Windows only.  This was only tested on Windows XPSP3 with Adobe Acrobat Professional 9.0.0 as installed as part of CS4 Master Collection.

Maybe you are looking for

  • BAPI_PO_CREATE1 extension for scheduling

    Hi Ssn, I got a new requirment where i need to add one custom field in EKET table. When ever the Purchase Orde  is creating from SRM BAPI_PO_CREATE1 is geting caled fromECC. EKET is related to Scheduling related table. Can any one explain me how we c

  • Combine PDF files

    How do I create a combined PDF with sepearte sections as in the past Adobe selections.  I now have Adobe Acrobate X and I cant find that choice only one combined file.

  • Texting from Mail

    I have no problem sending an email / text message from Mail to my iPhone at [email protected] . But, I can't reply to it. The address from Mail is a set of numbers and replying to it from iPhone SMS comes back saying something to the effect that it's

  • I can´t install Photoshop Elements 10

    I´m trying to install Photoshop Elemento 10 and says next message "Exit Code: 26 - Media swap required to continue installation", what does it means? I have Windows 8

  • Maintenance Cost Overviw Problem.

    Dear All , I am facing problem in maintenance order cost overview .I have maintained std formula sap008 in work center ; also PM001 as std cost value key.Now my setting in costing is 1 Rs/min.So whenever I  enter the operation time 100 min ( for exam