Problems packaging epub file

Hello, i hava a problem when i am packaging a epub file. it pass epubcheck with " no errors"
When i try to package the file i put: java -Xmx1024M -jar uploadtest-1_2.jar [URL] file.epub -pass X -xml -jpg
I don´t know what it is happened...

I hope this isn't a silly question, but when I viewed the help for the "open/create/replace file" tool it said this for the file path:
"file path is the path name of the file. If file path is empty (default) or is (not a path), the VI displays a dialog box from which you can select a file. Error 43 occurs if you cancel the dialog box."
That is different from what your help says. The help I read for mine implies that the dialog box pops up only if you don't wire a path to it, leading me to think if you wire a path to the file name it will automatically use that file without bringing up a dialog box. It says nothing about the file path input being used only to specify the initial path for the dialog box - which is what your help says.
I'm using LabView 7.1, is there a difference in help dialogues between versions of LabView?
Amateur programmer for over 10 years!

Similar Messages

  • Problem packaging epubs - Invalid UUID

    Hi All,
    We have some epubs that will not package. There are various messages but the epubs seem valid when checked on epub validators.
    error xmlns="http://ns.adobe.com/adept" data="E_PACK_ERROR http://<url>/packaging/Package Invalid UUID string: 9789525912173"
    error xmlns="http://ns.adobe.com/adept" data="E_PACK_ERROR http://<url>/packaging/Package Invalid UUID string: 9789525912159"
    error xmlns="http://ns.adobe.com/adept" data="E_PACK_ERROR http://<url>/packaging/Package Invalid UUID string: 9789525912128"
    error xmlns="http://ns.adobe.com/adept" data="E_PACK_ERROR http://<url>/packaging/Package Invalid UUID string: 9789525912166"
    etc
    The string that ACS is complaining about is the ISBN of the book. This could possibly be coming from the file name which is <ISBN>.epub.
    What does the Invalid UUID mean?
    If we change from epub to pdf the file works fine which suggests its something to do with the epub.
    Any help appreciated.

    The package command is similar to the following:
    Which as you can see doesn't contain a dc:identifier composite. Or do you mean there is an identifier within the epub file that I need to check?
    Thanks

  • Problems downloading epub file to ipad 3

    Having problems view epub book downloaded to iPad3.  Followed instructions in users guide - any suggestions?
    The book downloads, but I get an error message saying it is in a format not supported by ibooks.

    You can use  Documents To Go and QuickOffice Pro HD apps.  When you open the email attachment you will have an option of where to open the attachment. Select the app you want.

  • Problem copying Epub files to Sony 505 for library ebooks using Adobe Digital Editions.

    I am using Adobe Digital Editions to copy library ebooks to my Sony 505 using a Vista Home Premium 64 bit machine.
    Adobe PDF files successfully copy and are readable.
    However, when a subsequent copy is done for any Epub book from the library the previously copied PDF files change
    to proprietary on the 505. They are unreadable and show as one page long.  The Epub book is the only library book that is
    now readable.
    I have all of the latest software on the PC (it is only one month old) and the latest firmware on the Sony 505.
    I have also reformatted my internal memory on the Sony 505, but this did not have any affect.
    Any suggestions?

    You could have the issue whereby .acsm files do not get properly registered.
    See http://forums.adobe.com/thread/1213041?tstart=0
    One solution to may issues with ADE2.0 is to use the more reliable v1.7.2,
    Try that and see if it helps.
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172

  • Problem with "Package" technical file.

    The system do not let us "Package" the file. The file has a lot of pages, with a lot of pictures.
    The system wants us to plugin:  Text Controls.InDesignPlugin; Fractions.InDesignPlugin; History.InDesignPlugin; ME Extras.framework; WWStyling.pln.framework; InBooklet SE.4X.pln.framework.
    We do not have this plugs. But we bought the adoby package no. 5.  - Photoshop, InDesign and some more.
    We did not have these problems in the past.
    Thanks

    Hi, We tried it, and it did not help.
    Do you have another idea?
    Neta Gonen
    Project Manager
    9 Moshe Erem St.

    Tel Aviv 69353 Israel

    +972.3.6488504


    +972.3.6488505


    +972.52.3928898
    <mailto:[email protected]> [email protected]

    <http://www.guetta.co.il/> www.guetta.co.il
    1
    <http://www.linkedin.com/pub/sasson-guetta/0/232/b9> 2
    5

  • HT4168 When I export a pages document as an ePub file the result is a blank locked text edit file on my desk top not an ePub file as previously no problem creating. How do I fix? HHD

    WHenWhen I export a pages document as an ePub file the result is a blank locked text edit file on my desk top not an ePub file as previously no problem creating. How do I fix? HHD

    Try adding .epub to the end of the name.
    I assume you are aware that to open an .epub file you need a special app, not TextEdit or Pages, right?

  • How to open epub file in iBooks using ANE(iOS) ?

    hello,
    I tried to open epub file in iBooks using Native Extensions.
    But, AIR app has crashed when calling ANE method (following: OpenEpub).
    Have problems with how to access the epub file?
    Or another problem?
    MacOS:10.6.8
    Xcode:4.2
    FlashBulder:4.6
    FlexSDK:4.6.0(default bundle version)
    TestDevice:1st iPad (OS 5.0.1)
    iOSNativeCode(this code works on native iOS app):
    #import <UIKit/UIKit.h>
    FREObject OpenEpub(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]){
        id delegate = [[UIApplication sharedApplication] delegate];
        UIWindow* window = [delegate window];
        UIButton* uiBtn = [[[UIButton alloc] init] retain];
        [window addSubview:uiBtn];
        NSString *fileToOpen = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"epub"];
        NSURL *url = [NSURL fileURLWithPath:fileToOpen];
        UIDocumentInteractionController *docController = [UIDocumentInteractionController interactionControllerWithURL:url];
        [docController presentOpenInMenuFromRect:CGRectZero inView:uiBtn animated:true];
        [docController retain];
         const char *str = "Success";
         FREObject retStr;
         FRENewObjectFromUTF8(strlen(str)+1, (const uint8_t *)str, &retStr);
         return retStr;
    ANE packaging directory:
    ane/
         extension.xml
         key.p12
         platform/
              iOS/
                   iOSNativeCode.a
                   library.swf
                   test.epub
    extension.xml
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
    ~~~~
    Thanks!

    hi, i can open epub in iBooks using ANE !
        UIWindow *keyWindow= [[UIApplication sharedApplication] keyWindow];
        UIViewController *mainController = [keyWindow rootViewController];
        NSString *epubFileName= [[NSBundle mainBundle] pathForResource:@"test01" ofType:@"epub"];
        [epubFileName retain];
        NSURL *url = [NSURL fileURLWithPath:epubFileName];
        [url retain];
        UIDocumentInteractionController *docController = [UIDocumentInteractionController interactionControllerWithURL:url];
        [docController retain];
        CGRect rectDocC = CGRectMake(800, 0, 0, 0);
        [docController presentOptionsMenuFromRect:rectDocC inView:mainController.view animated:YES];
    thanks!

  • Packaging large files ( 200mb) using dataPath mode

    Hi...
    I have a problem when trying to package an eBook >200mb to my test environment with Adobe Content Server.
    Here's the XML I have constructed for the eBook:
    <?xml version="1.0" encoding="UTF-8"?>
    <package xmlns="http://ns.adobe.com/adept">
         <action>add</action>
         <dataPath>complete path to PDF/EPUB file</dataPath>
    </package>
    Here's the command used for trying to package the book:
    java.exe -Xms512M -Xmx1024M -jar C:\AdobeContentServer\uploadtest\UploadTest-1_2.jar http://localhost:8080/packaging/Package C:\eBooks -datapath -xml -pass password -verbose
    Here's the error response (with -verbose) given in the console window:
    <error xmlns="http://ns.adobe.com/adept" data="E_ADEPT_UNKNOWN http://localhost:
    8080/packaging/Package"/>
    In the packaging.log, I read that the java process complains about heap size, which is weird, because I have specifically told java to use between 512mb and 1024mb.
    How can this be fixed?

    Anyone?
    PS. It works with smaller files than 200mb...
    Edit:
    Increasing Tomcat's memory in the "Apache Tomcat Configuration" helped.
    Baaaah

  • Epub file for ibooks

    Is it possible to upload the epub file which was made by other software program.
    For example, I had samsung computer, then i made epub file with eBook stylist 1.0 Beta. and tranfer it to Mac Book Pro and upload it using iTunes producer??
    Is there anyone who had successful story??
    and If you are, what program did you use for epub file??
    If nobody were there, is this only way to make epub file using the ibook author??

    Yes, I did try to upload my epub file on ibooks store, but it was failed with this messages.
    - Apple’s web service operation was not successful
    -Unable to authenticate the package: Mind.itmsp
    So, i was searching for solving this problem on Apple Support Communities .
    but there was no exact answer to solve this problem.
    I made this epub file using ebook stylist with my samsung computer and transfer this file to my friend's Mac Pro.
    then had the failed results like above.
    I used this epub file when I uploaded it on amazon kindle and google play which mean they have no problem on its own. 
    Is there any successful story to upload the epub file which was made with other software program without Mac?
    I'd like to figure it out what the problem is.
    Thank you.

  • Since changing our computer I have been unable to download ebooks to my Reader Library I get a message Some file types associated with EPUB files are not associated with Reader Library; Waterstones suggest that I may have accidentally created a new Adobe

    When I try to download them from the Waterstones website I get a message saying:
    ‘Some file types associated with EPUB files are not associated with Reader Library.  Do you want to associate them now?  When I reply yes I get another message; ‘Configuration error unable to update EPUB files check network firewall and try again’.
    The ‘books’ are saved in the Download directory and I can’t transfer them from there to my E-Reader. I have not had any problems before, it was very simple; I saved the download and it automatically went into the Reader Library.
    I contacted HP and they said it is a software error and suggested I contact Waterstones.  I contacted Waterstones Customer Support and got the following response:
    As the error message is specifically mentioning the firewall it does sound like something in the firewall settings is stopping the download from taking place correctly. However, the files should not be being saved to the Download folder. It would be worth trying again by going to your Digital Order History on your Waterstones.com account and pressing the download button, and then making sure to press "Open" not "Save". When you press Open rather than Save it should give the option to open the file with Adobe Digital Editions. If the firewall message still comes up then I'm afraid something is blocking it on your end.
    If the above "Open" download method works but you then still get an error message it could possibly be that you have accidentally created a new Adobe ID when setting up on the new computer, rather than signing in with your old Adobe ID. It would be worth trying the aforementioned download technique again first, but if problems did still persist it would be worth calling Adobe themselves on 0207 365 0735, as they should be able to sort out any account issue.
      In response to the first para of Waterstones email I already do what they suggest I do press ‘Open’ not ‘Save’ but I don’t get the open with Adobe Digital Editions (we have installed Adobe Digital Editions on the new computer. Waterstones say we may have ‘accidentally created a new Adobe ID when setting up the new computer’ does that mean that we shouldn’t have installed Adobe Digital Editions on the new computer as it would have already been there? How do I sign in with my old Adobe ID? 

    Hi all after attampting to get some supoport from adobe by phone.... nice people infurating policys as far as support for digital editions or DRM is conserned... However I got no where with support.
    I ended up instaling Digital editions on my desktop PC and going through the motions of registering and borrowing a book then returning it. Then I trying on my iPad, Bluefire worked, Over drive did not so I completely removed Overdrive and reinstalled and re registered. all working now.
    Maybe some one at adobe did something. Maybe the install of the adobe DE client on a PC corrected what ever was out of wack with my account. Mayby the server that my account lives on did a scan disk and corrected a bad clustrer.
    What ever happend My account is actiove and working again. hope this helps others.

  • Help with numbering lists in Indesign CS5.5 for epub file

    I am working with a book in Indesign CS5.5 to export it as an epub file. I have been working on formatting the text and I have run into a small problem. Throughout the book there are multiple lists within the texts that need to be numbered. Each list, however, must start over at number 1 and not be continued on from the previous list. The lists are all unrelated and I need them to be completely separate. I used "Type", "Bullets and Numbering", then "Apply Numbering" to begin with. This had each list in the correct order. However, I also created a paragraph style with the correct font, size, indentation, and spacing that must be applied to all the lists before exporting. When I do this, everything keeps its correct formatting except that some of the lists continue their numbering from the previous list. For example, on page 1 I might have a list of four things all formatted correctly and number 1 through 4. On page 3, I have another list, of completely unrelated items. I therefore would like this list to be started over at number 1, but when I apply the paragraph style to it, it starts at 5, picking up where the last list left off. I need to keep these as the assigned paragraph style but it messes up the numbering. If anyone could help me figure out how to keep this from happening I would greatly appreciate it!

    If you don't mind cracking open the ePub and editing template.css, then adding rules like:
    h2 {
              page-break-before: always;
    should force each paragraph whose style is mapped to an h2 tag on to a new page. Whether or not it works will depend on how good the ePub reader is at implementing CSS. It seems to work for Digital Editions and also Kindle, if you convert ePub to Kindle format.
    This doesn't help at all if you are trying to force sections into separate XHTML files, though.

  • Sql developer hangs when saving pl/sql external package or package body fil

    When I open a package body file I can modify the contents of the file.
    Compilation of the file works fine but when I want to close or save the file SQL developer hangs. I use version 1.2 (previous version did have the same problem.)
    Somebody has an idee what I'am doing wrong?

    Are you using 1.2.1.32.13?
    Sue

  • Why can't I read EPub files on my Kobo Touch?

    I have been successfully downloading and reading EPub files on my Kobo Touch for months now. However, after the recent upgrade to the Touch I have been having some challenges. I follow the same procedure as always to download library books to ADE and then drag and drop the file to the KoboeReader icon in the ADE screen. ADE says the file has transfered and the book shows in the Kobo library in ADE. When I disconnect my eReader and turn it on the books do not appear on the Touch. Any suggestions?
    Note: I did try de-authorizing and re-authorizing my Touch and it didn't correct the problem.

    Sorry. I think you misread me. I know you said the software upgrade messed me up and I agree. It was Kobo Support who said the ebook/library book that caused the problem. When I called Kobo Support to see if they had a fix they told me it was my library's problem. I kept going back to the software upgrade and all the trouble shooting I had done - including the paperclip in the back - but the tech just kept getting me to do the same things over and over. You were spot on that they would try to place the blame on something other than their upgrade but they didn't blame ADE. The tech didn't have any new suggestions . I eventually gave up on her and took the device back to its like new settings, unintalled and reinstalled all the software on both my device and pc. It is working now but unfortunately I lost a couple of books.  Thanks for your input.

  • The starting quote marks at the end of a line in my epub file are separated from the words quoted.

    The starting quote marks at the end of a line in my epub file are routinely separated from the word quoted which appears on the next line. The formatting contractor accurance.com who prepared this epub file tells me that this is a feature of Adobe Digital Edition 2.0 and that there is nothing they can do to correct this. Are they correct, or else how can this problem be overcome?

    I'm not sure about buying css style sheets. 
    You don't need one for each book; if you want to have a series of books all with the same general format,
    then they should all use the same style sheet on a given device, but maybe different style sheets for different devices.
    All the books will then have one consistent look on a given device, and a different consistent look on another device.
    ADE only runs on PCs and Macs.  There are lots of different ereader software apps out there for running on different devices.
    For a dedicated device, you are stuck with the reader the device provides.
    For tablets you can download different ereader apps, for example Bluefire (my favourite, ios, Android), Aldiko (android) and DReader and DL Reader (windows RT).
    I don't know if the readers/apps are derived from the same root as ADE in any way and likely to show similar bugs.
    If it is not DRM, you should certainly try on Calibre, which is the most popular (free) ereader app for computers.
    If you care to create a very short non DRM extract (complete with css) and post it somewhere on the web I'll have a quick look.
    If you have inclination to get more involved yourself,
    there is free software called sigil (https://code.google.com/p/sigil/) that will help you get off the ground and experiment.

  • Problem with UTL FILE COPY

    Hi,
    I am facing one small problem in UTL FILE COPY package. We have an automated scheduled batch process. As a daily batch process it moves the files from one folder to other. During movement, it first copies the file from source folder to destination folder using FILE COPY package and then removes the file using FILE REMOVE package from the source folder.
    Few cases are found that the file when files are copied they are copied as 0 bytes in destination folder but the source file had 1 MB file size. The interesting part is I am unable to replicate the issue. Means when i try to run once again the package its working properly and files are copied with correct size. This kind is issue is occuring very rarely though as once in month but the question is why FILE_COPY package is not working properly sometimes.. I am unable to understand.
    Thanks a lot for going through this. Any suggestions.
    Regards,
    Ashish

    Anyhow make sure that the copy will start after the full generation of files.
    You can think like a spool file generation with huge data. In that case initially spool file available with 0 byte only. After finish of query only it shows its actual size.

Maybe you are looking for

  • Error message when trying to view/print Crystal reports in B1

    I get the following Error message when trying to view/print crystal reports in SAP B1/Crystal Reports Integration Tool for SAP Business One:    " Could not load file or assembly 'Crystal Decisions Windows Forms, version=12.0.2000.0, Culture=neutral,

  • Error in OIM 11g R2 PS1 configuration

    Hi Gurus I am getting the following error while running the OIM configuration wizard. This is urgent as I am not able to proceed. Please help Log file: [2013-06-05T15:26:49.107-07:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0

  • Logical system for client 001 for SAP NETWEAVER ABAP TRIAL VERSION for BI

    Hi, I have installed SAP NETWEAVER ABAP TRIAL VERSION for BI. In that I have to create logical system for client 001. I have taken a list of available clients from the abap R3 side. Here is a list of it. Clients View Cl. Name City Crcy 000 SAP AG Kon

  • Installed Mavericks and several apps won't even launch

    I installed Mavericks in my MacBook Pro and now several apps (Calendar, Maps, Photo Boot, App Store, etc) won't launch. There's no error pop up. The icons on the dock just bounce a few times and stop. Help, please.

  • Just learning - issue with switching images

    I have two photos that are fairly identical. The same four people in both images. In one image, one party has eyes shut, in the other image, eyes open but one of the other folks has turned their head. I can't find the tutorial (video preferred) as to