A little bit confused about my review app

Hi,
I'm a little bit confused .
I have released on store my app for IOS 5.1 several mouths ago. Now to check that my app is IOS 6 compatible have installed xcode 4.5.
I thought that my correct tests were :
- build for IOS 6.0 to check if it run on for device that upgrade to IOS 6.0
- build for IOS 6.0 to check if it run on device that NOT upgrade to IOS 6.0 (still 5.1)
but i cannot run for simulator 5.1 with xcode 4.5!!!
how i can check it!!
Maybe i'm wrong . Could someone help me for my doubt ?
Best Regards
Al

Hardware > Version > 5.1
Don't forget to test it on real hardware. There should be plenty of iOS 5.1-limited devices available real soon now. Keep one of those for testing.

Similar Messages

  • A little bit confused about the ipv6 prefix-list

    when I configured ;
    ipv6 prefix-list abc permit ::/0 ge 0
    which I wish is to permit all the ipv6 routes,
    but the running information becomes "ipv6 prefix-list abc permit ::/0" which only matched the default ipv6 routes
    what is wrong with me

    Hardware > Version > 5.1
    Don't forget to test it on real hardware. There should be plenty of iOS 5.1-limited devices available real soon now. Keep one of those for testing.

  • A bit confused about VFS in AppV 5.0?

    Guys,
    I'm a bit confused about VFS in AppV 5.0. Can any one describe me VFS in 5.0?
    If it is in 4.6,  if we install the app in C:\ [any drive other than Q:\]  then it is called VFS?
    But, how about in 5.0. 
    Thanks in advance.

    Hi VINOD597,
    With AppV 5 we have PVAD (primary virtual application directory) and the VFS. When you install an application to the PVAD everything outside the PVAD will get in the VFS.
    Read the following link for more information:
    http://www.tmurgent.com/TMBlog/?p=1283

  • I'm a bit confused about standby log files

    Hi all,
    I'm a bit confused about something and wondering if someone can explain.
    I have a Primary database that ships logs to a Logical Standby database.
    Everything appears to be working properly. If I check the v$archived_log table in the Primary and compare it to the dba_logstdby_log view in the Logical Standby, I'm seeing that logs are being applied.
    On the logical standby, I have the following configured for log_archive_dest_n parameters:
    *.log_archive_dest_1='LOCATION=/u01/oracle/archivedlogs/ORADB1
    VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=PNX8A_GMD'
    *.log_archive_dest_2='LOCATION=/u02/oracle/archivedlogs/ORADB1
    VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=PNX8A_GMD'
    *.log_archive_dest_3='LOCATION=/u03/oracle/archivedlogs/ORADB1
    VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=PNX8A_GMD'
    *.log_archive_dest_4='SERVICE=PNX8A_WDC ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=PNX8A_WDC'
    *.log_archive_dest_5='LOCATION=/u01/oracle/standbylogs/ORADB1
    VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=PNX8A_GMD'
    *.log_archive_dest_6='LOCATION=/u02/oracle/standbylogs/ORADB1
    VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=PNX8A_GMD'
    *.log_archive_dest_7='LOCATION=/u03/oracle/standbylogs/ORADB1
    VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=PNX8A_GMD'
    Here is my confusion now. Before converting from a Physical standby database to a Logical Standby database, I was under the impression that I needed the standby logs (i.e. log_archive_dest_5, 6 and 7 above) because a Physical Standby database would receive the redo from the primary and write it into the standby logs before applying the redo in the standby logs to the Physical standby database.
    I've now converted to a Logical Standby database. What's happening is that the standby logs are accumulating in the directory pointed to by log_archive_dest_6 above (/u02/oracle/standbylogs/ORADB1). They do not appear to be getting cleaned up by the database.
    In the Logical Standby database I do have STANDBY_FILE_MANAGEMENT parameter set to AUTO. Can anyone explain to me why standby log files would continue to accumulate and how I can get the Logical Standby database to remove them after they are no longer needed on the LSB db?
    Thanks in advance.
    John S

    JSebastian wrote:
    I assume you mean in your question, why on the standby database I am using three standby log locations (i.e. log_archive_dest_5, 6, and 7)?
    If that is your question, my answer is that I just figured more than one location would be safer but I could be wrong about this. Can you tell me if only one location should be sufficient for the standby logs? The more I think of this, that is probably correct because I assume that Log Transport services will re-request the log from the Primary database if there is some kind of error at the standby location with the standby log. Is this correct?As simple configure as below. Why more multiple destinations for standby?
    check notes Step by Step Guide on How to Create Logical Standby [ID 738643.1]
    >
    LOG_ARCHIVE_DEST_1='LOCATION=/arch1/boston VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=boston'
    LOG_ARCHIVE_DEST_2='SERVICE=chicago LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=chicago'
    LOG_ARCHIVE_DEST_3='LOCATION=/arch2/boston/ VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=boston'
    The following table describes the archival processing defined by the initialization parameters shown in Example 4-2.
         When the Boston Database Is Running in the Primary Role      When the Boston Database Is Running in the Logical Standby Role
    LOG_ARCHIVE_DEST_1      Directs archival of redo data generated by the primary database from the local online redo log files to the local archived redo log files in /arch1/boston/.      Directs archival of redo data generated by the logical standby database from the local online redo log files to the local archived redo log files in /arch1/boston/.
    LOG_ARCHIVE_DEST_2      Directs transmission of redo data to the remote logical standby database chicago.      Is ignored; LOG_ARCHIVE_DEST_2 is valid only when boston is running in the primary role.
    LOG_ARCHIVE_DEST_3      Is ignored; LOG_ARCHIVE_DEST_3 is valid only when boston is running in the standby role.      Directs archival of redo data received from the primary database to the local archived redo log files in /arch2/boston/.
    >
    Source:-
    http://docs.oracle.com/cd/B19306_01/server.102/b14239/create_ls.htm

  • Bit Confused About Leopard Firewall

    Hey ya'll!
    I'm a little confused about what's going on with the Leopard firewall. It seemed that before, you could choose an application, and which ports you wanted to associate with it, via the System Preferences > Sharing > Firewall tab. Now, they went and moved it, and you can only choose the app, and whether it can receive incoming connections. OK, fine. So let's see what ports are open:
    Thee-MacBook:~ rick$ sudo ipfw list
    Password:
    33300 deny icmp from any to me in icmptypes 8
    65535 allow ip from any to any
    Huh? How come I'm only seeing two rules here?
    My original concern was for SoulseeX, and whether the required range of ports were open. While I can search and download, others have problems downloading from me, and I cannot directly connect to others, and other weirdness. So I decided to start checking things out.
    I do have SoulseeX listed in the Firewall tab, and set to receive incoming connections. But when I used this site <http://closer.s11.xrea.com/etc/port_scan.php> to test port 2234, it returned "failed".
    In short, here's what I'm wondering:
    Is the Firewall tab in System Preferences using ipfw?
    By setting an app in the Firewall tab in System Preferences, is the entire range of ports the app wants, in SoulseeX' case, 2234, 2235, 2236, 2237, 2238, 2239, and 2240, made available?
    How can I see what rules are being used, what ports are open?
    Will writing (a couple of) my own rules to ipfw screw up the other settings in the Firewall tab? I would, if possible, like to keeps things simple, and not have to rewrite all the rules by hand. Besides, I'm not exactly an expert!
    TIA!

    Leopard's application firewall is not a port firewall. I'm not sure where you would be able to see the actual port numbers that an application has opened, but your failures may be due to the ports being stealthed. Theipfw firewall is still there if you want to use it - the new firewall won't overrule it.

  • I'm a bit confused about the new Mail, Contacts prefs

    Is anyone else a bit confused with all the new sharing features in the Mail, Contacts & Calendars panel? If I can create address book accounts directly, why would I need to share the "on my Mac" contact list?
    Why is it that I can use the Microsoft Exchange for Google on my iPhone but it won't work in Lion? Has anyone gotten it to work?
    Can anyone share how they have theirs setup and what do they use each one for?

    Yes, you can create a new site, publish to MobileMe and redirect your domain name to it. More info on that can be had here:
    http://discussions.apple.com/thread.jspa?threadID=1164519&tstart=0
    http://docs.info.apple.com/article.html?path=MobileMe/Account/en/acct17114.html
    http://iwebfaq.org/site/iWeb_Domains.html
    FWIW MMe tends to be much slower overall and has no ear to ear support in case you need it. For a personal site it's OK but for a commercial site you would be better off on a commercial hosting server.
    OT

  • Im a bit confused about the Cloud

    I wanna buy Creative Cloud but  im very confused about that name  ...
    I wann use Lightroom and CC for my computer and Laptop - I guess it's working , aren't it ?

    The Cloud is a delivery process where you pay monthly or annual rent to use programs
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    Special Photography Plan
    http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html

  • Little bit confusion , give response asap

              Hi Prasad
              I have some question(confusing)??? pls give solutions asap
              What is Theread pool size???
              What is Thread Count???
              What is Thread Dump???
              Regards
              Krishna
              > Prasad Peddada <[email protected]> wrote:
              1. There is no point in having maxCapacity greater than the thread pool size. 2. Either reduce that increate thread count.
              Look at the service pack readme files. There is some suggestion regarding get connection to database.
              If you still see the problem, take thread dump in intervals of 30 seconds and post them.
              - Prasad
              Krishna wrote:
              > Hi prasad
              > I am giving the connection pool here. pls look this and give some suggession.
              >
              > weblogic.jdbc.connectionPool.iSyndicatePool=\
              > url=jdbc:weblogic:mssqlserver4:[email protected]:1433,\
              > driver=weblogic.jdbc.mssqlserver4.Driver,\
              > loginDelaySecs=1,\
              > initialCapacity=10,\
              > maxCapacity=40,\
              > capacityIncrement=1,\
              > allowShrinking=true,\
              > shrinkPeriodMins=15,\
              > refreshTestMinutes=10,\
              > testTable=useraccount,\
              > props=user=syndicate;password=syndicate;server=216.35.151.124:1433
              >
              > weblogic.allow.reserve.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              > weblogic.allow.reset.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              > weblogic.allow.shrink.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              >
              > and comming to the thread count
              >
              > weblogic.system.executeThreadCount=25
              >
              > i created connection poos in both servers cluster properties file. pls give some idea asap.
              >
              > Regards
              > Krishna
              >
              > Prasad Peddada <[email protected]> wrote:
              > >krishna wrote:
              > >
              > >> Hi Prasad
              > >> Thanks for ur suggession. Its working fine Now. But problem is
              > >> whenever i am sendding the request to the both servers, up to some time they are giving the response succesfully. But after some time both servers are not giving any response.(all requests are going to fail)
              > >>
              > >
              > >When this happens you should take thread dumps in intervals of one minutes and post the threaddumps.
              > >
              > >Also what's the jdbc connection pool size and what's the threadcount in both cases?
              > >
              > >- Prasad
              > >
              > >> Again after some time both servers are giving response. Again its repeating so on.
              > >>
              > >> What is the problem ????
              > >>
              > >> Can u Please help me about this issue.
              > >>
              > >> If servers are not in cluster, and both are connection to the same database.its giving 100% successful response. But if i joined in cluster its going to fail some times.
              > >>
              > >> Regards
              > >>
              > >> Krishna
              > >
              > >--
              > >Cheers
              > >
              > >- Prasad
              > >
              > >
              

    Comments inline.
              Hope it helps.
              Cheers - Wei
              "krishna" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi Prasad
              > I have some question(confusing)??? pls give solutions asap
              > What is Theread pool size???
              > What is Thread Count???
              I think Thread Pool Size and Thread Count are the same thing. WLAS has a
              thread pool. ExecuteThreadCount is the size of the pool. That is, it
              specifies how many threads in that pool.
              > What is Thread Dump???
              Refer to http://www.weblogic.com/docs51/techsupport/threaddump.html
              > Regards
              > Krishna
              >
              > > Prasad Peddada <[email protected]> wrote:
              >
              >
              > 1. There is no point in having maxCapacity greater than the thread pool
              size. 2. Either reduce that increate thread count.
              >
              > Look at the service pack readme files. There is some suggestion regarding
              get connection to database.
              >
              > If you still see the problem, take thread dump in intervals of 30 seconds
              and post them.
              >
              > - Prasad
              >
              >
              > Krishna wrote:
              > > Hi prasad
              > > I am giving the connection pool here. pls look this and give some
              suggession.
              > >
              > > weblogic.jdbc.connectionPool.iSyndicatePool=\
              > > url=jdbc:weblogic:mssqlserver4:[email protected]:1433,\
              > > driver=weblogic.jdbc.mssqlserver4.Driver,\
              > > loginDelaySecs=1,\
              > > initialCapacity=10,\
              > > maxCapacity=40,\
              > > capacityIncrement=1,\
              > > allowShrinking=true,\
              > > shrinkPeriodMins=15,\
              > > refreshTestMinutes=10,\
              > > testTable=useraccount,\
              > > props=user=syndicate;password=syndicate;server=216.35.151.124:1433
              > >
              > > weblogic.allow.reserve.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              > > weblogic.allow.reset.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              > > weblogic.allow.shrink.weblogic.jdbc.connectionPool.iSyndicatePool=guest
              > >
              > > and comming to the thread count
              > >
              > > weblogic.system.executeThreadCount=25
              > >
              > > i created connection poos in both servers cluster properties file. pls
              give some idea asap.
              > >
              > > Regards
              > > Krishna
              > >
              > > Prasad Peddada <[email protected]> wrote:
              > > >krishna wrote:
              > > >
              > > >> Hi Prasad
              > > >> Thanks for ur suggession. Its working fine Now. But problem is
              > > >> whenever i am sendding the request to the both servers, up to some
              time they are giving the response succesfully. But after some time both
              servers are not giving any response.(all requests are going to fail)
              > > >>
              > > >
              > > >When this happens you should take thread dumps in intervals of one
              minutes and post the threaddumps.
              > > >
              > > >Also what's the jdbc connection pool size and what's the threadcount in
              both cases?
              > > >
              > > >- Prasad
              > > >
              > > >> Again after some time both servers are giving response. Again its
              repeating so on.
              > > >>
              > > >> What is the problem ????
              > > >>
              > > >> Can u Please help me about this issue.
              > > >>
              > > >> If servers are not in cluster, and both are connection to the same
              database.its giving 100% successful response. But if i joined in cluster its
              going to fail some times.
              > > >>
              > > >> Regards
              > > >>
              > > >> Krishna
              > > >
              > > >--
              > > >Cheers
              > > >
              > > >- Prasad
              > > >
              > > >
              >
              >
              >
              

  • A bit confused about setting up two accounts in iTunes

    Dear Folks,
    I now have two iPads, which I (need to) have separate AppleID's for. I understand I can share apps between them if I authorize iTunes on my iMac with both ID's. I am not quite sure about the correct way to do that. I already have the iMac authorized for AppleID#1. If I go into iTunes and click on Store/Authorize this Computer... and enter my AppleID#2 information into Account name and Password boxes, does this authorize my iMac's iTunes for BOTH ID's or does it just change the authorization from ID#1 to ID#2?
    If the former is correct, I understand the way to proceed is to xync up both iPads to iTunes and then I can drag and drop apps from one iPad's library listings to the other, right?
    If this is not the correct way to get dual authorizations, what is?
    Thanks!
    pax / Ctein

    No, there are many discussions here that clearly state that is not the case.

  • I am a bit confused about unsaved metadata

    I have set up LR to save metadata to the catalog. My pictures in the grid show unsaved metadata. Does this mean that I have not saved the metadata to an xmp sidecar (which I do not want to do)? What are the implications?
    Thanks is advance.

    It appears that Lightroom will warn you when your original file (or XMP sidecar) is out of sync with the Lightroom database. In other words, if you import an image with no metadata, then add metadata within Lightroom, the Lightroom database will have metadata that the file (or XMP sidecar) will not. That is what the warning is concerning.
    Nothing more, and no worries if you choose to ignore it. All current data would be in the database.
    Actually, I suppose it is a little more complicated than that, but basically speaking, there's nothing to worry about. That being said, if you edit metadata in an outside application, and then tell Lightroom to sync the folder, I expect the warning will appear because the file (or XMP sidecar) now has data that the Lightroom database doesn't. The point is still the same...
    Anyone with more than a day's worth of knowledge care to jump in and correct me?

  • A bit confused about updating

    Hi All,
    Last night I loaded about 550 songs onto my 4gb nano. Today I thought it best to go through the library and uncheck lots of songs that I don't want on the nano...but when I try to update it says there is not enough free space. And when I look into the actual ipod song list it is grayed out and I am unable to deselect songs there. I have the songs encoded ACC at 192 bit rate so at least 700 songs should fit??? So how do I update the ipod and get rid of the songs I don't want...I thought what it would do it do the update and when doing so it would delete the songs I had unchecked....and yes, I checked the box in the preferences that says to update only checked songs.
    Tammy

    It will not automatically delete the songs
    you should turn on Manually manage songs in iTunes Preferences
    and then select the ipod icon and remove all the songs using iTunes
    and then restart from there

  • IAd Unit sizes: I am a bit confused about the file limits

    Say I have the bottom banner for iPad (hr) and full size iPad banner, what is the max iAdUnit size?
    Is it: 350kb for full size iPad banner (including all the images included on that page), + 200kb for the bottom banner
    Or how does it even work with sizes?

    It appears that Lightroom will warn you when your original file (or XMP sidecar) is out of sync with the Lightroom database. In other words, if you import an image with no metadata, then add metadata within Lightroom, the Lightroom database will have metadata that the file (or XMP sidecar) will not. That is what the warning is concerning.
    Nothing more, and no worries if you choose to ignore it. All current data would be in the database.
    Actually, I suppose it is a little more complicated than that, but basically speaking, there's nothing to worry about. That being said, if you edit metadata in an outside application, and then tell Lightroom to sync the folder, I expect the warning will appear because the file (or XMP sidecar) now has data that the Lightroom database doesn't. The point is still the same...
    Anyone with more than a day's worth of knowledge care to jump in and correct me?

  • Little Bit confused :s

    Hi,
    In my local pc shop they sell a MSI RX9800 PRO TD128.
    When i go to msi site, this is the only 9800 series card MSI has ?
    Cause, on this forum i dont find anything about this card.
    Only about the MSI RX9800 PRO Plus(CHIPSET=XT) TD 128. ???? PLUS ???
    This one i cant find amongst msi products ???
    Can anyone clear some things up 4 me plz?
    Thx,   Ken

    Stroke,
    This is the only 9800 card MSI has:
    RX9800PRO-TD128
    Now the do have this card too:
    RX800 PRO-TD256
    but that is an X800 card.
    Take Care,
    Richard

  • I'm a bit confused about this 32 bit and 64 bit stuff

    Martin Evening's book says "If your computer hardware is 64 bit enabled and you are running a 64 bit operating system, you can run Lightroom as a 64 bit program."
    Well I'm currently running XP 64 Bit with 4 GB of RAM inside. How do I run Lightroom in 64 bit mode?
    He says Windows 7 users and Windows Vista users will want to buy the 64 bit version of Lightroom. I don't see any 64 bit versions of Lightroom. And for those of us on XP?

    Road Worn wrote:
    I bought the disc. I explored the disc and I did find the Setup32 and Setup64 on there so I will assume the installer installed the correct version for me.
    You can check in task manager, whether LR is running in 32 or 64-bit mode for you. AFAIK, the 32 bit processes should be marked *32 in WinXP also.
    What version of LR are you running? Since you installed from CD, you might have LR3.0 installed. In this case I would strongly suggest you download Version 3.4 from here and install it. There have been many bug fixes from 3.0 to 3.4.
    Beat

  • Bit confused about authorization issues

    I have searched the forum on this but I can't really see the wood for the trees.
    As I understand it I can authorize up to 5 computers with my iTunes account. However, how does this relate to portable devices. My household has 3 iPhone and 3 iPads. Can I download an app that I have bought with my itunes account to all 6 of these portable devices ?

    When connecting your mobile devices one after the other you can simply define sync preferences individually for each device - i.e. on iPhone #1 select playlists A, B, C to sync while on iPhone #2 select playlists B, E, H to sync.
    It's really easy to set up sync preferences for each device independently.

