Please help: Getting publicKey from certificate

Hi,
I have created a certificate using keytool, and now I'm trying to extract a publicKey object from it via Java code.
I generated the certificate using the following commands:
.keytool -genkey -keystore test -alias abc123 -keyalg RSA -storepass xxxxxx
keytool -export -file tester.der -keystore test -alias abc123 -storepass xxxxxxI'm trying the following code:
KeyStore ks1 = KeyStore.getInstance ( "JKS");
ks1.load( (InputStream)(new FileInputStream( "C:\\Program Files\\Java\\jdk1.5.0_01\\bin\\tester.der" )), "xxxxxx".toCharArray() );
          Certificate c = ks1.getCertificate( "abc123" );
          PublicKey p = c.getPublicKey();where, xxxxxx is the passwod, abc123 is the alias I used to create the key store, and tester.der is the certificate file.
I'm getting the following error:
Exception in thread "main" java.io.IOException: Invalid keystore format
     at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:632)
     at java.security.KeyStore.load(KeyStore.java:1150)
I guess that the problem is related to the fact that in the getInstance() call, I used "JKS"? But if his is indeed the problem, with which string should I replace it?
Please help!!
thanks,
Amir

Thanks,
but... the key store file itself should NOT be at the
client side, only the certificate file!
So, if the client wants to load the public key via
the certificate, how can he do that? Isn't
there a way to load a public key from the certificate
itself into a Java publicKey object and not
from the key store file??
thanks a lot in advance,
AmirSo use a certificate factory to load the certificate and extract the public key. For excample
    CertificateFactory cf = CertificateFactory.getInstance("X.509");
            Certificate cert = cf.generateCertificate(new FileInputStream(certificateFile));
            java.security.interfaces.RSAPublicKey pk = (java.security.interfaces.RSAPublicKey)cert.getPublicKey();           
            System.out.println(pk.getAlgorithm());
            System.out.println(pk.getPublicExponent());
            System.out.println(pk.getModulus());

