It's possible reads in a same e-reader, books with different Adobe ID

it's possible reads in a same e-reader, books with different Adobe ID

i think is possible but ONLY in the same jar.
If i try to use different jar i get only the instance of class that the classloader load.....
any suggestion?

Similar Messages

  • Have original iPad and just got iPad2 in same household with same email ID but with different interests.  How can we share purchased items, email and yet keep our own separate interests?

    We have iPad and ipad2 with one email address but two owners.  How can we share purchases, receive same email messages but have individual accounts at the same time?  Can we have same Apple User ID with different passwords?  Hepl!

    Aside from the fact that we have hijacked this thread - which we really shouldn't do - you would probably be better off posting questions or seeking advice in the iCloud portion of the Apple Support Communities. I'm sure that there are a lot of more experienced iCloud users on that site than I am.
    I'm not a big believer in iCloud at this point, so my experience with it - other than downloading past purchases - is really pretty limited. I would not want to steer you down the wrong path.
    However, here is the Apple iCloud support website that is loaded with all sorts of information and links to even more information. This will get you started anyway ....
    http://www.apple.com/support/icloud/

  • Is it possible to save or export an e-book chapter from Adobe Digital Editions? Is it possible to export or save from Adobe Digital Editions to an Adobe pdf?

    Is it possible to save or export an e-book chapter from Adobe Digital Editions? Is it possible to export or save from Adobe Digital Editions to an Adobe pdf?

    I hope you won't see this as rude, but what you are missing is the obvious point that Adobe are in business to make money. So they put as little in Adobe Reader as they can, so people are motivated to buy stuff. Every development intended for Reader has severe limitations on feasibility and techniques for this reason; it's a huge (but very common) mistake to just develop for Acrobat and assume Reader will follow.

  • Running the same code multiple times with different paramters automatica​lly

    Hi guys,
    I want to run the same code multiple times with different paramters automatically. Actually, I am doing some sample scans which takes around 2 hours n then I have to be there to change the paramters and run it again. Mostly I do use folowing paramters only
    X_Intial, X_Final, X-StepSize
    Y_Intial, Y_Final, Y-StepSize
       Thanks,
    Dushyant

    All you have to di is put all of the parameters for each run into a cluster array. Surround your main program with a for loop and wire the cluster array through the for loop. A for loop will autoindex an input array so inside the for loop you just have to unbundle the cluster to get the parameters for each run.
    Message Edited by Dennis Knutson on 07-13-2006 07:50 AM
    Attachments:
    Cluster Array.JPG ‏9 KB

  • Can you download and read books with the iPad?

    Can you download and read books with the iPad?

    Yes. There is the free iBooks app  which then allows you to download books from Apple's book store. Kindle also has an app and there are other e-reader apps.
    The one thing to consider, the iPad is a backlit screen, so it's like reading off a comptuer screen. Some have issues with eye strain so just bear that in mind.

  • How to read data with different XML schemas within the single connection?

    I have Oracle 11g database
    I access it through jdbc:oracle:thin, version 11.2.0.3, same as xdb.
    I have several tables, each has one XMLType column, all schema-based.
    There are three different XML schemata registered in the DB
    I may need to read the XML data from several tables.
    If all the XMLTypes have the same XML schema ,there is no problem,
    If the schemata are different, the second read throws BindXMLException.
    If I reset the connection between the reads of the XMLType column with different schemata, it works.
    The question is: how can I configure the driver, or the connection to be able to read the data with different XML schemata without resetting the connection (which is expensive).
    The code to get the XMLType data is textbook implementation:
    1   ResultSet resultSet = statement.executeQuery( sql ) ;
    2   String result = null ;
    3    while(resultSet.next()) {
    4   SQLXML sqlxml = resultSet.getSQLXML(1) ;
    5   result = sqlxml.getString() ;
    6   sqlxml.free();
    7   }
    8   resultSet.close();
    9    return result ;

    It turns out, that I needed to serialize the XML on the server and read it as Blob. Like this:
    1    final Statement statement = connection.createStatement() ;
    2    final String sql = String.format("select xmlserialize(content xml_content_column as blob encoding 'UTF-8') from %s where key='%s'", table, key ) ;
    3   ResultSet resultSet = statement.executeQuery( sql ) ;
    4   String result = null ;
    5    while(resultSet.next()) {
    6   Blob blob = resultSet.getBlob( 1 );
    7   InputStream inputStream = blob.getBinaryStream();
    8   result = new Scanner( inputStream ).useDelimiter( "\\A" ).next();
    9   inputStream.close();
    10   blob.free();
    11   }
    12   resultSet.close();
    13   statement.close();
    14
    15   System.out.println( result );
    16    return result ;
    17
    Then it works. Still, can't get it work with XMLType in resultset.On the client unwrapping XML blows up when trying to switch to different XML schema. JDBC/XDB problem?

  • Csv input adapter - read rows with different # of columns

    I have a csv file which includes rows with different number of columns. I want to read all the rows( of different # of cols)  into ONE stream only and then split into separate streams afterwards.
    I saw that CSV File Input Adapter does not add missing columns with nulls by default. Is it possible somehow? How can I generate a workaround?
    Thanks.

    Hello,
    The CSV Input Adapter expects to find a fixed number of fields.  If you attach the input adapter to a stream/window with 3 fields, it will always try to read three fields.  You can have missing data and this will be read into a column as a NULL value but the delimiters must still be there.  For example:
    1,1,1
    2,2,2
    3,3,3
    4,,4
    5,5,5
    CREATE INPUT WINDOW inWindow SCHEMA (c1 integer, c2 integer, c3 integer) PRIMARY KEY (c1);
    ATTACH INPUT ADAPTER File_Hadoop_CSV_Input2 TYPE toolkit_file_csv_input TO inWindow PROPERTIES csvExpectStreamNameOpcode = FALSE ,
      dir = 'c:/temp' ,
      file = 'test.csv' ,
      csvDelimiter = ',' ;
    A workaround you might consider is reading an entire line from your file into a stream with a single string column.  The trick is that you have to choose a character for the column delimiter that you are certain will never show up in your data.  Than once you have read that line into a stream, you can use the string functions to parse out the columns as needed:
    CREATE INPUT STREAM csv_instream SCHEMA (
      log_line_message string
    // Choose a character that is certain to never show up in the data in order to read the entire line
    // from the CSV file into a single column
    ATTACH INPUT ADAPTER File_Hadoop_CSV_Input1 TYPE toolkit_file_csv_input TO csv_instream PROPERTIES
      csvExpectStreamNameOpcode = FALSE ,
      dir = 'C:/temp' ,
      file = 'error_log' ,
      csvDelimiter = '@' ;
    // Parse out the individual columns
    CREATE OUTPUT STREAM csv_outstream SCHEMA (
      log_datetime timestamp ,
      debug_level string ,
      host string ,
      message string ) AS SELECT
      to_timestamp(substr(CI.log_line_message, 1, 24), 'DY MON DD HH24:MI:SS YYYY') as log_datetime,
      substr(CI.log_line_message, patindex(CI.log_line_message, '[', 2)+1, (patindex(CI.log_line_message, ']', 2) - patindex(CI.log_line_message, '[', 2))-1) AS debug_level,
      replace(substr(CI.log_line_message, patindex(CI.log_line_message, '[', 3)+1, (patindex(CI.log_line_message, ']', 3) - patindex(CI.log_line_message, '[', 3))-1), 'client ', '') AS host,
      substr(CI.log_line_message, patindex(CI.log_line_message, ']', 3)+1, 500) AS message
      FROM csv_instream CI
      WHERE CI.log_line_message IS NOT NULL;
    Thanks,
    Neal

  • Maintain same customer number twice with different GUIDs

    Recently, R3 refreshed, but CRM not. After refresh R3 is having few customer & product numbers, which were same as earlier. That means those customers & products already exist in CRM. I run initial load for customizing & master data from R3 to CRM.
    Now, I can see existing product number can be downloaded from R3 & result is same product number present twice in CRM with different GUIDs.
    For customer, I am not able to download existing  customer number via initial load. I am getting mapping error & error description - "Customer number EKC3137 is already assigned to a business partner". Delta load also failed for same customer with error - "Business partner with GUID 15ECAD322FDA074BB8B125DEDB4194DB does not exist". I checked & found existing entry in CRM is having different GUID for this customer.
    Can anyone suggest how to download this customer with new GUID, keeping same customer with different GUID. This means expected result is same customer number maintained twice with two different GUIDs. Definitely old customer can not be updated from R3, but new one can be updated in future.
    Regards,
    Soumya

    Hi.
    Everytime you do a not simultaneous client copy you will get this inconsistencies on middleware data.
    You can correct this as described below:
    CUSTOMERS:
    Apply note 609766 in order to create a report that will correct the customers Guids on tables: R/3: CRMKUNNR  and CRM: CRMM_BUT_CUSTNO  .
    MATERIAL:
    R/3 table that contains CRM product guid: NDBSMATG16
    CRM table: COMM_PRODUCT
    SAP recomends to delete all products and replicate them again: COM_PRODUCT_DELETE_SINGLE
    Possible problem if you also have price condition tables on CRM (the product Guids will be the old ones so yoiu will have to download all pricing data again).
    CONTACT PERSONS:
    R/3: CRMPARNR
    CRM: CRMM_BUT_CONTNO
    Apply note 703322  and run report  Z_OSS_000400_2004 on R/3 and corrects the inconsistencies.
    Regards.
    Susana Messias

  • Is it possible to have multiple bookmarks files or tabs with different content, like Bookmarks 1, Bookmarks 2 etc. inside the same profile?

    I guess this is more like a new feature in Firefox. I work at home and would like to separate work related bookmarks in a separate bookmarks file which is as easily available like a standard bookmarks tab. I propose a possibility to add multiple bookmarks tabs in the menu bar. It would be nice if those tabs could be renamed at will...

    You can organize them in a few main folders (Home, Work, etc.) to make it easier to distinguish the bookmarks.
    You can also export the Bookmarks to an HTML file and make copies of that file with the needed bookmarks.<br />
    You can open such a HTML file in a Firefox tab and middle-click a link to open that link in a new tab.

  • Is it possible to purchase the same song multiple times with iTunes?

    Now that I have purcahsed a good deal of songs thru itunes it is difficult to keep track of what I have already bought. Will itunes alert me to songs that I have already purchased if I try to buy them again? I know I can keep checking back in the "Purchased Music" playlist but this takes a lot of clicking back and forth. Is there an easier way?

    If you try to buy a song you have already bought, it should pop up a warning and say you have done so. You can ignore the warning and buy the song anyway, however.
    Note that this only works for the same exact version of the song. If you have a different version, like the clean/explicit difference, you get no warning.

  • Have same copy of book with incomplete download.  Cannot read and cannot delete entries.

    Have downloaded iBooks with ePub. Some were incompletely downloaded. Cannot read and more importantly cannot Delete. Connecting iPad 3 to MacBook Air does not show incomplete downloads. How to remove as selecting edit and tapping on icons yields nothing.

    I've had the same issue for the past two weeks and have finally been able to resolve it.
    For references, I have my iPhone syncing to the following settings:
    1. iTunes Match (OFF)
    2. Automotic Download (OFF)
    3. iCloud (OFF)
    I'm guessing my solution would still work if your syncing has been configured differently, but I've only tested this solution with the above configurations.
    1. Make sure all the songs you want are also backed up in your iTunes (because you will be deleting it off your iPhone).
    2. On your iPhone, access the Music app and navigate to a filter that contains the affected songs: i.e.
         a. Album
         b. Artist
         c. Genre
         d. Anything that the duplicate songs (the one with the odd play buttons) are grouped within. For me, all the duplicate songs were within one particular album. So, I selected the Album (I could have easily selected the artist as well, but that would have deleted more songs than necessary). If your duplicate songs are scattered across albums and artists, this could take awhile depending on how many songs are duplicated.
    3. Swipe to delete the "Album," "Artist," "Genre,' etc. Not the song. You won't be able swipe to delete the song and will be eternally frustrated by this.
    4. Re-sync your songs with iTunes.
    5. Nasty, weird, non-playing duplicate songs should now be gone.

  • DHCP: possible to always assign same IP addr but provide different options depending on client identifier?

    Hi,
    We have many diskless Linux clients that do PXE boot. Each one has a reservation in DHCP and there are 2 policies in place that should provide different boot filenames (DHCP option 067). Alas, it seems these policies are ignored and the clients say "PXE-E53:
    No boot filename received". What's wrong here?
    When removing a reservation, the policies are obeyed and the client boots fine. Still, we need the reservations because otherwise we don't know which task is tackled on which client.
    THanks!

    Hi,
    Could you change the condition of the policy to MAC address? I have tried in my lab server, it works properly.
    If issue persisits after changing the condition, please try to add this option to reservation.
    Besides, is there any warning or error in the event viewer of your DHCP server?
    Steven Lee
    TechNet Community Support

  • What is the possibility that I bought a completely new iPhone with different SN on each component?

    Hi all,
    M right in the Apple store in Shanghai writing this post. And still feeling bad about what I have experenced today.
    Last June, I have got a completely new 4S to replace my old 4, which had encounted many annoying issues when I was using it. And this 4S was a completely new one, I mean, not those officially retrofit ones for ordinary replacement when reparing. Howevewhen the locking button doesn't work well and I came for warranty today. The genius told me that the SN on main board and the sim card support doesn't match and refused to repair it.
    Brilliant! This is the FIRST time that I am going to get my new 4S repaired and, BANG! it just became some sucky 4S that I have tried to repair it by myself or some un-official channel? And I think I have never done these things before. Well at least when I am still myself.
    Now the genius is trying to confirm this device after I provided my recipt for last repair.
    Is Apple became more unefficient and pretty badly servered recently? and BTW can anyone tell me what is the possibility that a so-called new device from Apple has same problem.
    Well, guess this might be my last Apple device...

    Hi wjosten,
    Actually what ****** me off was the attitude from the genius here. I have my iPhone 4 repaired 3 times and 2 of which is replacing the main board. And finally they provided me a new 4S and I appreciate that. However, this time according to their words, seems it was ME who cos all these ****. And finally they agreed to check and confirm the issue for me after I argued with them. I don't think everyone is ok for that.
    Yep the world is not perfect. I am, even not so much any more, an apple fan. But this time my patience had been gone really.

  • Same video footage encoded with different audio tracks (localization)?

    Hi All, thanks for your time first of all.
    Let me explain the issue I have; there are 5 video files and  10 audio files for each of them. That means I need to encode in total 50 videos. I can do this by hand, the video and audio files are the same length, so it would just means swapping one out for the other and encoding again...
    But I was wondering if it was possible to automate this process? Let's say take the video footage and render is out with Audio1, then render it out with Audio2 and so forth.  Is this something that is possible with AME or in Premiere or any other Adobe package?
    I hope I explained this well enough, if not, please let me know!
    Thanks.
    -Woody

    You can add the video footage to a sequence, then add the first audio clip.  Set up your export and hit the Queue button.  That will send the sequence as it exists then to the Adobe Media Encoder.
    Go back to that sequence, remove the first audio file and add in the second.  Do another export.  Your settings should be the same so you can just hit the Queue button.  This ads another item to the list in AME, but this one is a snapshot of the sequence with the second audio.
    Repeat as necessary, all using the same sequence.  (Trust me, it'll work.)
    Go into Adobe Media Encoder and start the encoding.

  • Want same sender (From field) with different accounts

    I've got 3 different mail accounts.
    Now when i reply to a mail, Mail uses that email adress as sender that corresponds to that account.
    However, i would like to have the same sender email adress (the 'From:' field) with all of my email, no matter which account i received them through.
    [Thunderbird does that.]
    Is that possible?
    Best regards,
    Gabriel.

    Go to Mail's preferences -> Composing & change the popup choice for "Send new Mail from:" in the "Addressing:" section from "Account of last viewed mailbox" to the specific sender you want to use.
    Does that do what you want?
    Note: you can also change the sender on a message-by-message basis with the popup next to the "Account:" section in new or draft mail.
    This changes the actual account the messages are sent from. If you just want replies to go to that address, use the "Reply to" field in new or draft messages.

Maybe you are looking for

  • Alias account as Second user?

    I have my wife set up as another user on our MacBook. Is there a way to have the Mail be only her alias account of our Dot Mac account? I am the primary user on the DotMac account, and I have my Mail in my Account on the laptop. When I try to set up

  • Error in selection screen variant saving .

    Hi All , I have a selection screen with 4 radio buttons and some parameters , based on selection of the radio buttons the parameters change for input , now by default one radio button is selected and now if i try to save it and then when i try to hid

  • URGENT...finding iPad serial number through iTunes

    My iPad 2 was just stolen by a conman. I read that I can get the s/n via iTunes if it has synced; can anyone help with this? Does anyone know how to track it? There's no 1-800 number for Apple, and the police want the s/n. Apparently someone has been

  • 11 g oca path (pls clarify this; many thanks)

    EXAM 1Z0-007 Introduction to Oracle9i SQL® or 1Z0-047 Oracle Database SQL Expert or 1Z0-051 Oracle Database 11g: SQL Fundamentals I + EXAM Oracle Database 11g: Administration I 1Z0-052 = oracle Database 11g Administrator Certified Associate now my qu

  • Fonctionnement du programme différent après création de l'executable

    Bonjour, Comme le mentionne le titre de ce sujet, je rencontre un problème après la création de l'executable. Étant un programmeur Labview novice , je ne suis pas encore au clair avec certaines choses. En pièce jointe, le print-screen du bout de prog