Hi can someone explain what the following error code mean and how i can recifty to download a copy of ebook purchase Error getting License. License Server Communication Problem: E_ACT_NOT_READY

Hi can any one help
I keep getting the following error code when I try and down a ebook which I have purchase
Error getting License. License Server Communication Problem:
E_ACT_NOT_READY
can someone advise me what this means and how I recifty the problem to enable me to read the ebook purchase?
Thanks

I am having this exact issue. I just downloaded a book and went to open it and got this exact problem.
I purchased he book through indigo/kobo edition and paid for it and immediately went to open it and am getting the same error
Error getting License. License Server Communication Problem only mine says  Bad Device key after.
Not sure why someone has not answered this question yet...i am using windows 7 and this is how i always do it. Never had this problem before when purchasing a book.
i hope someone answers this soon.

Similar Messages

  • Can anyone explain what the 'other' storage consists of and how I can decrease the size please?

    Can anyone explain what the 'other' storage consists of and how I can decrease the size please?

    Welcome to Apple Support Communities
    "Other" refers to OS X files, caches, downloads, documents. See Other in this website > http://pondini.org/OSX/LionStorage.html
    I would not worry about Other because they contain files that you need, but if you want to decrease the size, start deleting downloads and documents

  • Please can someone explain what the firmware numbers me

    Hi,
    I would like to check whether I have the most up to date firmware for my Zen Micro but the number codes seem to be unfathomable. I have .02.05 and I don't need plays for sure because I don't use a subscription service. Is this the best one to have, because I am not sure if I still have the 24 hours standby mode before going into deep sleep, or whether I have the 4 hour.
    Thanks
    Isobel

    Ditto on ..0.
    On most Creative players with a choice of MTP (PlaysForSure) vs. non-MTP firmware--Micro, Sleek (the non-MTP version was in the initial European models; only MTP firmware is in US models or available for download anywhere), now Touch, and presumably Xtra when its MTP firmware releases--the .x.x line means non-MTP firmware; the 2.x.x line means MTP firmware. (The MicroPhoto is different, but from what I gather the non-MTP firmware on the first Singaporean models was a fluke.)
    Within each line (as you can see from fred_be9300's changelog), the higher the middle numbers, the more recent the release. Thus ..0 is more recent than .0.02, which is in turn more recent than your current .02.05.

  • Could someone explain what this piece of codes means

    The code section is below there are few things I don't get about this code:
    1:What does all that stuff that the string data equals means
    // Construct data
            String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
            data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");2: The second thing is that I'm wondering what is the URL definining part mean, more specifically what's the 80 for and why is there that cgi line.
    URL url = new URL("http://hostname:80/cgi");This is the full code that I'm getting the questions from
        try {
            // Construct data
            String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
            data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
            // Send data
            URL url = new URL("http://hostname:80/cgi");
            URLConnection conn = url.openConnection();
            conn.setDoOutput(true);
            OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
            wr.write(data);
            wr.flush();
            // Get the response
            BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = rd.readLine()) != null) {
                // Process line...
            wr.close();
            rd.close();
        } catch (Exception e) {
        }

    The code section is below there are few things I
    don't get about this code:
    1:What does all that stuff that the string data
    equals means
    // Construct data
    String data = URLEncoder.encode("key1",
    "UTF-8") + "=" + URLEncoder.encode("value1",
    "UTF-8");
    data += "&" + URLEncoder.encode("key2",
    "UTF-8") + "=" + URLEncoder.encode("value2",
    "UTF-8");
    Looks like data is a query string for an HTTP GET request. It has two key/value pairs encoded as UTF-8.
    : The second thing is that I'm wondering what is the
    URL definining part mean, more specifically what's
    the 80 for and why is there that cgi line.
    URL url = new
    URL("http://hostname:80/cgi");
    The code is making the HTTP GET request to a server named hostname via port 80 to a CGI script that will consume the request and send a response back.
    This is the full code that I'm getting the questions
    from
        try {
    // Construct data
    String data = URLEncoder.encode("key1", "UTF-8") +
    "=" + URLEncoder.encode("value1", "UTF-8");
    data += "&" + URLEncoder.encode("key2",
    "UTF-8") + "=" + URLEncoder.encode("value2",
    "UTF-8");
    // Send data
    URL url = new URL("http://hostname:80/cgi");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    OutputStreamWriter wr = new
    OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();
    // Get the response
    BufferedReader rd = new BufferedReader(new
    InputStreamReader(conn.getInputStream()));
    String line;
    while ((line = rd.readLine()) != null) {
    // Process line...
    wr.close();
    rd.close();
    } catch (Exception e) {
    Very bad code. An empty catch block? Terrible.
    %

  • Can someone explain what the new feature "Webform Security" is for?

    I notice there is a new field called "Webform Security" which inserts { module_ccsecurity ] into the form code but I have no idea what this is for and there is no reference to this module in the knowledgebase.
    Can anyone offer some details?

    Log into your bank, stay logged in and open a new tab. Then visit another site on the internet.
    Now lets pretend that on this other site, someone (like the site administrator or a commentor) included a link that pointed to a url such as http://www.YourBank.com/TransferMoney?FromAccount=12345&ToAccount=54321&Amount=1000 and then you clicked the link, the bank would think you were making a legitimate transfer request becuase you were still logged in.
    Fair enough, but you probably wouldn't click that link because you're smarter than that.  Unfortunately your browser isn't so smart, and it doesn't have to be a link.   They could have included an image tag, or css style sheet or javascript file that pointed to that url and your browser would have automatically "clicked" the link on your behalf when it tried to download the resource.
    Thats CSRF in a nutshell.
    There are ways to mitigate this danger, but its up to site owner (the bank in this example) to make sure this can't happen. As an end user it's mostly out of your hands. This tag appears to be BC's way to mitigate this, and it appears to be similar to other soultions to this problem.
    I don't know if it works though, it's not docummented, so your guess is as good as mine.  Either way its probably a good idea to include it on your forms.

  • Can someone explain what the application "iDvd" does or work?

    I want to learn to use the application called iDvd but not exactly sure what exactly is it used for? Can it be used to decorate dvds with special design stickers like the covers on dvd movies?

    Hi.
    iDVD allows you to create a Hollywood-style DVD that can contain personal and home videos and slideshows. The DVD can be played in any DVD player and can include motion menus and music, just as the DVDs released by the major labels.
    Take a look at this...  Apple Support - iDVD
    Helpful?

  • Can Someone Explain what each of These Entities Mean?

    -T_PARAMETER
    Thank-you.

    Where are you seeing this? In debugger?
    This.....
    Looks like an object reference,  at least the first part anyway.  You are seeing this in debugger, right?
    Regards,
    Rich Heilman

  • TS1424 I'm unable to download my purchases, the error message says i do not have access privelages?  what the heck does that mean and how do i fix it?

    i'm super low tech.  If anyone can help i'd reallllllllyyyyy appreciate it.  I bought KOL album on presale.. still cant figure it out..  and can't wait to hear it.  Thanks a mil.

    Hello yuviesr,
    We've an article that can help sort Windows' preventing new content being added to your library.
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/TS1387
    Cheers,
    Allen

  • What does a (-54) code mean and how do i fix it?

    when ever I try to put new music on my iphone5 or 4s it comes up with a code -54. It will download the music on my phone either way but it will put the song under different artist or change the album photo.

    I get the same when plugging the phone into iTunes - saying it can't sync - yet it does.

  • I have downloaded ios 5.1.1 and the wifi has stop working or it would stay on for less then 20min its only 9 months old can someone explain what is happening and if some know how to fix it

    I have downloaded ios 5.1.1 and the wifi has stop working or it would stay on for less then 20min its only 9 months old can someone explain what is happening and if some know how to fix it

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • Can anyone explain me the following terms.....

    Hi all,
    Can anyone explain me the following terms in WM
    1. WareHouse
    2. Storage Bin
    3. Storage Location
    4. Storage Unit.
    5. Handling Units(External/Internal)
    Thanks

    Hi Kripa,
    1. What is Netweaver ?
    Click Here: <a href="http://www.thespot4sap.com/Articles/SAP_Netweaver_Introduction.asp">Netweaver: An Introduction</a>
    <a href="http://www.sap.com/platform/netweaver/index.epx">http://www.sap.com/platform/netweaver/index.epx</a>
    2. What is the difference bet NW 2004 and NW2004s?
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/devguide2004">SAP NetWeaver 2004 Edition</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/devguide2004s">SAP NetWeaver 2004s Edition</a>
    3. Is it mandatory to know JAVA language to sustain with NW technologies? or ABAP itself is enough ?
    Its all depend in which stack you want to fit. If you want to go into EP, then JAVA is must. In XI having knowledge of JAVA will be highly useful and in other Netweaver stack it will be an added advantage. Anyhow ABAP is not enough to sustain with NW technologies.
    <a href="http://www.sap.com/platform/netweaver/standardssupport/java.epx">Netweaver and JAVA</a>
    4. If JAVA is essential ...where to start with ?
    Core JAVA, J2EE in full is needed for Netweaver. As where to start is concern you can start with core JAVA and consequencely go thorugh J2EE.
    I hope this will help you out.
    Regards,
    Subhasha Ranjan

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

  • Can anyone explain what the other section section in the HDD usage description is for ? I recently used iphoto to send a mail and this "other "section inrease the usage by about 1GB....any ideas why ?

    Can anyone explain what the "other" (yellow colour) section in the HDD usage description is for and what it does.It is under the about this mac section and storage option?
    I recently used iphoto to send mail with photos attached and this "other" section increased by about 1GB. The mail size was around 900KB.....any ideas ?

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

  • Can someone explain what Activity Monitor's 'Spindump' does?

    Can someone explain what Activity Monitor's 'Spindump' does?

    http://bit.ly/1b68kUF get me to:
    https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/ man8/spindump.8.html

  • What does this error message mean and how do I solve it? "Sorry, one or more of the following command-line tools was not found:  /usr/bin/lsbom, /bin/pax, /bin/mkdir, /bin/chmod, or /usr/bin/update_prebinding."

    When I try to open up this program, Pacifist, I receive this error message. Here's a screenshot. http://i.imgur.com/v717w.jpg What does this error message mean and how do I solve it?

    It sounds like some of the Unix Executable commands were removed (or the permissions to those were modified) out of the /usr/bin/ folder.  You can try opening disk utility and repairing permissions on Macintosh HD or you can reboot your computer and holding down option-r when it comes back up to reinstall Lion again.  This will not delete your personal information or applications you have installed but it would be best to back it up to Time Machine before you do.  The article on how to do this is here. (http://www.apple.com/macosx/recovery/)  I have had to do this before and it works like a charm.  It should fix your issue but grab a cup of coffee because its going to take about 35 - 40 minutes depending on how fast your computer is.

Maybe you are looking for

  • Why can my children lock and erase other family member Apple devices from their Apple ID?

    I recently setup iCloud Family Sharing for our home of 5 people.  My personal and unique Apple ID is the controlling parent ID.  Others in the family are my wife and 3 children (1 over 18 and 2 under 18).  Today I logged into iCloud from one of my ki

  • Error while Building project in cj20n

    Parameter LOAD_C in Formula LOAD_C not defined .... This error has come up while i was assinging work centre to activity....Kindly help PS consultants...M new to Configuration in PS Module Regards, Gaurav Chopra

  • How to Setup the DR for SQL2008

    Hi I want to setup the DR on SQL2008 . Following activities i have performed for the Active and stanby procedure. 1. Taken the Full backup 2. Restore it on the standy server in restoring mode 3. Configure the Transactional Log shipping for the active

  • Name of PDF output file?

    Within Adobe Output Desinger I have set PDF as my presentment target. How do I define what the name of the PDF output file will be and where it is saved?

  • Connecting tif image stored in DMS with Material Master

    I am not sure if this is the best forum for this question. If not please let me know. I am storing tif images into DMS. I would like to connect them to the material masters they represent. What would be the best way to go about this process? Thanks m