Similar Messages

  • TS4085 I reboot my router updated to IOS 5, still NO on/off selection for mirroring..please help getting disappointed

    I reboot my router updated to IOS 5, still NO on/off selection for mirroring..please help getting disappointed

    What are you trying to mirror from? Mirroring from your Mac won't be available until Mountain Lion 10.8  www.apple.com/macosx/mountain-lion/
    Setting up and troubleshooting AirPlay Mirroring
    support.apple.com/kb/TS4085 

  • When syncing my iPhone the storage says OTHER what is other and how do you delete it or make it smaller  my 16g phone has 3G of other please help get rid of it

    iitWhen syncing my iPhone the storage says OTHER what is other and how do you delete it or make it smaller  my 16g phone has 3G of other please help get rid of it

    The following has some information that may help: http://osxdaily.com/2013/07/24/remove-other-data-storage-iphone-ipad/

  • Please Help Get a Color from Pixel !!!!

    Is anybody know how to get a Color from pixel.
    My program is not Full Screen .
    So i think Robot.getPixelColor() don't suitable.
    Please Help me!

    Robot.getPixelColor() will work fine, but the problem you will have is getting the mouse set to the correct location and getting your application to know where it is: you can do it with win32 calls and JNI. Here are a few that I have found helpful--they are in a VB format:
    Public Const CLR_INVALID = &HFFFF 'not a valid pixel
    Public Const MOUSE_MOVED = &H1
    Public Const MOUSEEVENTF_ABSOLUTE = &H8000 ' absolute move
    Public Const MOUSEEVENTF_LEFTDOWN = &H2 ' left button down
    Public Const MOUSEEVENTF_LEFTUP = &H4 ' left button up
    Public Const MOUSEEVENTF_RIGHTDOWN = &H8 ' right button down
    Public Const MOUSEEVENTF_RIGHTUP = &H10 ' right button up
    Public Const REQUEST_LEFT_CLICK = &H2D 'request left click "-"
    Public Const REQUEST_RIGHT_CLICK = &H2B 'request right click "+"
    Type POINTAPI
    x As Long
    y As Long
    End Type
    Type POINTSTRUCT
    hwnd As Long
    hdc As Long
    ptAbsolute As POINTAPI
    ptOrigin As POINTAPI
    ptLocal As POINTAPI
    ptColor As Long
    sType As String
    retMessage As Boolean
    End Type
    Declare Function GetCursorPos _
    Lib "user32" (ByRef lpPoint As POINTAPI) _
    As Long
    Declare Function SetCursorPos _
    Lib "user32" (ByVal x As Long, ByVal y As Long) _
    As Long
    Declare Sub mouse_event _
    Lib "user32" (ByVal dwFlags As Long, _
    ByVal dx As Long, _
    ByVal dy As Long, _
    ByVal cButtons As Long, _
    ByVal dwExtraInfo As Long)
    Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Declare Function GetMessageExtraInfo Lib "user32" () As Long
    Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, _
    ByVal x As Long, _
    ByVal y As Long) As Long
    Declare Function WindowFromPoint Lib "user32" (ByVal xPoint As Long, _
    ByVal yPoint As Long) As Long
    Declare Function GetWindowDC Lib "user32" (ByVal hwnd As Long) As Long
    Declare Function GetWindowOrgEx Lib "gdi32" (ByVal hdc As Long, _
    ByRef lpPoint As POINTAPI) As Long

  • Need HELP getting my signed certificate to be recognized by Extension Builder in Eclipse! Getting Error in Windows!

    When I use Extension Builder 3 in Eclipse to package my files into a .zxp ... I get an 'invalid certificate' error.  Working in Windows, with Photoshop CC 2014.
    This .p12 certificate does currently work find in Configurator 4 for my CS6 panels.
    Please help me get this working! Thank you!

    Hi hdbrew,
    "extension doesn't contain a valid signature" is a warning message that I've got in the past when Adobe Extension Manager (AEM) wasn't up to date - so you might check whether you've the latest version here: https://creative.adobe.com/en/products/extension-manager.
    Paid vs. Free (self signed) certificates: I had a paid one in the past (no AEM warnings) but there are a couple of shortcomings IMHO:
    1. With Adobe Add-ons, AEM and its warning alerts are bypassed altogether (files are deployed via the CC app) - so from the user point of view there's no difference between self-signed and paid certificates.
    2. An extension signed with a paid certificate stops working when the certificate expires. Self signed ones keep working even past the expiration date.
    And three, I find it "peculiar" to pay a third party authority to certificate Adobe that I am who I am in order to be allowed to developed for... Adobe itself (lot of words to say: free is cheaper ).
    Extension Builder for bundling: as I wrote, personally I don't use EB - it's not been updated in a while (it's been acknowledged by the EB team too - who has kept releasing updates as CEP libraries) and I prefer a simple code editor + command line for signing and packaging, so others can be more helpful than me.
    Yet, if you don't need to package an hybrid extension, it's a matter of a simple line, such as:
    ./ZXPSignCmd -sign yourSourceFolder yourDestFolder/yourExtensionName.zxp yourCertFile.p12 yourCertPassword -tsa https://timestamp.geotrust.com/tsa
    Conversely, if you need to go hybrid (i.e. to deploy extra stuff alongside with your extension, e.g. a plugin) it's a matter of compiling an MXI file and the whole process is slightly more complex. Anyway, you can find information in the blogpost I mentioned earlier (the full series of 16 Tips so far is here).
    Regards,
    Davide Barranca
    www.davidebarranca.com
    www.cs-extensions.com

  • PLEASE HELP LOCATE SONGS FROM EXTERNAL HD (Cloud)

    First off, I would like to thank ANYONE who can help me out please! I am desperate now for some advice to help me through this, I have spent the last 10 Hours (Not Exaggerating) trying to find a solution to my problem online and reading through countless things I HAVE NOT been able to get an answer to resolve the issue that I am having. Please I beg you to help me! I just wanna call Apple Support so that someone can walk me through this but I am using a Windows and they won't take calls from Windows users (which is kind of lame since I am an Iphone/Ipad/Itunes customer just not on an Apple Computer) and honestly I would even pay money to have this issue fixed already I just don't wanna waste any more time on it!!!
    SO, that being said. Here is the most concise explanation I can give you of my troubles!
    1. I have both a Laptop and a Desktop. My Laptop has been my primary source for Itunes for the passed 8 years, however, it is old and I want to start using my Desktop for Itunes from now on..also, I NEED to free up space on my Laptop so that I can back up my Iphone 5 which has a broken screen, but that's another story!
    2. I Purchased something called a "WD MY CLOUD" Which is basically a personal ICloud that has 2TB of external HD Space on it. I hooked up my WDMyCloud and configured it, got it working perfectly, and I began the multiple hour long process to transfer my ITUNES Folder from my Laptop over to the WDMyCloud.
    3. All of the files and songs were successfully transferred from my Laptop to the WDMyCloud.
    4. I Installed Itunes onto my Desktop.
    5. I shift+clicked Itunes and chose the Itunes Library from my WDMyCloud. I believe the file is found in: \\WDMYCLOUD\Oliver\iTunes\iTunes Library. (And that is the .itl)
    6. When I have Itunes open, I go to preferences, and I change the MEDIA Folder to the iTunes Music Folder located on my WDMyCloud. I believe the file is found as: \\WDMYCLOUD\Oliver\Itunes\iTunes Music. (It does have all of my songs in there on the WDMyCloud in Folders by Album or however itunes had it organized)
    7. Now I am staring at my Itunes Playlists and All of my Songs are there, however, whenever I try to Play ANY Song on there I receive this error: "The song "xx" could not be used because the original file could not be found. Would you like to Locate it?" (And no, I would not like to manually locate over 3,000 songs)
    Also, every single Song has an "!" Exclamation mark next to it.
    8. If I use "Get Info" about the track to see where Itunes is looking for the track, I will show you an example now here to what it says:
    "file://localhost/C:/Users/Oliver/Downloads/Firebeatz - Gangster (Original Mix).mp3"
    (Now I do realize that this is incorrect, it should be looking for the songs in my WDMyCloud, that path above is from my Laptop's Downloads Folder and I have no idea how to fix this.)
    9. I have also tried using the "FindTracks.vbs" on my \\WDMYCLOUD\Oliver\Itunes\iTunes Music Folder and this did nothing, at all.
    10. I have opened the Itunes Library XML that is saved onto my WDMyCloud from my Laptop, and it shows the script as:
    <plist version="1.0"><dict><key>Major Version</key><integer>1</integer><key>Minor Version</key><integer>1</integer><key>Date</key><date>2014-05-24T16:40:35Z</date><key>Application Version</key><string>11.2</string><key>Features</key><integer>5</integer><key>Show Content Ratings</key><true/><key>Music Folder</key><string>file://localhost//WDMYCLOUD/Oliver/Itunes/iTunes%20Music</string><key>Library Persistent ID</key><string>5C3728163E81BB1D</string><key>Tracks</key>
    <p
    ^^ Now I'm not really sure how clumped up that is going to look once I post cuz when I tried copy/pasting it from the XML on to here it came out looking super weird, but as you can see the key thing there is that the file it says it's looking in is the Itunes Music file in my WDMyCloud. So I don't know what could be wrong with the XML script path if there is anything wrong with it at all. The rest of the XML is super super long list of all my tracks and albums an such which is obviously unimportant to this matter. But maybe this can help figure out my problem.
    Anyway, that's about as far as I was able to get after 10 hours of research, and like I said, still no solution. I'm stuck! Please please please help me figure this out! One of the biggest reasons I purchased this WDMyCloud was to use it as a consistent Itunes mediator between my devices and I absolutely MUST free up space on my Laptop ASAP and this is the only way! Thank you so much for your help in advance!!

    See Make a split library portable for some general advice on making a working library portable. It should be less hassle than fixing a broken one.
    Since the library works perfectly on the laptop I would suggest you start over and do it like this;
    1. Create a new iTunes folder in the root of the external as \\WDMYCLOUD\iTunes (capitalised as shown please, just to appease my OCD)
    2. Copy into it the following items from C:\Users\Oliver\Music\iTunes
    Album Artwork
    iTunes Library.itl
    iTunes Library Extras.itdb
    iTunes Library Genius.itdb
    sentinel
    3. Shift-start iTunes and open the library at \\WDMYCLOUD\iTunes\iTunes Library.itl
    4. Under Edit > Preferences > Advanced change the media folder to \\WDMYCLOUD\iTunes\iTunes Media (again capitalised as shown please)
    5. Use File > Library > Organize Library. Tick both boxes, or the one that isn't greyed out, then click OK.
    iTunes will gather in copies of all your media files, putting them into the correct locations so that the library is in the modern layout, and able to be moved from one machine to another.
    I'd recommend you clone the entire iTunes folder to another drive (see this backup tip) before you think about cleaning the originals.
    If your library is large then having the library files on a network share will slow things down as the database has to be written out almost any time you do anything with your library. Once you've connected the library to the new computer and had it opened and working you can copy the library files and Album Artwork folder into the local C:\Users\Oliver\Music\iTunes folder (deleteing what is already there first) then shift-start-iTunes and connect to C:\Users\Oliver\Music\iTunes\iTunes Library.itl. If/when you want to move the library to a different drive/computer copy the files back out to the drive and access the library there at lease once before the move.
    tt2

  • Very urgent!!! Please help! Anybody from Oracle who can help?

    I am using Oracle9i with oracle pool in my JSP for database handling.
    I am using OracleConnectionCacheImpl and OracleConnectionCacheImpl.DYNAMIC_SCHEME.
    I am also setting max and min limit for connections
    ocacheimpl.setMinLimit (5);
    ocacheimpl.setMaxLimit (10);
    I have used a startup servlet that loads on tomcat startup
    creating pool ( that is, OracleConnectionCacheImpl)
    This OracleConnectionCacheImpl in then I am putting as
    application wide object and getting access to it in all my JSPs
    Initially it creates 5 connections. But after some time (2 hrs or
    so) all the connections are getting killed. (I can see this
    from the "Sessions" tab of the enterprise manager)
    Now if I request my JSP then I get error. But after around 30mins
    again 5 connections are created automatically( I hope thats what
    DYNAMIC_SCHEME would do) and then my JSp works.
    My question is why all connections are getting killed and why it
    takes so much time to reset the connections again!
    Is Oracle's DYNAMIC_SCHEME has got some bug? or I have to do
    some settings in my oracle server. Please help
    I am using oracle9i in Japanese OS(Windows).

    Check once *REMADV *.
    Amit.

  • Need help getting pics from Adobe Starter Edition to Photoshop Elements 10!!!

    I had Adobe Photoshop Starter Edition already installed on my computer when I bought it.  I hadn't used it in quite a while because my camera was broken.  I recently got a new camera.  I tried to export my pics to my computer and as soon as it came up my pics immediately went to Adobe Photoshop Starter Edition.  It wants me to put in a registration code which I don't have because it is no longer a working product.  I talked to someone in chat and they said to install Photoshop Elements and I should be able to get them into the new program.  I've installed that and I still can't figure out how to do it when the starter edition won't let me do anything without a registration key!!!!!!!!!!!  I want my pics back!!!  These pics are precious to me.....the sad part is I clicked on the box to NOT erase them from my camera....and it erased them anyways.  Can someone please help???
    Thanks,
    Lisa

    Your pictures are not really in the starter edition program.
    From an adobe employee Mark Dahm:
    "It is a common misconception that Starter Edition 'stores', or copies, your files into it. But the program does not move or copy files at all, rather it scans your system's My Pictures directory, and generates miniature versions of your pictures (called thumbnails) so that you can browse a 'flat' list of thumbnails of your photos, overcoming the inconvenience of having to go into separate folders in Windows Explorer to have to find files.The thumbnails, as well as any tags, and Albums that you create in Starter Edition are all stored in the Photoshop Album catalog file, separate from your pictures, and your pictures remain where you originally copied them to your computer.
    If you use Photoshop Album to subsequently download files from a digital camera or scanner, the default location where the program will create those files would be in the My Pictures>Digital Camera Photos folder. But if you do NOT use Photoshop Album Starter edition to download files from your camera, then you will find that folder empty.
    The thumbnails in the Starter Edition catalog will exist, even if you decide to move or delete the original photos that were added to the program. This will cause files in the Photoshop Album catalog to become 'disconnected' from the original photos. To reconnect the files, you can use the File>Reconnect Missing files command to see if the program can locate the original files in a new location, and once again re-link the catalog thumbnails to the files they once referenced.
    Since Photoshop Album has been discontinued, I recommend that folks find an alternative solution. One alternative that will preserve most of what you've created in Starter Edition is the Photoshop Elements 8 trial. Install that, and it will automatically convert the Photoshop Album catalog to a current format, and the program will not time out, as Starter Edition did. If you want to purchase more Editing power, you can also choose to purchase the full program, but it's not required.
    If you are like many who have come to this forum wondering how you can get to your photos, now that the program has become locked or expired, don't worry; your photos have never been moved by Photoshop Album; they remain wherever you intially put them, on your hard drive. To get to them, you can navigate your file system using Windows Explorer. They are typically in your My Documents>My Pictures folder. Here is a handy How-To that you could refer to to find photos on your system, as well as some other tips for how you can use folders to keep your photos organized: http://www.microsoft.com/windowsxp/using/setup/maintain/filemgmt.mspx
    Hope those tips help!
    -Mark"

  • Please help getting invalid number error.

    Hi Experts,
    My requirement is
    If DT_ID value of xmlmsg existed in the DT_ID of PART_ID_COLLES table then that record should be processd else should be skipped.
    And xmlmsg of PART_ID should start with "A" and followed only by the number then that record should be processed else should be skipped.
    And xmlmsg of DD_DAYS should contain only  the number and grater than or equal to 0 ,then that record should be processed else should be skipped.
    For that I have written this code.
    But if I pass dt_id as string value in xmlmsg I am getting invalid number error.
    DT_ID of PART_ID_COLLES table is number data type.
    SELECT xmlmsg.part_id part_id,xmlmsg.dd_days dd_days,xmlmsg.dt_id dt_id
                      FROM XMLTABLE(
                            XMLNAMESPACES(
                                'urn:schemas-microsoft-com:rowset' as "rs"
                              , '#RowsetSchema' as "z"
                            '/z:row[not(@dt_id=following-sibling::z:row/@dt_id and @part_id=following-sibling::z:row/@part_id)]'
                            PASSING p_dd_days_vals
                            COLUMNS
                                ITEM_NO             for ordinality
                              , dt_id    VARCHAR2 (20) path '@dt_id'
                              , part_id  VARCHAR2 (25) path '@part_id'
                              , dd_days  VARCHAR2 (20) path '@dd_days'
                           ) xmlmsg,
                           part_id_colles pic
                           WHERE REGEXP_REPLACE(TRIM(xmlmsg.dt_id),'^([0-9]+)$|.','\1') = pic.dt_id
                                 AND REGEXP_LIKE (UPPER(TRIM(xmlmsg.part_id)),'^[A][0-9]+$')
                                 AND (TO_NUMBER(REGEXP_REPLACE(TRIM(xmlmsg.dd_days),'^([0-9]+)$|.','\1')) >=0
                                 AND REGEXP_LIKE(TRIM(xmlmsg.dd_days), '^-?[[:digit:],.]*$') ;
    Sample message is
    <MESSAGES>
    <MESSAGE ID="12345">
      <MSG_ID>3026900</MSG_ID>
      <DT_POSTED>6/20/2013 08:15:48</DT_POSTED>
      <POSTED_BY>GPD_MSG_EXTRACTOR</POSTED_BY>
      <DT_LAST_QUEUED />
    <MSG>
    <WORK_SET TRANSACTION_ID="@TRANS_ID" TRANSACTION_TYPE="Batch" IS_ACID="@IS_ACID">
    <WORK_UNIT GROUP="dd_days" ACTION="ADD" AFFECTED="dd_days">
    <RECORDSET TABLE_NAME="dd_days">
    <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    <rs:data>
      <z:row dt_id="430" part_id="A5556689" dd_days="10"/>
      <z:row dt_id="550A" part_id="A8889965" dd_days="20"/>
      </rs:data>
      </xml>
      </RECORDSET>
      </WORK_UNIT>
      </WORK_SET>
      </MSG>
      </MESSAGE>
      </MESSAGES>
    Please help me.
    Thanks.

    Your code has ton of errors. Anyway:
    with part_id_colles as (
                            select 430 dt_id,xmltype('<MESSAGES>
    <MESSAGE ID="12345">
      <MSG_ID>3026900</MSG_ID>
      <DT_POSTED>6/20/2013 08:15:48</DT_POSTED>
      <POSTED_BY>GPD_MSG_EXTRACTOR</POSTED_BY>
      <DT_LAST_QUEUED />
    <MSG>
    <WORK_SET TRANSACTION_ID="@TRANS_ID" TRANSACTION_TYPE="Batch" IS_ACID="@IS_ACID">
    <WORK_UNIT GROUP="dd_days" ACTION="ADD" AFFECTED="dd_days">
    <RECORDSET TABLE_NAME="dd_days">
    <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    <rs:data>
      <z:row dt_id="430" part_id="A5556689" dd_days="10"/>
      <z:row dt_id="550A" part_id="A8889965" dd_days="20"/>
      </rs:data>
      </xml>
      </RECORDSET>
      </WORK_UNIT>
      </WORK_SET>
      </MSG>
      </MESSAGE>
      </MESSAGES>') p_dd_days_vals from dual)
    SELECT  xmlmsg.part_id part_id,
            xmlmsg.dd_days dd_days,
            xmlmsg.dt_id dt_id
      FROM  part_id_colles pic,
            XMLTABLE(
                     XMLNAMESPACES(
                                   'urn:schemas-microsoft-com:rowset' as "rs",
                                   '#RowsetSchema' as "z"
                     '/MESSAGES/MESSAGE/MSG/WORK_SET/WORK_UNIT/RECORDSET/xml/rs:data/z:row[not(@dt_id=following-sibling::z:row/@dt_id and @part_id=following-sibling::z:row/@part_id)]'
                     PASSING p_dd_days_vals
                     COLUMNS
                        ITEM_NO             for ordinality,
                        dt_id    VARCHAR2 (20) path '@dt_id',
                        part_id  VARCHAR2 (25) path '@part_id',
                        dd_days  VARCHAR2 (20) path '@dd_days'
                    ) xmlmsg
      WHERE REGEXP_REPLACE(TRIM(xmlmsg.dt_id),'^([0-9]+)$|.','\1') = pic.dt_id
        AND REGEXP_LIKE(UPPER(TRIM(xmlmsg.part_id)),'^[A][0-9]+$')
        AND TO_NUMBER(REGEXP_REPLACE(TRIM(xmlmsg.dd_days),'^([0-9]+)$|.','\1')) >=0
        AND REGEXP_LIKE(TRIM(xmlmsg.dd_days), '^-?[[:digit:],.]*$')
    PART_ID                   DD_DAYS              DT_ID
    A5556689                  10                   430
    SQL>
    SY.

  • Help get data from socket

    hi all
    i am trying to get data from socket www.yahoo.com site and try to write in file with following code
    NOTE:here netClient is the soccket object accepted by server
    File f=new File(finalpath);
    BufferedReader fromClient = new BufferedReader(new InputStreamReader(netClient.getInputStream()));
    OutputStream fo=new FileOutputStream(f);
    String str;
    try{
    while((str=fromClient.readLine())!=null){
    byte buf[]=str.getBytes();
    fo.write(buf);
    }catch(Exception e){}
    finally{fo.close();}
    But i am not getiing data from socket
    please help
    regards krunal

    GeneralYerevan is absolutely right. Use URLConnection and you will get what you want. It seems to me that you do not know deeply how http works. The fact that you opened a connection to www.google.com doesn't mean that you will get data. The web server, after it accepts the socket object, waits for your request. In you case it is something like "GET / HTTP1.1", which you have to write to the stream. URLConnection does all this for you and all you have is to read the InputStream.

  • Please Help - restore iphone from old backup

    Dear Applers,
    i got very complectated case,
    i use Apple iPhone 3G (3.1.3) & Mac Book Pro (iTunes 10)
    i took backup for my phone at 12 pm, at 5 pm i deleted my messages by accident and when i connected my mobile to the computer to get back my things the computer automaticilty synced my mobile and took a new backup at 5 pm.
    when i right click > restore, the computer show me that the last backup is at 5pm which is i dont want because it doesnt have my data, i want to be able to restore from the backup that i took earlier that day.
    i tried to go to Users/ Library / Application Support / Mobile Backup and i found that my old files still their beside the new files
    i tried to delete my new backup files from this directory so that way it take the backup before it. it didnt work .. it just deleted every thing
    i really dont know what to do i feel like my data is here but i cant access it
    Please Help,
    Thanks

    To be able to read the content of those files inside the backup folder, you'll have to use special software like "backup extractor"  http://supercrazyawesome.com/ for example. But don't use the original folder to test, copy it to another place on your HD and use this copy to try.
    Some files are not replaced when a backup is made, only files that changed in data are replaced, as far as I know.

  • Please help with Synch from Blackberry to Outlook

    Hello Everybody, I am new here and need help.  Due to a restructure, my position was eliminated.  The company used Lotus Notes and I had everything synched with my Blackberry and it worked fine.  Of course, I had to return the Blackberry but did get a copy of the data (address book, calendar entries, and memo notes as well as e-mail). 
    I bought Outlook and am using my wife's older BB (I think it is an 8700 series based on pictures.)  I was able to get the address book loaded somehow into Outlook, but when I try to do a full synch, I get the following error after Intellisync does read the calendar records:
    "No Outlook or MS Exhchange folders appear to be configured.  Please run Intellisync Configure, and make sure all selected applications have associated Outlook/MS Exchange folder."
    I have tried to configure but I am not able to "browse" for a file.  That area is grayed out.
    Please help!  Thank you very much.

    JSS1138 wrote:
    you can't dynamically-link a Pr sequence into an AE comp, and then turn around and link that AE comp back into a Pr sequence.
    Close enough.  Seen it done in the tutorials.  There's a way to select the desired clips, directly open a new AE project and comp from Premiere with those clips exactly as they are in the Premiere sequence, do your manipulations in AE, then when you switch back to Premiere, those AE changes show up on the clips in question.  You effectively get Premiere>AE>Premiere.  Any and all changes made in AE show up in Premiere.  The only thing you can't yet do is make changes to the original clips in Premiere, as they get replaced by the AE comp.
    Still, I'd call that two way DL, and it may be the most efficient way to ge this job done.
    Potato, Potahto.  Smoke and mirrors.  The only difference between that and the copy/paste that I described above is that Premiere automatically does the copy/paste for you, and automatically adds the AE comp to the sequence as a replacement for the selected clips.  You can call that 2-way DL if you want, but I won't.  I'm pushing for real 2-way dynamic linking.
    -Jeff

  • Please help.downloading apps from ovi store over w...

    i simply cannot download a single application from ovi store over wifi.its too costly over 3g .please help me.latest firmware updated.

    You dont have change your wifi settings.(I hopr you dont have any probs with your internet connection)
    Use this installation files and install reps.
    http://my-maemo.com/download/repos/extras.install
    http://my-maemo.com/download/repos/extras-testing.install
    http://my-maemo.com/download/repos/extras-devel.install
    And also check your nokia catalogues  from appmanager.
    "You may loose faith on us.. But never in your selves! From here, the fight will be your own.."
    _____________[Protect Transformers]_____________

  • Help getting data from iTunes onto my New iPad from iPhone backup

    Hi for 2 days now I have been trying to sync my New iPad2 with my iPhone 3GS, I have followed lots of threads & advice which has been helpful but its not quite happening for me!
    I set up iCloud and iTunes as advised, my iPhone & iPad share the same Apple ID. I backed up my iPhone to iTunes successfully, and restored the iPad via iTunes using the iPhone backup, it went thru the motions OK so I assume completed but I can't see any change.
    Under "Purchases" in my iTunes account it has two tabs one for the iPhone and the other iPad listing all my Apps so clearly it recognises my Apps but the Apps only feature on my iPhone I can't get them onto my iPad. I even deleted some apps and reloaded them since the sync & backups but it still doesn't work. Strangely under my "Account" in iTunes it says only 1 Device is recognosed by iTunes and thats my New iPad, yet it still shows a Tab under Purchases for my iPhone so I don't understand why this is not listed as a recognised Device under the Accounts tab.
    My contacts, calendars etc are in sync between the two devices wihtout any trouble at all.
    I did think it was because some of the apps were downloaded before the sync / backup but some threads lead me to beleive you can sync the content no matter when it was purchased. Under the "Purchases" tab for my iPad I can view my "Apps" which has a "Download all" option so Ibeing at a loss what to do next I proceeded to Download All and it was clearly doing this for some time but still nothing on my iPad.
    I was advised to turn iCloud off whilst I do the backup and restore on iTunes, and then turn it back on after. I have turned my iPad off/on after these updates but still the apps do not transfer across.
    I feel like I am so close now but for some reason something is still not working! Please Help - thankyou.
    (Just to add both devices are using the latest software update & iTunes working with Vista Windows on PC.)

    Connect and select iPhone in computer iTunes sidebar, in Music tab,
    select
         Sync Music,
         Selected Playlists, artists, albums....
         Select the music you want on iPhone.
         Click Sync button (bottom right)
    Here's the iPhone user manual
    iPhone User Guide (For iOS 6.1 Software)
    Message was edited by: ckuan

  • Itunes doesnt recognize Ipod, please help, getting frustrated!!

    OK today I plugged my ipod into my computer to update it and magically it started updating, i dont know what I did but it updated the stuff that i have added recently. Yesterday it wouldnt update and it hasnt updated for the past 2 weeks. Now after adding a couple of more songs i go to update it again and nothing happens, now what is going on, I have uninstalled and reinstalled both the ipod updater and the itunes updater, the latest software is on my ipod, i reset my ipod because it froze last night, i dont know what to do, I am close to taking it to the apple store but im not sure what they could do about it. Is there something in itunes that I need to click so my ipod will be recognized, this is getting very frustrating, my ipod use to update every single time that I plugged it in, my computer is fairly new but my ipod has worked several times on this computer before, so please anyone HELP ME!!

    i am having the same problem and i am going insane. It i had my ipod since christmas and never had a problem till this week. When i plug it in the ipod displays the "Do not Disconnect" but itunes doesnt pop up or show that the ipod is plugged in. When i try to update it the updater also says that the ipod isnt plugged in. I know have lost all the songs in my ipod but they are still in my itunes but it wont update. Somebody please help, its been about 4 days and im going crazy.

Maybe you are looking for

  • List of issues with patch level

    Is there a list of application errors reported for each patch level? When working with SAP R/3, there is a SAP note released for each patch level which states the changes delivered in that patch as well as what fixes are delivered. Therefore, it is e

  • SMTP in problem

    I'm testing inbound connections using a port listener software. all ports are working, only port 25 fail this is what I use to route inbound connections: access-list outside_access_in extended permit tcp any host 63.x.y.26 eq 951 access-list outside_

  • In.App Subscriptions

    Certain app store products may include functionality that enables you to acquire content on a subscription basis (" In - App Subscriptions "). In-App subscriptions will automatically renew for the application time period you have selected and, were a

  • Sliding Panels Help for Javascript Idiot

    I have a simple thumbnail gallery to which I am attempting to apply the Spry Sliding Panels widget. I am creating the gallery from an xml file, and this seems to be working fine. I looked at the code of the Sliding Panels examples, but being the Spry

  • [svn:fx-trunk] 13964: Work around TLF bug #2545307.

    Revision: 13964 Revision: 13964 Author:   [email protected] Date:     2010-02-03 11:47:06 -0800 (Wed, 03 Feb 2010) Log Message: Work around TLF bug #2545307.  ContainerController.mouseWheelHandler() should be checking if the default behavior is preve