Indesign and xsl not cooperating

Got a new problem with importing xml with xsl into a table in indesign.
The job works when I use oxygen to make a new xml file from the xml/xsl files.
Problem is I want to bypass oxygen and have indesign do it on its own.
XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
    <Story>
        <TableSection xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/" aid:table="table"
            aid:trows="2" aid:tcols="6">
            <SectionCode aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1"
                aid:ccolwidth="30.908648796453704">01</SectionCode>
            <SectionName aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="5"
                >FRAME</SectionName>
            <Code aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="30.908648796453704"
                >PD</Code>
            <ItemNum aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="100.42931416650917"
                >IN054B</ItemNum>
            <Vendor aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="78.3">ALI ARC
                (AN)</Vendor>
            <Description aid:table="cell" aid:crows="1" aid:ccols="1"
                aid:ccolwidth="167.39999999999998">AliArc 92/9400 Bumper &apos;97 &amp;
                Up</Description>
            <Price aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="71.56323531584569"
                >$2,350.00</Price>
            <Photo aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="90.39880172119148">
                <Picture
                    href="file:///Y:/M/Maxim/Parts%20Catalog/Design/Indesign/TIRE%20CHAINS%20(NEW%20PARTS).jp g"
                />
            </Photo>
        </TableSection>
    </Story>
</Root>
XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl" version="1.0">
    <xsl:output method="xml" omit-xml-declaration="no" indent="yes" encoding="US-ASCII"/>
    <xsl:decimal-format name="money" digit="D"/>
    <xsl:key name="SectionKey" match="Story" use="SectionName"/>
    <xsl:template match="/">
        <Root>
            <Story>
                <xsl:for-each
                    select="//Story[generate-id(.)=generate-id(key('SectionKey',SectionName))]">
                    <TableSection xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/"
                        aid:table="table" aid:tcols="6">
                        <xsl:attribute name="aid:trows">
                            <xsl:value-of select="TableRows"/>
                        </xsl:attribute>
                        <SectionCode aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1"
                            aid:ccolwidth="30.908648796453704">
                            <xsl:value-of select="SectionCode"/>
                        </SectionCode>
                        <SectionName aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="5">
                            <xsl:value-of select="SectionName"/>
                        </SectionName>
                        <xsl:for-each select="key('SectionKey',SectionName)">
                            <Code aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="30.908648796453704">
                                <xsl:value-of select="Code"/>
                            </Code>
                            <ItemNum aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="100.42931416650917">
                                <xsl:value-of select="ItemNum"/>
                            </ItemNum>
                            <Vendor aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="78.3">
                                <xsl:value-of select="Vendor"/>
                            </Vendor>
                            <Description aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="167.39999999999998">
                                <xsl:value-of select="Description"/>
                            </Description>
                            <Price aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="71.56323531584569">
                                <xsl:value-of select="format-number(Price,'$D,DDD,DD0.00','money')"
                                />
                            </Price>
                            <Photo aid:table="cell" aid:crows="1" aid:ccols="1"
                                aid:ccolwidth="90.39880172119148"> Picture </Photo>
                        </xsl:for-each>
                    </TableSection>
                </xsl:for-each>
            </Story>
        </Root>
    </xsl:template>
</xsl:stylesheet>
Last is the Oxygen xml file it makes that works in indesign, but cant get indesign to make on its own.
Thanks for any help.

<?xml version="1.0" encoding="US-ASCII"?>
<Root xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl">
   <Story>
      <TableSection xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/" aid:table="table" aid:tcols="6" aid:trows="4">
         <SectionCode aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="30.908648796453704">01</SectionCode>
         <SectionName aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="5">FRAME</SectionName>
         <Code aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="30.908648796453704">PD</Code>
         <ItemNum aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="100.42931416650917">IN054B</ItemNum>
         <Vendor aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="78.3">ALI ARC (AN)</Vendor>
         <Description aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="167.39999999999998">AliArc 92/9400 Bumper '97 &amp; Up</Description>
         <Price aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="71.56323531584569">$2,350.00</Price>
         <Photo aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="90.39880172119148"> Picture </Photo>
         <Code aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="30.908648796453704">PD</Code>
         <ItemNum aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="100.42931416650917">IN064F</ItemNum>
         <Vendor aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="78.3">ALI ARC (AN)</Vendor>
         <Description aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="167.39999999999998">AliArc 9900 Bumper</Description>
         <Price aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="71.56323531584569">$2,261.95</Price>
         <Photo aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="90.39880172119148"> Picture </Photo>
         <Code aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="30.908648796453704">PD</Code>
         <ItemNum aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="100.42931416650917">IN064T</ItemNum>
         <Vendor aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="78.3">ALI ARC (AN)</Vendor>
         <Description aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="167.39999999999998">AliArc 9900 Bumper Texas</Description>
         <Price aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="71.56323531584569">$2,800.51</Price>
         <Photo aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="90.39880172119148"> Picture </Photo>
      </TableSection>
