Problem export Indesign document to epub

I get the following message everytime when I try to export an Indesign document to epub.
"  The file was exported but one or more problems were detected:
Resource: 1 missing
Macintosh HD:Ap…n
CS6.app:Contents:MacOS:template.css"
Can someone tell me what it means and what I can do to correct this.
Thanks
Regards
Claudine

Your InDesign CS6 file probably was created in an earlier version where the CSS file created was handled in a different way. It's associated with a "template.css" file that InDesign cannot find.
Choose File > Export > EPUB. Go to the Advanced panel. In the CSS Options section, select "template.css" in the Additional CSS section, and click Delete.

Similar Messages

  • Exporting InDesign document to epub

    InDesign exports documents to ePub. It works well.
    But afterwards the document needs more formatting. I have read the Adobe document entitled 'Producing ePub Documents from InDesign' but I am not able to open the file (after unzipping the archive) so that any of the existing xhtml coding is visible.
    Does anyone have any further documentation regarding producing ePub files?

    From InDesign 6.0 to 6.0.3, there were issues with font embedding, but they were quite easily overcome by editing the EPUB file (see fix here: http://forums.adobe.com/thread/330027). With 6.0.4, the font embedding feature is broken. Not all the type faces are copied into the Fonts folder. The CSS file doesn't reference all the type faces used and the encryption.xml file doesn't reference them either. It's possible to fix the EPUB file so that the fonts are embedded, but it's a huge pain, so stick with 6.0.3 if you're serious about EPUB publishing.
    As for using the PDFXML Inspector, I wasn't detailed enough in my explanation (sorry to create that confusion). When you open an XML or XHTML file with PDFXML Inspector, extra breaks are inserted in order to make the code easier to read.
    So the following code...
    <p class="body"><span class="generated-style">Ehene nemquunto tet, omnit untium aut aut molupta temquia saperum venis aut dit, </span><span class="italic">conem</span><span class="generated-style"> dolut am cus rehendiatur? Ducitibusam et qui culpa dolum volore provitaque sit accum rerspelit fugia ped ma </span><span class="italic">velicipsanis</span><span class="generated-style"> consequ aturibus dolum laut a dolest, cuptis es dolorro ma aliam sit optatur, eos alique se veris cus in repellabo. Aquiasp </span><span class="bold">icaborerae</span><span class="generated-style">. Nat as sum arum harchici audanis et verrore henimoluptas utecepuda ped que odignimo delit voluptatat quosa etur?</span></p>
    becomes...
    <p class="body">
    <span class="generated-style">
    Ehene nemquunto tet, omnit untium aut aut molupta temquia saperum venis aut dit,
    </span>
    <span class="italic">
    conem
    </span>
    <span class="generated-style">
    dolut am cus rehendiatur? Ducitibusam et qui culpa dolum volore provitaque sit accum rerspelit fugia ped ma
    </span>
    <span class="italic">
    velicipsanis
    </span>
    <span class="generated-style">
    consequ aturibus dolum laut a dolest, cuptis es dolorro ma aliam sit optatur, eos alique se veris cus in repellabo. Aquiasp
    </span>
    <span class="bold">
    icaborerae
    </span>
    <span class="generated-style">
    . Nat as sum arum harchici audanis et verrore henimoluptas utecepuda ped que odignimo delit voluptatat quosa etur?
    </span>
    </p>
    The line breaks are rendered as spaces in the EPUB file, which is not always a problem. But it can be a problem, for example, if a bold word is followed by a period at the end of a sentence. In that case, an extra space will be added between the bold word and the period.
    I just discovered that you can overcome this issue if you turn off the "Pretty Printing" option by choosing View > XML > Pretty Printing. Do this before opening an EPUB file and making edits to it.
    So thanks to Jeremy, I looked into PDFXML Inspector a little deeper and now I recommend it for editing EPUB files! It's not as user-friendly and robust as a professional XML editor, but it gets the job done for free.

  • Indesign document to ePub Conversion

    Hi,
    Please can anyone help me to get a solution to convert Indesign document to ePub file using indesign plug-in development?
    Thanks
    Ashok

    You set the indents and spacing in the Paragraph Styles panel under the Indents and Spacing tab. First Line Indent, Space Before/After. You will need two styles if the first par is not indented and the subsequent ones are.
    There is an InDesign ePub forum.

  • HOW TO EXPORT INDESIGN DOCUMENT TO RTF DOCUMENT?

    I don't have any basic idea about, how to export indesign document to RTF document?,pls help me ...

    I don't think you can, because in the UI you can only export to RTF (which is the closest to MS Word). Look into story commands.
    If you want to write an entire new plugin that takes an ID document (rather than a single story) and exports it to Word, you'll have to iterate over each of the page items (and/or stories, etc.) in your document and write them out in a format that Word would understand.

  • Unable Export Indesign document  to RTF format

    PMString inrtfPath1("C:\\exind1.rtf") ;<br />IDFile inrtfpath(inrtfPath1) ;<br />InterfacePtr<IK2ServiceRegistry> theRegistry(gSession, UseDefaultIID());<br />               ASSERT_MSG(theRegistry != nil, "Could not get IK2ServiceRegistry from session");<br /><br />               for(int32 iProvider = 0; iProvider < theRegistry->GetServiceProviderCount(kExportProviderService); ++iProvider)<br />               {<br />               // Get the service provider boss class<br />               InterfacePtr<IK2ServiceProvider> theProvider(theRegistry->QueryNthServiceProvider(kExportProviderService, iProvider));<br />               ASSERT_MSG(theProvider != nil, "Could not get IK2ServiceProvider from list");<br /><br />               InterfacePtr<IExportProvider> theExportProvider(theProvider, IID_IEXPORTPROVIDER);<br />               ASSERT_MSG(theExportProvider != nil, "Could not get IExportProvider from service provider");<br /><br />               IActiveContext* theContext = gSession->GetActiveContext();<br />               if(theExportProvider->CanExportThisFormat(doc, theContext->GetContextSelection(),"Rich Text Format" /*"Sangam Rtf Export" <br />//))// "HTML"))// "Adobe PDF"*/))<br />               {<br />               // Create a PDF from the document<br />               CAlert::InformationAlert("can export");<br />               theExportProvider->ExportToFile(FileUtils::PMStringToSysFile(inrtfPath1) , doc, theContext->GetContextSelection(),"Sangam Rtf Export" /<br />/*"Adobe PDF"*/, kSuppressUI);//kSuppressUI);<br />               }<br />               }<br /><br />I tried using "Rich Text Format" , "RTF" and "Sangam Rtf Export" but CanExportThisFormat fails.<br />Export file create .rtf file with 0 size without containing any data.<br /><br />With above code I am able to Export document as Adobe Pdf only other formats like TEXT , XML , HTML, RTF are failed.<br /><br />Please give some solution to

    When I set ExportToFile() function's last parameter to kFullUI ,
    I get one Export JPEG window and
    then error :-
    "exind1.rtf" is already open by "^2".
    You don't have permission to change the file.
    After showing this message
    one progress bar is shown and after that SVG options window is shown.
    then one progress bar is shown and then one window of Adobe Indesign Tagged Text Options is displayed . When I click on Okof this window.
    Rtf file is created without containing ant data.
    Please give some solution for exporting indesign document to RTF format.
    Regards,
    Pallavi.

  • Exporting InDesign Book to Epub (general questions)

    Re: InDesign CC
    http://www.mobipocket.com/dev/article.asp?BaseFolder=prcgen&File=opfguides.htm
    http://www.mobipocket.com/dev/article.asp?BaseFolder=prcgen&File=cover.htm
    I've created a 366 page book using about 32 individual .indd files and have some general exporting-to-epub questions.
    1. Images.
    My images are placed .ai and .psd files that have names I can understand, such as picture-of-this.ai and picture-of-that.psd. When InDesign exports to epub, the images are renamed to something that a species whose native language is binary can understand. For example, this and that get renamed to 12345.jpg and 67890.jpg. And then there is also a funky naming convention that keeps the original name but adds _fmt.jpeg to it.
    Is it possible for me to export to epub and keep original file names?
    2. content.opf metadata
    Ultimately my epub needs to be converted into Kindle format. Amazon provides a Kindle Previewer that converts the file into their required .mobi format and that works, but some minor customization is required to get it to work right. The minor customizations include assigning the cover page, the table of contents (toc), and in my opinion, an even more important start page.
    My cover page, toc, and start page exist as individual .indd files.
    According to the mobipocket references (provided above), I need to add a few items to the content.opf file:
    For the cover:
    <metadata> <meta name="cover" content="my-cover-image" /> </metadata>
    <manifest> <item href="MyCoverImage.jpg" id="my-cover-image" media-type="image/jpeg" /> </manifest>
    For the table of contents:
    <guide> <reference type="toc" title="Table of Contents" href="mytoc.html"/> </guide>
    For the start page:
    <guide> <reference type="start" title="Start here" href="starthere.html"/> </guide>
    So, I can use Dreamweaver easily enough to open the content.opf file and manually insert those codes, but is there a way I can pre-code their key values into the InDesign page so that they are automatically placed in the proper positions on export?

    Hi Michael.
    That's a good suggestion about inserting jpg's into the InDesign document and then exporting to epub. I've done that before and it's worked quite well, especially with consideration to file size. However, this particular book has over 130 graphics and it's also going to the printing press... so I'm trying to keep my workload to be as efficient as possible. So you wouldn't have known that, and again, that's a great suggestion.
    I have not been able to get that plugin to work, and it's also no longer necessary. Kindle has a previewer that automatically converts the file to .mobi format, and allows the user to view the .mobi file through viewing screens that represent the Kindle device:
    http://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000765261
    Thanks for the info on the ALT text. I need to do that.... I've also looked through the File Info window tabs and did not find any area that seemed to allow me to enter that information.
    I have previously created and published on Kindle one book that was one single InDesign file, and as you suggested, had the cover and TOC with everything else. Unfortunately, there too, I had to manually enter the cover, start, and toc code using Dreamweaver.
    It looks like at this time there's no easy way to get around manually updating the .html files.
    Thanks for making the time to reply.

  • Export indesign document to pdf white strokes around text

    Hello there, I have this problem, I am exporting an indesign document to interactive pdf, and the problem seams to appear, when I open the created pdf in adobe reader x, it shows some of the text with white outlines, and the text looks very thick. When previewed in indesign, it looks perfect, text looks crisp. I also opened the pdf document with apples preview, and in preview it looks fine! But in adobe reader it looks horible, I tried adobe readers on other computers, and they all show up with the outline. What causes this anoying issue? plase help, thanks

    We'd have to see the file to know for sure, but this sounds like a transparency flattening issue. Thickened text is indicative of it being converted to outlines, whcih can happen when it interacts with transparency. It's not clear if your white lines are around theindividual glyphs, or around the entire areas. The latter is also a common flattenign artifact called "stitching" that shows up on screen and in low resoution printing.
    The first bit of advice is to keep your text at the top of the stacking order, above transparency, shadows, and other effects. It sometimes helps to have a top layer just for text. The way to eliminate these artifacts 100% of the time is to not flatten transparency at all, which is possible in Print PDFs, but alas, not in Interactive.

  • Export Indesign Document to Incopy Document

    Hi,
       I need to export the Indesign Document(.indd) to Incopy Document(.incx).I have used the following code
    app.documents[0].exportFile(ExportFormat.INCOPY_DOCUMENT, File("C:/Program Files/Adobe/Adobe InDesign CS3/Scripts/test/Input_Output/test.incx"), false);
    But it shows error like "The specified object doesn't support the desired export format".
    Please suggest me.
    Regards
    Kumar

    Could you send me a sample document (askoldich [at] yahoo [dot] com) so I could recreate the problem? I wrote this script for our own workflow and it has been working for us without any problems for about 9 months — probably your documents have a different set up than ours — I'd like to see what causes the error .
    Kasyan

  • Cannot export InDesign document as small pdf

    Need to export an InDesign multi-page document as a small pdf file for internet viewing.
    Have tried in CC and CS6. Even though it's set to "Smallest File Size," the document is not compressed.
    The interesting thing is that, with exactly the same document, sometimes it will be properly compressed and sometimes it won't (original document size: 31MB; Smallest File Size: 4 to 6MB). Have tried with the same document in both CC and CS6.
    Any explanations or cures?

    Dear Mylenium,
    Thank you (I think) for your response. There was a similar post from early in July somewhere, and I had already followed all the suggested steps to no avail (as did the poster).
    I solved the problem by deconstructing the document and extracting pages until I found the spread that was causing the difficulty. Prior to that, I had audited the space usage (in the pdf optimizer command) and found that the bulk of the megabytes were being used in shading instructions.
    As a last resort, when I found the offending spread I imported the extracted pdf page into Photoshop, flattened the file thus rasterizing it, and exported it again as a Photoshop pdf.
    I recombined the pages and ended up with a document that was suitable for our use.
    I'm sorry I chose the wrong forum. This was the first time I'd ever posted anything. There are several Adobe applications that produce pdfs and aside from not really knowing where to go, wondered if the problem had been encountered in other applications.
    I have been using InDesign in various forms since it was Aldus PageMaker. And this is not the only issue we've had with the CC software. We are discussing now whether to drop the Cloud membership when it expires and move to Quark. We are primarily print publishers with tight, tight deadlines. What we need is relatively reliable software that produces consistent results, not something that seems to be in a chronic state of BETA testing.

  • Problem opening indesign document (database publishing?)

    Hello
    I need help urgently from someone who has experience with InDesign files that refuse to open.
    My client has created 2 documents, and they have no problem opening it. ~They tell me it is made with InDesign CS2. I have tried to open it with CS/CS2/CS3 and even an .inx version of the file will not open.
    Error message is: < Cannot open the file "xxxx.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be op in another application.>
    The file is filled with txt file from a database, that needs to be replaced by me.
    My client has no extra plugins installed, I have asked to do a 3rd party check, but list is empty.
    Help, what can I do. I have 2 files that need to be worked in quickly. Anyone has experience by peeking into the file with a hex editor or text wrangler to see what is going on? I can send 1 file via e-mail (1.5 MB size)
    Thanks,
    Aram de Glas

    thanks for all who have suggested solutions. I have solved it in the mean time, by removing all pages except the master pages, and had it re-saved. So the conclusion is that there was something on one of the pages that made it impossible to open. My bet is a faulty image or logo
    Aram

  • Problem exporting webservice document/literal in Weblogic Workshop 10.3

    While migrating an applications from Weblogic 8.1 to Weblogic 10.3 and facing a problem with one webservice, the others webservices have been migrated without any problems.
    When try to export and deploy the webservice getting the following error:
    Exception in DocumentoCompulsado
    com.bea.control.ServiceControlException: Unable to retrieve ServiceClass for WSDL at path wsdl/CompulsaWSSOAPControl_CompulsaWSWsdl.wsdl, service CompulsaWS for control wsdl.CompulsaWSSOAPControl from cache[com.bea.control.servicecontrol.util.ServiceClassCacheException: Unable to restore ServiceClass from resource wsdl/CompulsaWSSOAPControlServiceClassMemento.ser, service CompulsaWS for control wsdl.CompulsaWSSOAPControl]
    Caused by: com.bea.control.servicecontrol.util.ServiceClassCacheException: Unable to restore ServiceClass from resource wsdl/CompulsaWSSOAPControlServiceClassMemento.ser, service CompulsaWS for control wsdl.CompulsaWSSOAPControl
    ... 50 more
    Caused by: com.bea.control.servicecontrol.util.memento.ServiceClassMementoException: Could not load the following resource file: wsdl/CompulsaWSSOAPControlServiceClassMemento.ser. There are two possibilities why this would occur. The first is that you are trying to run a 9.0 version of the service control. In this case everything should still work fine and you can ignore this exception. The other case is that the resource file is not in the proper location of the classpath. It should be in the same directory as the service control interface class. You might have to change your build scripts to make this work out for you. The resource file is generated during control assembly time and needs to be moved to the same directory as the service control interface class.
    Trying to deploy the webservice, Weblogic fails telling that there is not a file named wsdl/CompulsaWSSOAPControlServiceClassMemento.ser and it is true, that file is not in the file we are trying to deploy. So the problem seems to be in Workshop which is not including the file required.
    Looking for differences between this webservice and the others, realized that this webservice has declared, in its WSDL file, the document-literal binding and the others have rpc-literal.
    Found a workaround. The webserice is called by using a ServiceControl. If the Service Control is type rpc, the webservice is exported and deployed without any problems, but if we use xmlbean option the webservice could not be deployed, the .ser file is not generated. I think this is reasonable because .ser files are relationed with xmlbeans.
    Is it a known issue? if yes, could you please tell me the bug/CR number?

    I am getting the same error, but another situation; I have generated an EAR file, it works perfectly in one machine but I am getting this error in another.
    Unable to retrieve ServiceClass for WSDL at path com/nononononon/nono/nono/services/SearchServices.wsdl, service SearchServices for control com.nononononon.nono.nono.services.SearchServicesServiceControl from cache[com.bea.control.servicecontrol.util.ServiceClassCacheException: Unable to restore ServiceClass from resource com/nononononon/nono/nono/services/SearchServicesServiceControlServiceClassMemento.ser, service SearchServices for control com.nononononon.nono.nono.services.SearchServicesServiceControl]
    I have searched the web without finding an resolution, exploding my EAR I see that I have the
    *ClassMemento.ser
    in the same folder as my service control. As I said before it works in one machine but not in another.
    Does anyone have any idea what is going on?
    PS: I have stooped the server where I am getting this error and cleaned tmp and stage folder. No success.
    The full stack trace looks like this
    [2012.01.03 13:07:39] - [286821] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [FATAL] - com.bea.control.ServiceControlException: Unable to retrieve ServiceClass for WSDL at path com/nononono/nono/nono/controls/MarketingOffers.wsdl, service MarketingOffers for control com.nononono.nono.nono.controls.MarketingOffersServiceControl from cache[com.bea.control.servicecontrol.util.ServiceClassCacheException: Unable to restore ServiceClass from resource com/nononono/nono/nono/controls/MarketingOffersServiceControlServiceClassMemento.ser, service MarketingOffers for control com.nononono.nono.nono.controls.MarketingOffersServiceControl]
         at com.bea.control.servicecontrol.impl.ServiceControlImpl.getServiceClass(ServiceControlImpl.java:1734)
         at com.bea.control.servicecontrol.impl.ServiceControlImpl.invoke(ServiceControlImpl.java:524)
         at com.nononono.nono.nono.controls.MarketingOffersServiceControlBean.getQualifiers(MarketingOffersServiceControlBean.java:309)
         at com.nononono.nono.nono.services.MarketOffers.getQualifiers(Unknown Source)
         at com.nononono.nono.nono.services.MarketOffers.GetQualifiers(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:112)
         at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:84)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: com.bea.control.servicecontrol.util.ServiceClassCacheException: Unable to restore ServiceClass from resource com/nononono/nono/nono/controls/MarketingOffersServiceControlServiceClassMemento.ser, service MarketingOffers for control com.nononono.nono.nono.controls.MarketingOffersServiceControl
         at com.bea.control.servicecontrol.util.ServiceClassCache.insertEntry(ServiceClassCache.java:140)
         at com.bea.control.servicecontrol.util.ServiceClassCache.getServiceClass(ServiceClassCache.java:75)
         at com.bea.control.servicecontrol.impl.ServiceControlImpl.getServiceClass(ServiceControlImpl.java:1718)
         ... 30 more
    Caused by: com.bea.control.servicecontrol.util.memento.ServiceClassMementoException: Could not load the ServiceClassMemento from the following resource file: com/nononono/nono/nono/controls/MarketingOffersServiceControlServiceClassMemento.ser. This is probably due to a versioning issue and if the developer was astute when they made the change then this should not be the reason. Another possibility is that this resource has become corrupt. The good news is a rebuild of your app should fix it.
         at com.bea.control.servicecontrol.util.memento.ServiceClassMementoUtil.loadServiceClass(ServiceClassMementoUtil.java:77)
         at com.bea.control.servicecontrol.util.ServiceClassCache.insertEntry(ServiceClassCache.java:96)
         ... 32 more
    Caused by: java.io.InvalidClassException: javax.xml.namespace.QName; local class incompatible: stream classdesc serialVersionUID = -9120448754896609940, local class serialVersionUID = 4418622981026545151
         at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:562)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at java.util.HashMap.readObject(HashMap.java:1159)
         at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at com.bea.control.servicecontrol.util.memento.ServiceClassMementoUtil.loadServiceClass(ServiceClassMementoUtil.java:69)
         ... 33 more
    [2012.01.03 13:07:39] - [286835] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [DEBUG] - e.save()finished
    [2012.01.03 13:07:39] - [286835] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [FATAL] - >>ESB.MarketOffers.GetQualifiers:GetQualifiers Webservice
    [2012.01.03 13:07:39] - [286835] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [DEBUG] - >> Duration 15
    [2012.01.03 13:07:40] - [288220] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [INFO ] - getGlobalAlertList().start
    [2012.01.03 13:07:40] - [288232] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [INFO ] - getGlobalAlerts().start
    [2012.01.03 13:07:40] - [288234] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [INFO ] - getGlobalAlerts().end
    [2012.01.03 13:07:40] - [288234] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [INFO ] - getGlobalAlertList() event logging error.null
    [2012.01.03 13:07:40] - [288234] [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [INFO ] - getGlobalAlertList().end
    [2012.01.03 13:08:04] - [312812] [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [DEBUG] - >>>MSC message consuming timed out!
    [2012.01.03 13:08:04] - [312812] [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [DEBUG] - Before consume MSC Message!
    Edited by: vkonrad on Jan 3, 2012 10:19 AM

  • Exporting Indesign document into PDF

    I have a worklow of 410 pages 13"x13" made entirely of photos. The work is in progress but I want to make a presentation of what has been done so far. I opted for exporting to PDF only screen and web visible and that worked fine. But when I tried to export the full version as if for pre-press, the exporting loaded the 410 pages and then collapsed saying, this document cannot be exporting to PDF.
    What could be the problem? the extent of the work? the size of the file? missing links? wrong settings? Thanks for your help.

    Probably file size and memory (or lack there of). Your machine has to load all the data for each picture, maybe re-res it to the PDF setting you specify, save the file. ID might need to have access to several GB of memory.
    I'd suggest breaking it into maybe 100 page chunks. I bet each PDF file will still be nearly 100mb each! You could use Acrobat to combine them into one PDF file. But talk with your printer, they might be able to easily work with a couple smaller files for you. A 400mb PDF is pretty large (not impossible, just unusual).

  • Pb Export Indesign CC et ePub

    Matériel :
    Mac OX.6.8
    Safari 5.1.9
    InDesign CC
    Bonjour,
    J'en appelle à vos compétences et vos expériences.
    Je viens de réaliser un livre numérique dans Indesign CC, avec bien sûr des feuilles de style.
    L'export en PDF, donne un tres bon travail.
    En revanche l'export en ePub met la mise en page en vrac (décalé).
    Sauriez vous d'où peut venir le problème ?
    Petite piste, la taille est au format carré (13cm X13 cm) çà peut il avoir une incidence ?
    Bonne journée, cdt.

    Matériel :
    Mac OS X.6
    Logiciel Indesign CC
    Bien que depuis mon ancien post j'ai examiné les réponses et méthodes de chacun, ce format ePub me cause encore bien des soucis.
    En conséquence je récidive, en précisant bien :
    - que j'utilise les feuilles de styles
    - que les illustrations sont ancrées dans les blocs.
    Néanmoins mon export en epub, me change complètement ma mise en page.
    De plus les illustrations sont réduites à des tailles inférieurs.
    Ai-je oublié un paramètrage lors de l'export ?
    Auriez vous un conseil ?

  • Problem exporting PDF document

    I have a form implemented as a PDF form and would like to add a workflow step to my process so that the PDF form can be sent as an email attachment. Based on a previous posting, it seems that I need to use the RepositoryServices Read Resource Content operation to get the PDF form from the repository and add it to a process variable of type document. When I do this I get an type coercian error that states: "Cannot coerce object: com.adobe.idp.taskmanager.form.impl.xfa.XFARRepositoryFormInstance@15bb014 of type com.adobe.idp.taskmanager.form.impl.xfa.XFARRepositoryFormInstance to type class.lang.Boolean
    I'm setting the Input Resource Uri to the literal value "/BDI_DEV/forms_BDI REP Form.pdf" and the Output variable to a varaible of type document - which as far as I can tell from the documentation should be correct. For some reason, however, the error message seems to indicate that the system is attempting to store the repository object in a boolean - I do have a process variable of type boolean, but the output variable I've selected is of type document.

    "WorkflowUser" was finally able to help me resolve the problem with creating a PDF document that can be saved to file or mailed to somebody - here's how he told be to configure things to get this working:
    1. I created a process variable called XMLData of type xml.
    2. I created a process variable called XMLDataDoc of type document.
    3. I created a process variable called RenderedForm of type document.
    4. I added a SetValue service step in which the following mappings were created:
    - /process_data/XMLData is set to /process_data/REPForm/object/data/xdp
    - /process_data/@XMLDataDoc is set to /process_data/XMLData
    5. I added a renderPDFForm step using the FormsService. In this the following input and output parameters were configured:
    - "Form to Render" was set to a literal value referencing the form template - i.e. BDI_DEV/forms/BDI REP Form.pdf
    - "Form Data" was set to the XMLDataDoc variable.
    - The "Content Root URI" field under "URL Options" was set to "repository:/
    - The "Rendered Form" output section was set to reference the variable "RenderedForm".
    This then allowed me to email the document using the RenderedForm variable.

  • Export InDesign Document to PDF-Clipped Error

    When I export an InDesign file to Interactive PDF, I get the following message.
    I've tried everything I can think of. What is the resolution?
    Brooke ...

    The only answer is to not clip the interactive elements, and to always have them on the top layer. That's how the files will end up anyway. Because, as the message says-- the PDF format cannot reproduce what you did in an interactive file.

Maybe you are looking for

  • Images in wrong folder

    Just started trawling though my many digital files. Upon opening one imported Folder, I find images from another folder present in there. A quick look in finder confirms that the actual images are where they should be, but LR has them in 2 places at

  • Document Class not work when I shift my MovieClip to 2nd Frame.

    Hello, All my content is at 1st frame of my FLA file...and I'm using Document Class... When I try to shift my content to 2nd frame, so I can use 1st frame for preloader.. but its not working... This is my document class... Basically at 1st frame I'm

  • How to increase query time out

    I have a report which is generated using a huge SQL, it is erroring while displaying results, due to time out error: State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error

  • Deleting large numbers of photos

    I shot a high school football game last night with my D3. Using 9 fps, I quickly ended up with lots of pictures to sift through. Being very selective to print only the best, I am throwing away 90% of what I now have in Lightroom 2. I have a slow old

  • Duplicate calendar events using Intellisync

    I'm using Intellisync with my Treo 680 phone.  It works GREAT for my GroupWise 7.0.1 e-mail on both my phone and PC, but for some reason my calendar events are being duplicated several times on my Windows XP PC GroupWise when the phone and PC are syn