In my .ipa viewer builder i can see free folio but not retail folio

Hi,
here's my prob: i am testing my viewer app for a multifolio subscription app. I can see the free issue but not the retail issue. I checked probably all the possible probs: in app purchase and retail folio have same ID, i logged out from iTunes and created a test account for the purchase. But after i tested and downloaded the free issue and loaded in the folio organizer the retail folio, nothing else appears in my .ipa...
Any help would be soooooo appreciated

ok, solved (but i'll leave the thread on, so it might be useful to anyone else): the problem was about IDs. Bundle ID was different from folio ID (i mean com.company.publication). They HAVE to be exactly the same

Similar Messages

  • Bonjour - Mac A can see Mac B but not vice versa

    Hi
    Very odd behaviour with Bonjour. Up until yesterday, my macbook pro (call it A) would see my mac pro (B) - it would appear automatically in A's sidebar, I could listen to B's iTunes library on A and so on. No problem and there hasn't been for a couple of years. B could not see A - but I didn't really need it to and this wasn't an issue.
    Suddenly, this morning, the situation is completely reversed. A can no longer see B at all, but B can see A.
    I can connect both ways by using 'Connect', I can ping both ways, but I can't get A to discover B using Bonjour.
    The only think I've done that I can think can have caused the changes is to use Omnifocus sync (with B holding the sync server) - it worked fine all day, but overnight Bonjour seems to have reversed itself as described above.
    Bonjour Browser shows me that B can see A, but A can't see B. I have identical settings on both machines for sharing, network, firewall (all everything).
    Bizarrely, for one two minute period a couple of hours ago, the situation reversed itself (A could see B but not vice versa), but then immediately went back to B can see A, but not vice versa.
    Both computers are running the same version of Leopard (10.5.7). I've reinstalled the OS on B, just to see, but this hasn't improved matters.
    I can find nothing on google or this discussions forum to explain this bizarre behaviour - most support threads seem to peter out without being resolved. Has anyone any idea what's going on please? I'm quite happy getting stuck into the command line, if that's needed.
    Many thanks
    David

    The Macbook Pro is connected wirelessly to the router, the Mac Pro connects to the same router by ethernet.
    As far as I'm aware, I'd made no changes to any of the setups (computers or router) before the problem occurred: bonjour worked fine, but in one direction only (the MBP could see the Mac Pro, but not vice versa). Now, the Mac Pro can see the MBP, but not vice versa - and this is a problem because my printer and itunes server both sit on the Mac Pro.
    I've set all the firewall and security settings I could find to transparent access - and (except for the obvious difference between the wired and wireless links), the setups are identical on both computers.
    By the way, I can connect to the Mac Pro easily enough and transfer files, I just can't see it via bonjour or use Screen Sharing (again the settings haven't changed since they were working!)
    Many thanks
    David
    Many thanks
    David

  • I have just downloaded itunes to my new laptop. I can see purchased music but not all my cds - do i needto reload them?

    I have just downloaded itunes to my new laptop. I can see purchased music but not all my cds - do i need to reload them?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • HT5361 suddenly I cannot see my gmail in my inbox on my macbook.  I deleted the gmail account and added it back but I cannot see new gmail in my inbox.  I can see sent gmail but not incoming gmail.  The gmail is visible if I go to my google account on goo

    Suddenly I cannot see my gmail in my inbox on my macbook.  I tested it and I can see my gmail in google.  I deleted my gmail account on my macbook mail and re-added it and still cannot see incoming gmail.  I can see new icloud e-mail.  I have both a gmail account and an icloud account.    For my test e-mail in gmail, I can see sent gmail but not incoming gmail.  How do I fix this?

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox
    Try re-indexing the mailbox. This can take awhile if you have a lot of mail.
    Reindex messages
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages

  • Can't dwnload paid apps from the app store. Can download  free apps but not paid for apps. How do I fix this?

    Can't download paid apps from the app store. Can download free apps but not paid for apps. Anyone know what is wrong?

    If you're using a first generation iPod touch, it is up to date. The higher iOS versions require a newer model.
    (68010)

  • Document library: user can see the metadata but not the file itself

    Hello,
    For a specific document library certain users will have the right to see the metadata but not the file itself. The only solution I can  think of is using a http handler. But I don't know if I can get the user that requests the document.
    Are there any other approaches to this requirement?
    Can I get the username of the user that makes that request?
    I guess that http handler is deployed at the Web application level - am I right?
    Thank you
    Christos

    Nicolas, thank you for your answer.
    I think this this is not a strong protection. Everybody can istall sp designer or go through UNC path, like \\myserver\documentlibray or \\myserver\lists\mylist and see the documents- and we use unc paths a lot. I don't want to get into trouble when a (wiki)
    leak is made.
    Christos

  • Home Share - 2 computers, can see one library but not other?

    So home sharing is on on both computers, I can see the other computers library under "shared" in iTunes. However, the other computer cannot see my library.
    I have tried all the firewall things, turning home sharing off and on, closing computers down and restarting.
    Both are using latest version of iTunes.
    The only difference between the two is my one is also synched with my iPhone/iCloud
    any suggestions please?

    Hey rk6547,
    Great question. In my experience, the following article provides the best steps towards a resolution when troubleshooting Home Sharing:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/TS2972
    Thanks,
    Matt M.

  • Can see in appletviewer but not in browser

    Hy,
    I am trying to display a text on JTextArea using the code below. In appletviewer this is OK but I can not see the text on browser (IE 6, NS 8, Firefox 1.0.7). The browser only show a retangle applet. No exceptions.
    If I insert this two lines
    output = " \nHy";
    outputArea.append( output );
    then I can see "Hy" but not the text in mytext.txt. Why?
    Thanks
    Flow
    import java.io.*;
    import java.awt.Container;
    import javax.swing.*;
    public class myClass extends JApplet {
         public void init() {
              JTextArea outputArea = new JTextArea();
              outputArea.setLineWrap(true);
                 outputArea.setWrapStyleWord(true);
                 outputArea.setEditable (false);
              Container container = getContentPane();
              container.add( new JScrollPane( outputArea ) );
              String output = "";
              String file = "mytext.txt";
              try {
                   BufferedReader bufR = new BufferedReader(new FileReader(file));
                   String s = null;
                   while ((s = bufR.readLine()) != null) {
                        output += s;
                   bufR.close();
              } catch (Exception e) {
                   e.printStackTrace();
              outputArea.setText(output);
    <html>
    <head>
    <title>Untitled Document</title>
    </head>
    <body>
              <applet code="myClass.class" width="300" height="80"></applet>
    </body>
    </html>

    in your Java Console, while runnig your applet on browser you'll se...
    Java Plug-in 1.5.0_04
    Usar versi�n JRE 1.5.0_04 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\mbaiges
    java.security.AccessControlException: access denied (java.io.FilePermission mytext.txt read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileReader.<init>(Unknown Source)
         at myClass.init(myClass.java:24)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)That's because an applet needs to be a "signed applet" to have the requested privileges to access to local files, such as your "mytext.txt".
    There are many topics related to this problem that will help you to solve it :-)

  • NAS200 - Can See Public Drive but not private

    Recently, I purchased new Dell XPS and connected to my network.  I can "see" everything.  All computers are running Windows 7.  Home Premium on older ones and Professional on the new XPS.
    Now the real problem...  when I connect to NAS with new XPS, I can only see the public share drive.  The private (backups of all my files) does NOT show.  I've compared and matched network settings.
    Any Ideas?
    Jeff

    Log in to the NAS200 web interface and turn off the option "convert failed logins to guest logins".
    ===Jac
    Frequent NAS200 Answers:
    1. DISABLE the "convert failed logins to guest logins" option to fix permission problems.
    2. NEVER insert or remove hard disks while the power is on. NAS200 doesn't support hot swapping.
    3. ALWAYS use the power button to turn the NAS200 off, don't just unplug it.
    4. Don't trust RAID. Make BACKUPS!
    5. To ACCESS the disks directly, you will need ext2 and/or XFS file systems. I recommend using SystemRescueCD.
    6. Disks will get HOT with standard fan, use "green" disks or consider replacing the fan.
    7. FTP server is insecure and doesn't work behind a NAT router. Use my firmware and SCP instead.
    8. MY FIRMWARE supports SSH shell prompt and SCP for secure file access, and allows running other software.

  • In iPhoto, I can see the thumbnails but not the full-size photos

    In iPhoto, I can see the thumbnails along the bottom but I can't see the full-size photos - I just see a black screen. What should I do?

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Tablet & mobile can see desktop tabs but not in the other way

    Hi
    I have an android tablet, an android phone, a laptop, and a desktop at work. All with synced firefox.
    I use aurora on laptop and desktop, and beta on both android.
    On the desktop, i can only see tabs from the laptop, and on the laptop, only one from desktop.
    And on both android, i can see tabs from both laptop and desktop.
    In all cases, i can't see tabs from the both android.
    Sync is ok because i can see desktop ones on the android but it's not as useful as it could be if i can't have all tabs on every firefox, i cannot read on my tablet or my desktop tabs previously opened on the phone. I can see them in the history, though.
    Any hint about this?

    Did you check the sync setting to see if the tabs are synced?

  • Iphoto : can see all thumbnails but not full size

    I imported about 1000 photos into ipod and I can see the thumbnails just fine. But, when I double click on any thumbnail, all I see is a big white empty box with a ? inside. Please help!

    Andy:
    Give this a try: download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field.

  • Wireless devices can see wireless network but not connect

    Can anyone please assist?  I have a WRT54GS v2.  My wired computer accesses the Net fine and I can see MAC address, IP Address, DNS, subnet mask, default gateway in the linksys browser software. The devices can see the network with strong bars but cannot connect.
    HELP!
    Thanks,
    Solved!
    Go to Solution.

    It is possible that the router could have encountered some wireless interference, doughboy17. You may try adjusting the wireless channels of the router. Use channels 6, 3, 1 and 11. Have you tried checking if you still have the correct Wi-Fi password?
    If you have the correct network settings, try requesting for the firmware file and perform an update. That might help in resolving this matter. Or, you may proceed on doing a factory reset and configure the router again. 
    Help, learn and share

  • Can see the network but not the basestation

    I've seen lots of problems for configuring an older (Dual Ethernet) base stations, however I've not seen a problem quite like mine. both of my laptops can see and connect to the network, however the connection doesn't get past that point. This has happened before, however the new part is that neither of my laptops can find the base station via the airport admin utility. I have a MBP running leopard and a TiBook running 10.4.10 and they both have the same problem.
    I've tried using the configure other option and enter the IP address for the router but I always get an error code. I've tried connecting via either of the 2 ethernet ports as well and neither of my computers will acknowledge that the base station is there. I've checked the original documentation and the lights are behaving as though nothing is wrong other than no network activity.
    I'm loosing my patience and I'm about the throw the thing out a window

    I have a similar problem with my TiBook G4 10.3.9 and my Airport Snow. The laptop does not see the base station and tells me I have no network selected. The TiBook sees other networks and lists them in Internet Connect, but my account is missing. The base unit seems to be functioning properly, flashing all the requisite lights.
    I've tried using the Airport Setup Utility and the Airport Admin Utility to reconnect but neither sees the base unit. Any suggestions would be appreciated.

  • Air drop problem: My macbook can see the imac but not vice versa.

    Thats about it, When I open air drop on my imac i cant see my macbook but when i open air drop on my mac book I can see my imac, help?

    I had the same problem on my mac mini. 
    Makes sure your computer is on the following list.
    Only the following Apple computers are able to take advantage of the Air Drop feature:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)

Maybe you are looking for