ETC.........
forgot to paste

Similar Messages

  • CS4 InDesign (and Illustrator) not printing in Lion OS environment

    I have had no trouble installing CS4 in a Lion environment on my Mac.  However, while I can open and edit files, I cannot print anything.  Nor can I edit or change the print presents or anything at all related to printing.  InDesign (and Illustrator) just drop out.  Bang.  Just like that.  No error reporting at all.  Photoshop, however, prints just fine.  I get crash report dialog boxes for both Adobe and Apple but have so far had no answers.  PLEASE HELP IF YOU CAN
    BTW I have called Adobe several times, waited literallly for hours, and once paid for support but the line dropped out.  Next call, another wait of between 30 minutes and 1.5 hours, and the call dropped out again.  I am so cross.

    Unfortunately, this is a user to user forum, and rarely does anyone from Adobe cross path here with the users, nor do the customer care staff. Sorry you had issues with them though, I personally have never dealt with them.
    Considering both programs are acting "wonky", perhaps you could try to install your printer again. Or perhaps get an updated Driver for the printer?
    I'm not a Mac user. But when I was, peripherals on my Mac went wonky with new installs of software regularly. It was always worth unplugging the peripheral, restarting the computer and see if the issue persists.
    I'd try rebooting the the computer without the printer plugged in. Then once booted, install the printer again. And see if it helps.

  • Issues importing word into indesign and keeping notes/superscripts

    Hi
    I have a job coming up where I will need to import word documents into indesign that come from various sources.
    I did some web surfing and discovered I should be able to do it by placing the word document into my template. It seemed to work when I first tried it, but I have now discovered that only the first few notes have from through (first 14 to be precise). Then the numbers disappear (and are replaced by soft returns) until note 33 where they jump back in. But of course this starts at the next number missing, so in this case 15. Which of course means all the numbers are out of order and so need to be fixed.
    I would just input or fix manually but as I have 15 stories place and format and the first one has 95 notes... I am hoping to find a less time consuming solution.
    I am guessing it is something in how the author has edited the word document, but I truly have no idea.
    Any suggestions as best way to overcome this? Ideally something I can ask the authors to fix. Or is there something in the import options?
    I am about to get EXTREMELY desperate with this issue.
    Thanking you call in advance.
    Cheers
    Nikola

    OK after some more web seraching I have tried saving as and RFT file and that seemed to work. So fingers crossed.
    Using these settings:
    If anyone knows why it happened please let me know as it would be most useful.
    Thanks
    N

  • Why do the latest versions of Indesign and Photoshop not work on my computer?

    I own a Toshiba Satellite L675 and when I was using photoshop cs5 extended it worked fine. However I recently purchased Photoshop cs6 extended and after trying to install it i recieved an error:213:10. After that i tried downloading Indesign CS6 to see if anymore Adobe Products wouldnt work on my laptop either. It doesnt, so does anyone know why its not working?

    This indicates that your file permissions have become compromised to the SLStore folder. Please review the steps listed in "Configuration error" CS5 - http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error- cs5.html.

  • Adobe Indesign and Photoshop not opening in Rosetta?

    Just bought a brand new iMac intel model and I've installed my 8 month old Adobe Creative suite that I used on my G5 iMac.
    Instalation went smoothly, but none of the apps open. I double click on them in usual way, I get two hops of the app icon on the dock, that's it, nothing?

    Go to Apps/Utilities/Disk Utility and use 1st Aid to Repair Permissions on your OS X boot volume.
    It is a good idea to Repair Permissions before and after software installations. Also, to not have any other apps running during installation.
    I hope that you have not installed Version Cue. Also, if you have installed Adobe Acrobat get the update ASAP to prevent future headaches.

  • Emac and pc not cooperating with ethernet switch

    Hi folks,
    I'm a new guy here. I've searched the forums for this topic, but can't seem to find one that answers my question, so here goes.
    I own a Dell Dimension PC (Win XP home edition), and an eMac (OSX 10.4.x Tiger). I have DSL at home. I just purchased a Linksys 5-port switch so I could have both computers internet capable at the same time. Originally my Mac was hooked up to the DSL and the PC did not exist. Then for a while I had the PC hooked up to the DSL. My new setup is this: DSL runs from the modem to the switch, and it runs from the switch to the PC and to the Mac.
    I have run into the following issues:
    If I turn on the Mac first it can access the internet. If I then turn on the PC, the Mac loses internet capability and an error message appears saying the IP address is already in use. The PC is not able to access the internet. If I shut down the Mac and reboot the PC, then the PC can access the internet. The Mac is obviously shut down.
    Can anybody offer some insight as to how I can fix this? I would like to have a functioning network, even minimalist is fine by me. Thanks in advance for all your help.
    french dip
    emac    

    Your DSL modem is designed to only hand out one IP address. Only one of your machines can use this IP address at a time.
    You need a small home router to assume the IP address and then share it among your machines. This model on the Linksys website is an example of a common and well supported router.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.8)  

  • Apache and logrotate not cooperating

    It seems as if I recently began having trouble with Apache and logrotate. The apache logs will rotate but apache will apparently keep on writing but to the .1 files. For instance, log rotate will create move the existing access_log to access_log.1 and create access_log but apache will not use access_log and instead keep writing to access_log.1  If I manually restart apache then it seems to use access_log (and the other files without a .X postfix). This has only occurred for maybe 2-3 weeks at most. What could be going on?

    cactus wrote:
    http://bbs.archlinux.org/viewtopic.php?t=15596
    Check and see if what I said in my last post is happening to you as well...
    Yeah, I checked and the path is correct...
    Maybe I should just reinstall it?
    Thanks!!!

  • Ipod and Itunes not cooperating?

    I was updating my ipod but it keeps saying "preparing your ipod for restore", or "waiting for ipod". When it's "done" it says "ipod could not be restored." Please help!!!

    hi Siva!
    here's the best place to start with a (-69):
    iTunes displays a -69 error when syncing iPod
    love, b

  • Itunes and ipod not cooperating anymore!...??

    Ok ive never had this issue before, but im trying to update my ipod and its gone horribly wrong.
    The other day i charged my ipod on a friends computer and it synced up with it which was rather annoying. So ive tried to sync it back with mine and all was going well until it came up with the following error message.
    'Attempting to copy to the disk 'xxx' failed. An unknown error occured (-69).'
    Does that message bear any significance? What can i do to fix the problem?
    please help if you can!

    hi Siva!
    here's the best place to start with a (-69):
    iTunes displays a -69 error when syncing iPod
    love, b

  • Hello, Indesign 6 will not allow me to save and close my file

    Hello, Indesign 6 will not allow me to save and close my file

    Try exporting to .idml. If that works, openthe .idml and save as a new .indd.
    If it doesn't work, force quit ID and then restart. Auto-recovery should kick in and reopen the file at about the last state, then try again.

  • Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Sorry to say it, but I think you can see from Bob's response that there's no way to solve this rapidly.
    Did you take an image of your Mountain Lion install before upgrading to Yosemite? Roll back to that. If you're not in the habit of taking a snapshot of your system before performing operating system upgrades - get in that habit. If you are dependent on anything at all on hour computer, having a reliable backup method in place is essential. If you don't have a Time Capsule, or some other way to run Time Machine onto a disk that's not in your computer, go set that up yesterday.
    If you can't just remove Yosemite and roll back to Mountain Lion for whatever reason, you can partition your drive so that you can install both Yosemite and Mountain Lion on the same drive, and then boot into Mountain Lion when you need to work in CS5. Or you can take your Mountain Lion disc (I assume you have one, no?) and then use it to create a virtual machine in something like VirtualBox to run Mountain Lion from inside Yosemite.

  • I installed CS6 on my new retina MacBook pro laptops. InDesign and Acrobat display document pixilated. I ran the updates and it fixed Illustrator and Photosho, but not InDesign and Acrobat. What can I do to make them display in high resolution? HELP!

    I installed CS6 on my new retina MacBook pro laptops. InDesign and Acrobat display document pixilated. I ran the updates and it fixed Illustrator and Photosho, but not InDesign and Acrobat. What can I do to make them display in high resolution? HELP!

    InDesign CS6 is not optimized for retina displays. You’ll need to move to Creative Cloud for retina compatibility.

  • InDesign CS5 is not opening after deactivation/activation. How can I fix this? Illustrator and Photoshop open and are working fine. Please help!

    InDesign CS5 is not opening after deactivation/activation. How can I fix this? Illustrator and Photoshop open and are working fine. Please help!

    First of all, thank you for replying so promptly to my posts this morning!
    I can't remember how I got the software on his computer, but I'm pretty sure it wasn't through migration assistant.
    I was looking into doing an uninstall of InDesign and a fresh install. However, I initially downloaded the CS5 suite digitally and I can't find out how I am able to perform a fresh install of InDesign. Do you know where I find this info or gain access to download just InDesign again? I can't seem to find anything in my Adobe account that shows where I might do another download.

  • Incopy link will not update in InDesign and XML Story files

    So I have a couple of questions.
    I work for a publisher and we have a standard InDesign to Incopy workflow. Recently we have started having issues with InCopy links. First some basic info would probably be helpful. We use Windows XP =(, and we are using InDesign and Incopy CS3. All of our files are on a server. When I or people on my team sometimes attempt to update Incopy links, they will simply not update. Then when we check the link it says that it is zero k in size and is pretty much fried, cannot open in Icopy or InDesign. Why this is so nasty is because if the file cannot be updated all the work in the story that was done in InCopy is lost. Then to make matters worse, if we unlink the incopy file sometimes when we go to save indesign completely crashes. Is this a permissions issue as our IT department is fairly ignorant about design workflows on servers and has been inconsistent about the permissions. Also these .xml files seem to be populating the folder where we keep our InDesign files, when we open them they have basic information on the story links. I have attempted to find out more info on these files but have had very little luck.
    Any info would be helpful.
    Thanks!

    I cannot import video files.
    Mylenium

  • I'm attempting to create a pdf from InDesign and the Illustrator image does not appear properly.

    I'm attempting to create a pdf from InDesign and the Illustrator logo does not appear properly. The logo has a light blue color background with a black to white gradiant over it with a multiply designation set at 100%.  I flattened the logo in illustrator before importing into InDesign. When the pdf is created, the blue background of the logo drops out and the only thing showing is the graduated screen of black. PLEASE HELP!!!!!!

    Thanks for your reply Peter,
    I'm on Mac OSX (10.5.8) using Acrobat 7 Professional and Acrobat 
    Reader 9 to view the pdf. I created it by exporting. Attached is a 
    screen capture of the letterhead. Since I posted, I sent a test pdf to 
    my partner's computer eventhough it didn't look right on my system and 
    she said it looked fine to her. I've restarted my computer and tried 
    again and still get the same results.
    Thanks for your help,
    Pat Boullion
    Boullion Graphics
    281 444-5749
    Fax: 281 444-6507
    CONFIDENTIALITY NOTICE
    The information in this email may be confidential and/or privileged. 
    This email is intended to be reviewed by only the individual or 
    organization named above.
    If you are not the intended recipient or an authorized representative 
    of the intended recipient, you are hereby notified that any review, 
    dissemination or copying of this email and its attachments, if any, or 
    the information contained herein is prohibited. If you have received 
    this email in error, please immediately notify the sender by return 
    email and delete this email from your system.

Maybe you are looking for

  • IBooks doesn't work

    I downloaded IOS 7 today and now iBooks won't function on my iPad 2.  The app opens and it goes to the library but none of the books will open.  Any suggestions?

  • I want to display a DIV , when a radiobutton is clicked... how ?

    how do I achieve it ? I found some examples googling around but none works good yet... please help..

  • Scd type 1 using pl-sql

    Hello I am writing a pl-sql which will perform SCD type 1. The Type 1 methodology overwrites old data with new data, and therefore does not track historical data at all. This is most appropriate when correcting certain types of data errors, such as t

  • SRM 701 & cFolders

    Hi Experts, We are using cFolders for two envelope bidding from SRM 701. Could you please help me with the following questions? cFolder 1) Is there a Database instances? 2) Where can find the supported OS/DB in the PAM for cFolder? 3) Is this Java or

  • Get resultset as CSV

    How can i get result-set of a table as an comma separated value? I saw there is dbms_utility.table_to_comma but not sure how to use it. For example for select column_name from user_tab_columns where table_name = 'TAB1' I want to get result as col1, c