Maybe you are looking for

  • DBConnect with SQL Server

    Hi, we have a dbconnect source system with sql server. The installation is correct and we have the list of tables and views. We can get a list of table/view content too. But, when we make an infopackage request there is no idoc generated and the stat

  • ERROR: JBO-26048 while createing a record.

    Hello, I have a table called ActivityTracker which has few Foreign Keys and one among them is for Activity_SubType (refering a table called Activity_Subtype). I am trying to insert a record in the ActivityTracker table using the following code: Entit

  • Reading XML Data from ABAP Program?

    Hi, How do I read XML Data from an ABAP Program? For example if I have the below basic XML Code- <xml> <Name> Thiru </Name> <Age> 24 </Age> <City> chennai </Chennai> </xml> How do i read the data within the Name,Age, and City tags into variables in t

  • WSDL Import for External Definiton

    Hi, I'm trying to import a wsdl document in order to create an external definition for a WS I am wishing to envoke from XI. However I get the following error: Cause: Unable to recognize the loaded document as valid WSDL  The value "xsd:schema" is not

  • REMOVE NESTED LOOP

    HI SAP GURUS I AM USING THE NESTED LOOP   LOOP AT IBKPF into IBKPF_str.     loop at IBSEG into IBSEG_Str.       if IBSEG_Str-BUKRS = IBKPF_Str-BUKRS and IBSEG_Str-BELNR = IBKPF_Str-BELNR and IBSEG_Str-GJAHR = IBKPF_Str-GJAHR.         Move-Correspondi