Learning to work with XML

Hello!
Can anyone point me to some resources/turtorials/books etc from where to learn more about working with XML in indesign?
So far all I found on the net are some simple tutorials to make business cards and the like..
I need to make large books (for example, right now i'm working on a cookbook), and i'we seen some amazing examples of what can be achieved using a XML workflow.
Related question: where can i find some documentation about the "aid" namespace (i think that's the correct term? for example: <element aid:pstyle="blahblah">
thanks all.

InDesign CS5: Dynamic Publishing Workflows in XML with Jim Maivald (the author of the book mentioned by Steve)
XML Publishing with Adobe InDesign by Dorothy Hoskins
Related question: where can i find some documentation about the "aid" namespace (i think that's the correct term? for example: <element aid:pstyle="blahblah">
Adobe InDesign CS3 and XML: A Technical Reference -- Page 20

Similar Messages

  • How to work with xml in java ?

    Hello everybody. I am trying to read, write and modify xml file in java. But i don't know what is the best method for work with xml file ? Please give me some examples for read, write and modify it.
    Thanks in advance.

    >
    Hello everybody. I am trying to read, write and modify xml file in java. But i don't know what is the best method for work with xml file ?>'It depends'. I saw some discussions of XML parsing using different J2SE core XML APIs (the J2SE has a selection of ways to deal with XML) where one API was 20 times faster than the other.
    >
    ... Please give me some examples for read, write and modify it. >Please give me a ponie. ;-)
    You will probably need to do a lot of reading, as well as some experimentation, before you decide which XML API is best suited to the particular task you are facing.
    >
    Thanks in advance.>No worries.

  • Problem when load more swf files work with xml files into my movie

    hi ;
    I have one flash file & more of swf files which work with xml files .
    when I load one swf file into my flash file  and remove it and load anther one on the same movieclip in my flash file it load the old swf file.
    when i load one on movieclip and remove it and load anther swf  on anther movieclip the file doesn`t work  and stoped.
    when test my flash file to load and remove swf files without xml file it work fine but when repleaced the swf files with other work with xml files the problem hapend.
    thanks;

    YOu should trace the names of the files that are being targeted for loading to see if they agree with what you expect.  If you want help with the coding you will need to show the code that is relevant to your problem (not all of it)

  • Anyone working with XML in portlets? How?

    Do you work with XML/XSL in a JSP Portlet to build your presentation?
    We are having trouble with german Umlauts and want to know a way for XML in portlets in general.
    Thomas

    Hallo Ingo !
    We use the Oracle XML Parser and XSL transformer in a JSP Portlet. The XML is referenced throu a URL from our XML server.
    The XSL file is in the portlet directory.
    Our Problem is:
    Even if we use encoding attributes set to UTF-8 we are not able to display Umlauts correctly. They are not encoded to HTML Umlauts (e.g. &#252; to &uuml;).
    We tested our code with Apache Xalan and Xerces and everything works fine.
    I think that Oracle XML parser treats things not as they are recommended by W3C.
    Finally we gave up parsing XML with oracle Parser and now use Apache XML/XSL Parsers.
    Or do you know a better way?
    Thomas

  • Working with XML and Button

    Hi,
    How are all of you. Well I am new to Flex. But I have started
    building simple applications. One of the top most problem I am
    facing is working with XML and Button. Can you please assist me in
    this. I am explaining my problem:
    I have an external XML file like this:
    <Menu>
    <button>
    <idnt>0</idnt>
    <label>General Health</label>
    <text>General Health pages is currently under
    construction</text>
    </button>
    <button>
    <idnt>1</idnt>
    <label>Mental Health</label>
    <text>Mental Health pages is currently under
    construction</text>
    </button>
    </Menu>
    Now I want to generate Buttons Dynamically from this XML. And
    the second thing which is the most problematic is that how I code
    it so that when I press the Button labled "General Health", it will
    show the same text as in the XML tag coresponding to tag
    "<label>General Health</label>" ?
    I badly need this. I am realy confused on this. Kindly help
    me.
    Regards
    ..::DeX

    Let's assume that variable "node" contains one element of the
    XML. For example,
    <button>
    <idnt>0</idnt>
    <label>General Health</label>
    <text>General Health pages is currently under
    construction</text>
    </button>
    such that node.label would be "General Health", node.idnt
    would be 0, etc.
    You can build a Button like this:
    var b:Button = new Button();
    b.label = node.label;
    b.data = node; // more on this later
    b.width = 60;
    b.height = 26;
    addChild(b); // critical - adds the button to the display
    list so you can see it
    b.addEventHandler( MouseEvent.CLICK, handleClick );
    You must set the button's width and height unless the button
    will be in a container that will size its own children (like Tile).
    Every Flex component has a data property. You can set it to
    whatever you like. For your needs it makes sense to set each
    Button's data property to the node it relates to.
    Now suppose that code above is in a function, createButton:
    private function createButton( node:XML ) : void {
    // code from above
    Here's how to make all the buttons where "menu" is a variable
    that contains your XML:
    for(var k:int=0; k < menu.button; k++) { // menu.button is
    an XMLList
    createButton( menu.button[k] );
    Now to handle the event:
    private function handleEvent( event:MouseEvent ) : void
    var b:Button = event.currentTarget as Button;
    trace( b.data.text);
    When a button is picked, the description element will print
    in the debug console. Replace the trace with whatever code you
    need.

  • Can't get out.print to work with XML jsp tags

    <jsp:scriptlet>
    if(ErrorTrap == true) {
         out.println("<tr><td colspan=\"center\" align=\"center\">There was" an error while processing the form</td></tr>");
         ErrorTrap = false;
    </jsp:scriptlet>
    I can't get this script to work with the XML stype jsp tags. It keeps telling me the <jsp> tags are untermintaed. Is there a special trick to fix this or do I have to use the non-XML type tags?

    Sorry, I didn't mean to put the extra " in the out.println text string. :-/

  • Working with xml in Oracle

    Hi All,
    I am new to programming with XML in Oracle.
    Please help me with this requirement.
    Please consider a sample data
    <BSGDocs><Doc Id='562' Archive='1'></Doc><Doc Id='563' Archive='0'></Doc></BSGDocs> from this clob data I need to extract the doc_id and archive values and insert into a new table
    here it should return
    Doc_id Archive
    562 1
    563 0
    Please let me know How I can achieve this.
    Thanks & Regards,
    Vikas

    Just add INSERT INTO your-table:
    select  id,
            archive
      from  XMLTable(
                     '/BSGDocs/Doc'
                     passing XMLType(Q'[<BSGDocs><Doc Id='562' Archive='1'></Doc><Doc Id='563' Archive='0'></Doc></BSGDocs>]')
                     columns
                       id varchar2(5) path '@Id',
                       archive varchar2(5) path '@Archive'
    ID    ARCHIVE
    562   1
    563   0
    SQL> SY.

  • Work with xml dom

    this is a javascript problem(sorry, not suitable here)
    i notice that we got 'microsoft.xmldom' to enable us to work with xmldom under IE, but do we had similiar thing for us to work with xmldom under netscape or mozilla? cause i'm using linux.
    thanks for helping.

    If you know the question is not suitable here, then why do you ask the question?
    Search for an answer on Netscape's website.
    Jesper

  • InsertHTML won't work with XML files

    I am trying to create a command that writes text to an open
    XML file. The command I've created works fine under some
    circumstances but not others.
    It works if I open an XML file and apply the command without
    editing the file. If I make any edits to the file manually and then
    apply the command, it doesn't insert anything.
    It works fine with HTML files in design view, but in code
    view, if I make any edits and then run the command, nothing
    happens. If I switch to design view and back again, the command
    then works fine.
    I tested the built-in Dreamweaver command "Flash Text" on an
    XML file (after editing it so it could be used with an XML file),
    and the same problem occurs with this command when using it on an
    XML file. The problem didn't occur with HTML in code view, though.
    Below is the .JS file for my command. The corresponding HTML
    file contains only an empty form.
    function canAcceptCommand() {
    return(true);
    function isDOMRequired() {
    return false;
    function commandButtons()
    return new Array( MM.BTN_OK, "cmdOK(); "
    , MM.BTN_Cancel, "cmdCancel();");
    function cmdOK()
    var theDOM = dw.getDocumentDOM('document');
    theDOM.insertHTML("test", true);
    window.close();
    function cmdCancel()
    window.close();

    I need a function, though, that will insert text at the
    cursor location in an open file.
    I'm also discovering that the command I created above
    functions erratically even when it does deign to insert the text in
    an XML file. The text is usually inserted somewher other than where
    the cursor is located.

  • JAXP working with XML-XSL files - urgent help

    I have the code below to transform xml file into html file using xsl file:
    Transformer transformer = tFactory.newTransformer(new StreamSource("D:/Test/26120108026263560502.xsl"));
    transformer.transform(new StreamSource("D:/Test/26120108028469387014574415483532664948806162003.xml"), new StreamResult(new FileOutputStream("D:/Test/Test.html")));
    The code works fine with simple xml, xsl files, but it shows strange error messages when transforming more complex xsl file, please look at the errors below:
    [Error] 26120108026263560502.xsl:3:80: Element type "xsl:stylesheet" must be declared.
    [Error] 26120108026263560502.xsl:4:58: Element type "xsl:output" must be declared.
    [Error] 26120108026263560502.xsl:6:75: Element type "xsl:include" must be declared.
    [Error] 26120108026263560502.xsl:12:25: Element type "xsl:template" must be declared.
    [Error] 26120108026263560502.xsl:14:7: Element type "html" must be declared.
    [Error] 26120108026263560502.xsl:15:7: Element type "head" must be declared.
    [Error] 26120108026263560502.xsl:16:8: Element type "title" must be declared.
    [Error] 26120108026263560502.xsl:17:75: Element type "xsl:value-of" must be declared.
    [Error] 26120108026263560502.xsl:19:74: Element type "meta" must be declared.
    [Error] 26120108026263560502.xsl:20:8: Element type "style" must be declared.
    [Error] 26120108026263560502.xsl:38:25: Element type "body" must be declared.
    [Error] 26120108026263560502.xsl:39:48: Element type "xsl:call-template" must be declared.
    [Error] 26120108026263560502.xsl:40:55: Element type "xsl:call-template" must be declared.
    [Error] 26120108026263560502.xsl:41:49: Element type "xsl:call-template" must be declared.
    [Error] 26120108026263560502.xsl:43:67: Element type "table" must be declared.
    [Error] 26120108026263560502.xsl:44:7: Element type "tr" must be declared.
    [Error] 26120108026263560502.xsl:45:21: Element type "td" must be declared.
    [Error] 26120108026263560502.xsl:45:24: Element type "b" must be declared.
    [Error] 26120108026263560502.xsl:45:51: Element type "br" must be declared.
    [Error] 26120108026263560502.xsl:46:123: Element type "xsl:value-of" must be declared.
    It look to me that JAXP can't recognize the tags. Everyone's help is appreciated.
    Neil

    Here is the top part of it: ***********************
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "&#160;">]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" indent="no" encoding="UTF-8" />
    <xsl:include href="http://connexion.vdr.com/ematrix/reports/xsllib.xsl" />
    <xsl:template match="/">
    <html>
    <head>
    <title>
    <xsl:value-of select="//businessObject[objectType='CRA']/objectName"/>
    </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <style>
    TABLE
    font-family: Arial Narrow, Tahoma, Verdana;
    border: #000000 solid;
    border-width: 2px 2px 0px;}
    TABLE.BOTTOM
    font-family: Arial Narrow, Tahoma, Verdana;
    border: #000000 solid;
    border-width: 2px 2px 2px;}
    TD.DATA, TH.DATA
    border: #cccccc solid;
    border-width: 0px 1px 1px 0px;}
    </style>
    </head>
    <body bgcolor="#FFFFFF">
    <xsl:call-template name="ECRHeaderTable" />
    <xsl:call-template name="ECRHeaderDetailsTable" />
    <xsl:call-template name="ECRDetailsTable" />
    Anh here is the top part of file xsllib.xsl in the xsl:include: ********
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "&#160;">]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <!--*******************************************************************
    CalJulian - Calculate the Julian date for any date
    Inputs: Year - Year
    Month - Month
    Day - Day
    hour - hour (24 hour based, 0=midnight, 23=11pm)
    min - minute
    sec - second
    History:
    http://www.nr.com/julian.html
    *********************************************************************-->
    <xsl:template name="CalJulian">
    <xsl:param name="Year"/>
    <xsl:param name="Month" select="1"/>
    <xsl:param name="Day" select="1"/>
    <xsl:param name="Hour" select="0"/>
    <xsl:param name="Min" select="0"/>
    <xsl:param name="Sec" select="0"/>
    <xsl:variable name="jy">
    <xsl:choose>
    <xsl:when test="($Year < 0) and ($Month > 2)">
    <xsl:value-of select="$Year + 1"/>
    </xsl:when>
    <xsl:when test="($Year >= 0) and ($Month <= 2)">
    <xsl:value-of select="$Year - 1"/>
    </xsl:when>
    <xsl:otherwise>
    <xsl:value-of select="$Year"/>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:variable>
    The files work fine when I use msxsl.exe without any errors. I forgot to mention that dispite all the errors, JAXP still creates the html file but seeing the errors is not a good thing.
    Neil

  • Skin Setting not working with XML file

    I am trying to use the Adobe Flash Playback with a flashvars skin setting.  I am pointing this setting to an xml file where I am trying to overide the playButtonOverlay image.  Below is my code.  I am using MVC, so you will see a couple Html Helpers.  The helpers are working just fine.  It is only the skin setting I can't seem to get to work.  Any help would be appreciated.  Thanks, Michael.
    Html File
    <object width="384" height="288" >
         <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" />
         <param name="flashvars" value="src=<%: Model.VideoFilePath %>&poster=<%: Model.PosterFilePath %>&skin=/Skin/FlashPlayerSkin.xml" />
         <param name="allowFullScreen" value="false" />
         <param name="allowscriptaccess" value="always" />
         <param name="quality" value="high" />
         <param name="wmode" value="transparent" />
         <embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash"
              allowscriptaccess="always" allowfullscreen="false" width="384" height="288"
              flashvars="src=<%: Model.VideoFilePath %>&poster=<%: Model.PosterFilePath %>&skin=/Skin/FlashPlayerSkin.xml"
              quality="high" wmode="transparent" />
    </object>
    XML File
    <?xml version="1.0" encoding="utf-8" ?>
    <skin>
      <elements basePath="/Content/MFBImages/FlashPlayer/">
        <element id="playButtonOverlayNormal" src="playButtonOverlay.png"/>
        <element id="playButtonOverlayDown" src="playButtonOverlay_down.png"/>
        <element id="playButtonOverlayOver" src="playButtonOverlay_over.png"/>
      </elements>
    </skin>

    Thank you both for replying so quickly.  I still don't seem be having too much luck.  The first thing I did was watched fiddler, and it did show an error with crossdomain.xml.  So I added the below elements to a crossdomain.xml file in my root folder.  I also changed all my paths to be absolute for both the skin flashvar and xml, but still no luck.
    crossdomain.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-http-request-headers-from domain="*" headers="SOAPAction,Content-Type"/>
    </cross-domain-policy>
    Since I am having trouble with the xml, I decided to try and just put the skin element into the html page where the flash player is located.  I then removed the flashvar skin element out of the player.  Below is my code for the skin element and flashplayer with absolute paths.  The player still seems to use the default overlay play button.  Any other suggestions would help out greatly.
    <skin>
    <elements basePath="http://localhost:1852/Content/MFBImages/FlashPlayer/">
      <element id="playButtonOverlayNormal" src="playButtonOverlay.png"/>
      <element id="playButtonOverlayDown" src="playButtonOverlay_down.png"/>
      <element id="playButtonOverlayOver" src="playButtonOverlay_over.png"/>
    </elements>
    </skin>
    <object width="384" height="288" >
    <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" />
    <param name="flashvars" value="src=http://localhost:1852/VideoLibrary/Agents/test video.flv&poster=http://localhost:1852/Content/MFBImages/AgentImage/Poster.jpg" />
    <param name="allowFullScreen" value="false" />
    <param name="allowscriptaccess" value="always" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash"
        allowscriptaccess="always" allowfullscreen="false" width="384" height="288"
        flashvars="src=http://localhost:1852/VideoLibrary/Agents/test video.flv&poster=http://localhost:1852/Content/MFBImages/AgentImage/Poster.jpg"
        quality="high" wmode="transparent" />
    </object>

  • Working with xml data collections (sequences)

    Dear all,
    a database adapter in my BPEL process returns the following xml data structure:
    Schema:
    <xs:element name="MGroupsCollection" type="MGroupsCollection"/>
    <xs:complexType name="MGroupsCollection">
    <xs:sequence>
    <xs:element name="MGroups" type="MGroups" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="MGroups">
    <xs:sequence>
    <xs:element name="id" type="xs:int"/>
    <xs:element name="name" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    Instance (example, namespaces deleted):
    <MGroupsCollection>
    <MGroups>
    <id>23</id>
    <name>group2</name>
    </MGroups>
    <!-- more MGroups -->
    </MGroupsCollection>
    Now, I want to transform this structure into the following one:
    Schema:
    <xs:element name="Groups">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="Group" type="Group" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:complexType name="Group">
    <xs:sequence>
    <xs:element name="id" type="xs:int"/>
    <xs:element name="name" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    Instance (example, namespaces deleted):
    <Groups>
    <Group>
    <id>23</id>
    <name>group2</name>
    </Group>
    <!-- more Group elements -->
    </Groups>
    Implementing an XSLT transform activity, I faced no problems:
    <xsl:template match="db:MGroupsCollection">
    <sedd:Groups>
    <xsl:for-each select="db:MGroups">
    <sedd:Group>
    <sedd:id>
    <xsl:value-of select="db:id"/>
    </sedd:id>
    <sedd:name>
    <xsl:value-of select="db:name"/>
    </sedd:name>
    </sedd:Group>
    </xsl:for-each>
    </sedd:Groups>
    </xsl:template>
    Now, I thought I can use an assign activity instead of the transform activity above to transform the structure. Here's the code:
    <assign name="AssignSelectedGroups">
    <copy>
    <from variable="InvokeSelectGroups_SelectGroupsAdapterSelect_OutputVariable"
    part="MGroupsCollection"
    query="/ns3:MGroupsCollection"/>
    <to variable="Groups" query="/client:Groups"/>
    </copy>
    </assign>
    Using this assign activity (see above) the BPEL process runs without errors too. But the process produced the following structure (namespaces deleted):
    <Groups>
    <MGroups>
    <id>23</id>
    <name>group2</name>
    </MGroups>
    <!-- more MGroups -->
    </Groups>
    My questions is: As you can see in the schema definition of "Groups" (see above) this element contains one or more "Group" elements, but not one or "MGroups" elements. But "MGroups" are copied into "Groups" using the assign activity which is not valid according to the schema definition. Nevertheless, my BPEL process does not throw an exception.
    Can somebody explain this issue?
    Thanks in advance!
    Lars Geldner

    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/manipdoc.htm#CIHBBFEC
    3.14 Validating XML Data with bpelx:validate
    Does that one work for you ?
    Yes it's possible to reconstruct your xml by the assing options. If you create the assign activity you will see besides the copy also options like insert-before insert-after append etc
    With those you can construct your own variable like the way you want it..resort elements etc

  • Declaring namespaces when working with XML data

    Can you give more info on declaring namespaces? For example, I have
    ###     result xmlns="http://www.inktomi.com/"
    in my RSS feed, and
    ###     namespace ink = "http://www.inktomi.com/";
    ###     use namespace ink;
    below the imports in my flex app. I made up the ink... Should I not see the xmls="" reference within the debugger? I am able to acces child nodes...

    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/manipdoc.htm#CIHBBFEC
    3.14 Validating XML Data with bpelx:validate
    Does that one work for you ?
    Yes it's possible to reconstruct your xml by the assing options. If you create the assign activity you will see besides the copy also options like insert-before insert-after append etc
    With those you can construct your own variable like the way you want it..resort elements etc

  • Unable to get translation working with XML bursting

    Hi All,
    I am working on bursting an XML report using the DocumentProcessor API in an EBS environment. The XML publisher report has .xlf translation for Dutch Netherlands (nl-NL). The report works fine when printing through the EBS using the nl-NL locale. But however if I try to set the locale in the bursting and try to print the XML publisher report it is printing only in American English (Main translatable template's locale). Below is my bursting code
    try {
    DocumentProcessor dp = new DocumentProcessor("/usr/tmp/SampleControlFile2.xml", strDataSource, "/usr/tmp");
    dp.registerListener(this); //Set the listener
    System.out.println(strDataSource);
    System.out.println("xdo://"+strAppcode+"."+strTemplateCode+"."+strLang+"."+strLocale+"?getSource=true");
    Properties prop = new Properties(); //Add properties and variables//
    //updating these property as per environment//
    //prop.put("user-variable:TEMPLATE", "xdo://"+strAppcode+"."+strTemplateCode+"."+strLang+"."+strLocale+"?getSource=true");
    prop.put("user-variable:TEMPLATE", "xdo://"+strAppcode+"."+strTemplateCode+"."+"en"+"."+"US"+"?getSource=true");
    prop.put("user-variable:cp:territory", "NL");
    prop.put("user-variable:cp:language", "nl");
    prop.put("user-variable:cp:locale", "nl-NL");
    prop.put("burstng-source", "EBS");
    prop.put("user-variable.OA_MEDIA", "<MEDIA DIR>");
    dp.setConfig(prop);
    dp.process();
    //dp.deletTemporaryOutputFiles();
    } catch (Exception e) {
    e.printStackTrace();
    Control File:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:globalData location="stream">
    </xapi:globalData>
    <xapi:request select="/TMP001/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
    <xapi:document key="${TRX_NUMBER}" output="${TRX_NUMBER}" output-type="pdf" delivery="file1">
    <xapi:template type="rtf" locale="" location="${TEMPLATE}" translation="" filter="" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Also I tried the following,
    For xdo://XXRS.XXRS_RAXINV_SEL_T.en.US?getSource=true location, the template prints always in American English.
    For xdo://XXRS.XXRS_RAXINV_SEL_T.nl.NL?getSource=true location, the bursting errors saying that could not find the template. (The template xdo://XXRS.XXRS_RAXINV_SEL_T.nl.NL?getSource=true can't be fetched)
    Thanks!

    Hi,
    Can you post your control file here...
    I am working on similar thing but not getting it working..getting error like
    [070110_022931827][][EXCEPTION] The URL ( xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true ) is invalid.
    My translation file name is "XXXPOXPRPOL_fr_CA.xlf"
    in my control file i have tried following codes but it didnt work
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL_fr_CA.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL_fr_CA.xlf.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    Please let me know where problem is.
    Thks & Rgds
    Rajesh

  • How to work with .XML files with FINAL CUT PRO HD

    Ok so I am a newby, kind of. We filmed a feature using the SONY XDCAM 350. uses the optical 23.3GB disc. I used the camera to copy all the HD files ( .XML ) to an 1TB external drive. Now the drive is readable, everything looks fine, when I select a .XML file. Final Cut Pro HD opens, but then asks to choose a TRANSLATION file. Where do I go from here. I do not understand that command of action it is asking. Newby here, so pity me for awhile.
    Thanks

    my instinct is "No" but thats no (because the app is expecting th efiles to be located on an mounted XDCAM disc that is formated as such) ... but in your situation I'd be inclined to download the XDCAM Transfer app and try for myself
    what you may need to do though is get hold of the discs and a deck and import using the method above
    failing that you have the option of using Flip4Mac's MXF quicktime components ... not cheap.
    this will allow you to select the local XDCAM source media that you've alreday transfered in the native MXF format, and rewrap as Quicktime for editing in FCP
    (a trial version is available for download)
    ... and if thats out of budget, or for whatever reason not an option, you can sit it out and see if the next FCP revision helps you out any with its direct Log and Transfer support for XDCAM. may have the same restrictions though (ie need a properly attached formatted device)
    ... and other than that, you're looking at switching to an NLE with native MXF support (Avid, Edius, Vegas etc)

Maybe you are looking for

  • How do I check to see if I am up to date on plug-ins?

    I just brought my HP lap top back to life from a crash that happened about week ago I had to dump everything and start from when it left the factory warehouse. HP Graciously shipped me all i needed on CD's and DVD's. My question is i Know Firefox has

  • Create ONLINE logfile in physical standby database

    We have created a physical standby database with rman duplicate command on a remote server "duplicate target database for standby dorecover nofilenamecheck" When I see the standby server...Online logfiles are not created however its relevant entries

  • How do I create a group contact list in Mail???

    I have 20 parents on my son's hockey team that I need to send emails to and want to create a contact list so I don't have to put in individual emails every time. Comments please. Thanks.. Rob

  • Print preview for quotation

    Hello friends, I have maintained the VV11 record but still i am not able to see the print preview of the quotation? I am not sure about the steps for output? Will you please tell me the steps for the output control for quotation? as well as once it i

  • Repository API RME-00020&00011

    I have installed in this order: Personal 8i windows 98 Developer 6.0 Designer 6.0 I was able to install the repository with the repository admin tool but when I try to create an application I get several errors RME-00223: Failed to open new activity