Developers, I Need .P12 Certificate and Password :(

Hello Developers, I need your help.
I want to do application for iPhone on Adobe Flash CS5. I tried but it needs .12 Certificate file and password.
Anybody help me ?
Thanks.

Sorry to break it to you; however applications developed through Adobe CS5 will likely be rejected, due to this:
.3.1 — Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs. Applications must be originally written in Objective-C, C, C++, or JavaScript as executed by the iPhone OS WebKit engine, and only code written in C, C++, and Objective-C may compile and directly link against the Documented APIs (e.g., Applications that link to Documented APIs through an intermediary translation or compatibility layer or tool are prohibited).
The last sentence is of particular relevance to you.

Similar Messages

  • My dad bought an ipad 2 of my uncle for cheap since its a little broken but i tried to earse the ipad so all the password and thing from my uncle go away but i was stuck on the activation when i need an email and password but my uncle cant remember it

    My dad bought an ipad 2 of my uncle for cheap since its a little broken but i tried to earse the ipad so all the password and thing from my uncle go away but i was stuck on the activation when i need an email and password but my uncle cant remember it because he has medical problems and he does not remember the email since he has alot of emails he thinks he remembers the password since he always keep the same password. So does anyone know what i can do because the ipad is locked and my parents are like very mad at me xD

    http://support.apple.com/kb/PH13695
    Activation Lock cannot be bypassed, you will have to recover the email and password used to activate it.

  • Tthe network needs a username and password for devices. College. Options!?

    I am a new college student and I want to print wirelessly.  The network needs a username and password.  The problem is when setting up a wireless network on the printer, it doesnt allow this. What are my options to print? Please help!?
    HP Officejet 6500 e-all-in-one
    This question was solved.
    View Solution.

    Printers do not work with networks that require a username and password to communicate on the network.  Sorry.
    The only way you will be able to use the printer wirelessly is through an ad-hoc connection.  This means the computer will not an Internet connection while it is connected to the printer's ad-hoc network unless the computer has two network connections available (2 wireless or 1 wireless and 1 wired).
    The top of page 138 of the manual details how to connect to the printer's ad-hoc network.
    Let me know what happens.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Step Through a List of .p12 Certificates and Their Passwords to Extract Property Data

    This is a follow-up question to my previous thread:
    http://social.technet.microsoft.com/Forums/en-US/58ca3098-e06d-419a-9465-1ae7973e1c04/extract-p12-property-information-via-powershell?forum=ITCG
    I understand how to extract the information for a certificate one-by-one, but I am wanting to write a powershell script that will step through a list of certificates and a list of their corresponding network passwords in order to extract their property
    data (i.e. expiration date, etc). Any suggestions?
    jrv helped me with the first part of my question by providing this script:
    PS C:\> $filename='c:\temp2\certs\jpd.cer'
    PS C:\> $cert=[System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromSignedFile($filename)
    PS C:\scripts> $cert|fl
    Happy Hunting!

    HINT:
    dir *.cer | %{ [System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromSignedFile($_)}
    ¯\_(ツ)_/¯

  • Why SharePoint 2013 Hybrid need SAN certificates and what SAN needs ?

    I've read this article of technet, but I couldn't undarstand requied values of SubjectAltname.
    https://technet.microsoft.com/en-us/library/b291ea58-cfda-48ec-92d7-5180cb7e9469(v=office.15)#AboutSecureChannel
    For example, if I build following servers, what SAN needs ?
    It is happy to also tell me why.
    [ServerNames]
     AD DS Server:DS01
     AD FS Server:FS01
     Web Application Proxy Server:PRX01
     SharePoint Server(WFE):WFE01
     SharePoint Server(APL):APL01
     SQL Server:DB01
    [AD DS Domain Name]
     contoso.local
     (Please be assumed that above all servers join this domain)
    [Site collection strategy]
     using a host-named site collection
    [Primary web application URL]
     https://sps.contoso.com
    Thanks.

    Hi,
    From your description, my understanding is that you have some doubts about SAN.
    If you have a SAN, you can leverage it to make SharePoint
    a little easier to manage and to tweak SharePoint's performance. From a management standpoint, SANs make it easy to adjust the size and number of SharePoint's hard disks. What you could refer to this blog:
    http://windowsitpro.com/sharepoint/best-practices-implementing-sharepoint-san. You could find what SAN needs from part “Some
    SAN Basics” in this blog.
    These articles may help you understand SAN:
    https://social.technet.microsoft.com/Forums/office/en-US/ea4791f6-7ec6-4625-a685-53570ea7c126/moving-sharepoint-2010-database-files-to-san-storage?forum=sharepointadminprevious
    http://blogs.technet.com/b/saantil/archive/2013/02/12/san-certificates-and-sharepoint.aspx
    http://sp-vinod.blogspot.com/2013/03/using-wildcard-certificate-for.html
    Best Regard
    Vincent Han
    TechNet Community Support

  • Browser need proxy username and password

    this code works fine without a proxy, however i can figuer out how to get it to work when behind a proxy, i tried some different things to pass the proxy username and password(the commented out code) but those did work, can anyone help with this? cause im lost as to how to send the proxy credentials to get outside to the net
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ReadServerFile extends JFrame {
    private JTextField enter;
    private JEditorPane contents;
    public ReadServerFile(){
    super ("Rage");
    System.getProperties().put("proxySet","true");
    System.getProperties().put("proxyPort","80");
    System.getProperties().put("proxyHost","90.8.0.5");
    //need to set the username and password
    //System.setProperty("http.proxyUser","sservices/proglab30");
    //System.setProperty("http.proxyPassword","proglab30");
    //Authenticator.setDefault(new Authenticator()
    // protected PasswordAuthentication getPasswordAuthentication()
    //   return new PasswordAuthentication("proglab30","proglab30".toCharArray());
    Container c = getContentPane();
    enter = new JTextField("http://www.google.com/");
    enter.addActionListener(new ActionListener()
    {public void actionPerformed (ActionEvent e)
    {getThePage(e.getActionCommand());}});
    c.add( enter, BorderLayout.NORTH);
    contents = new JEditorPane();
    contents.setEditable(false);
    contents.addHyperlinkListener(
    new HyperlinkListener(){
    public void hyperlinkUpdate(HyperlinkEvent e)
        if (e.getEventType()==
        HyperlinkEvent.EventType.ACTIVATED)
        getThePage(e.getURL().toString());}});
    c.add(new JScrollPane(contents), BorderLayout.CENTER);
    setSize(400,300);
    show();
    private void getThePage(String location)
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    try {
    contents.setPage(location);
    enter.setText(location);
    catch(IOException io)
      JOptionPane.showMessageDialog(this,"Error getting URL","Bad URL",JOptionPane.ERROR_MESSAGE);
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    public static void main (String args[])
      ReadServerFile app= new ReadServerFile();
      app.addWindowListener(new WindowAdapter(){
        public void windowClosing(WindowEvent e)
          System.exit(0);
    }

    ray,
    Sounds like a permission problem.
    Try running these.
    ColdFusionDirectory\bin\connectors\Remove_ALL_connectors.bat
    ColdFusionDirectory\bin\connectors\IIS_connector.bat
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "RayBees" <[email protected]> wrote in message
    news:ek727f$bnq$[email protected]..
    > Greetings
    >
    > I have an interesting problem. When I browse certain
    section of my website
    > I
    > am asked to enter my username and password. When clicked
    "cancel" twice
    > the
    > person is let throught to the page. This seems to be
    related to the cfform
    > tage. If I remove the tag, I am no longer asked for the
    username and
    > password.
    > This happens in IE 6 and 7, Netscape 7.1 but not in
    Firefox 1.5 or Mozilla
    > 1.5.
    >
    > But here is where it gets really interesting, If I log
    onto the web
    > server,
    > every page asks for the username and password. Any
    thoughts?
    >
    > Thanks
    > Ray
    >
    > The Specs
    > CFMX 7.02
    > Windows 2003
    > IIS 6
    >

  • Ical in outlook needs a username and password

    Hello,
    I am using a shared calendar in icloud and want to add this to outlook.  I have sent the invite to my outlook account and it has an address like webcal://p04-calendarws.icloud.com/ca/subscribe/1..
    When I click on the link it asks me if I would like to "add this internet calendar to outlook..".  If I click yes, it firstly asks me for a user name and password.  I have tried my iCloud credentials but these did not work.  After this has failed, outlook then says:"can not verify or add this calendar to outlook".
    Can anybody help and let me know what I need to do (not okay to add the icloud add-in to outlook as I am using a work computer and running XP and Office 2007).
    I would also like to sync the contacts as well.  Is this possible too?
    Many thanks,
    Nick.

    Printers do not work with networks that require a username and password to communicate on the network.  Sorry.
    The only way you will be able to use the printer wirelessly is through an ad-hoc connection.  This means the computer will not an Internet connection while it is connected to the printer's ad-hoc network unless the computer has two network connections available (2 wireless or 1 wireless and 1 wired).
    The top of page 138 of the manual details how to connect to the printer's ad-hoc network.
    Let me know what happens.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • P12 Certificate and Developer/Distribution Viewer Issue

    Two Problems:
    Problem 1:
    In Viewer Builder when I go to test my app in Developer Viewer my P12 Certificate works but in Distribution Viewer it gives me the error "not finding expected label 'iPhone Distribution' in this certificate"
    I understand this relates to my Adobe ID used to create my folios and in all of the builders however Viewer Builder will not let me use that ID when setting up Apps and the Administrative button in Dashboard won't let me add that ID as authorized because it already exists.
    Problem 2:
    When I do my Developer Viewer test and it pushes out to my iPad only my cover is showing up. I know I'm missing something and I've backtracked twenty times and can't figure it out.

    Hi bob,
    thanks for the info. It is absolutely complicated for me as it sounds more like programing to me... I was just wondering if someone really wants his application on air, does he have to pass all these steps just for a certificate? is there any other simpler way at all?!
    After all these hard work on my project, I really feel frustrated! I was reading this document today and frankly I haven't understood even one part of it!!
    I would really appreciate if anyone tells me what is going on?!

  • Need remote lock and password reset

    This question is in regards to this thread:
    https://social.technet.microsoft.com/Forums/windows/en-US/499f83d0-36f8-4f29-a4ce-e32f76632c90/intunesccm-mobile-application-management?forum=microsoftintuneprod
    -We currently have ConfigMgr 2012 R2 and want to start using Intune to support company owned iOS devices.
    -We must have the ability to perform remote lock and password reset on our iOS devices.
    -According to this link  https://technet.microsoft.com/en-us/library/dn600286.aspx this is not possible with ConfigMgr integration.  So I assume this means I
    should NOT integrate Intune with our ConfigMgr right now, correct?  And according to the response referenced above, Microsoft plans on erasing this disparity in the future, so I guess I should just wait until then and use Intune standalone until
    then? correct? But at some point it should be safe to do so, correct?
    While I am not in this position, it appears that when you are setting up Intune with ConfigMgr you get to a point of no return where you "Set the Mobile Device Management Authority" and the prompt says this is permanent.  For those that
    have integrated ConfigMgr, does that mean they are stuck and have no option to change to using Intune only to get these features?
    I setup ADFS/WAProxy for SSO for Intune.  I can still use that without ConfigMgr integration right?
    On a different note, is the on-premises connector for Exchange a requirement for Intune?  I have seen several tutorial for installing Intune that do not mention this step.
    https://technet.microsoft.com/en-us/library/eb9618d2-dc90-48be-b921-8044b7e693ac#bkmk_EX_OP

    Hi,
    I guess the first question is really up to your company requirements and how long you can wait. as there are now communicated time of release of that feature it is hard to say if it is worth it.
    Exchange connector in SCCM 2012, no, Exchnage on premise connector for Conditional Access in Intune, if you want to use that feature yes you need it but you can use Intune without it.
    Yes, you can use ADFS/WAP for Intune standalone as well.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Photosmart 209a-m... I need user name and password..​..or how to reset them....

    trying to get to the settings,networking, bluetooth...I dont remember ever changing them
    never had a need....

    That didn't have the desired effect. While it remembers the last account username I entered, I have to enter the password. And the when I want to switch to the second account, I have to enter both the username and password.

  • HT1414 i have restore my iphone but .. it say i need icloud id and password but i have no clue .. whos it under . coz i got it off a mate who got it off his friend

    i brought iphone 4s of one of my boyfriends mates and . his mate got it of some guy . but when we got it i didnt relise u need  to enter icloud id and password . i have restore it .. but i cant get through it can anyone help me .

    There is no possible way to bypass the activation lock.  The Apple ID and password are required.

  • Firefox wont start "XPCOM" message pops up, need my user and passwords!!??

    My window 7 wasn't starting up properly so I did a system restore and now firefox wont start a message pops up stating "XPCOM" and I googled it and everything is telling to reinstall Firefox. I don't wont to reinstall it just yet because I need my passwords and username back. I cant find a solution on the forums either, or if there is I haven't found it or I simply didn't understood the solution itself. Please get back to me asap
    thank you!

    This usually happens because of a failed Firefox update that left you with a mixture of old and updated files in the Firefox program folder.
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    *Download the full Firefox installer and save the file to the desktop<br>https://www.mozilla.org/en-US/firefox/all/
    If possible uninstall your current Firefox version to cleanup the Windows registry and settings in security software.
    *Do NOT remove "personal data" when you uninstall your current Firefox version, because this will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Need User Name and Password for External Firewire new hard drive

    In the past, I've worked with two 250 GB PATA drives in my G4, one inside and one in an external Firewire enclosure. I used Carbon Copy Cloner to copy and maintain all system and user files from the internal drive to the external drive. The external drive would boot just fine. These two drives were both partitioned with 74.5 and 158.4 GB partitions with the system files on the smaller.
    The internal drive died so I bought a new 500GB drive and installed it in the external enclosure and moved the former external drive inside the G4.
    I again used CCC to copy the system and user files to the new 500GB drive.However, I only gave it one 465.8GB partition. I cannot make the external drive complete the boot process. It stops and demands a user name and a password. I've not been able to supply ones which work.
    I have remembered and entered the user name and password which were installed when I partitioned the 250 GB drives years ago. The window thinks a few seconds and then shakes back and forth and then clears the data entry boxes so that I can try again.
    I do have an Install DVD for Tiger 10.4 (bought from Apple) and have been able to use that to go back and change the root or administrator password and the User password on the computer. That has not solved my problem.
    I have read about 25 pages of this forum and not seen any posts that referred to password problems with only the external hard drive. But I've seen some very knowledgeable answers to other people's posts.
    Please help.
    Gil

    Generally, when Mac OS X is asking you for a username and password, it is when you are doing something that requires an Administrator password, such as repairing a hard drive's Directory or making major changes to quasi-System things.
    So Carbon Copy Cloner and Disk Utility are likely asking for an Administrator user_id and password. It will not take a simple carriage return as an answer -- the operation will not complete without that Admin authorization.
    If you are among the \[estimated five or six] people who actually read the manual and followed the advice to use a non-admin password for your day-to-day computer work, you may not even remember the Admin username and password.
    If you have an Installer CD, you can boot to the Installer CD and choose Reset Password off the Installer menu (10.3 and earlier) or the Utilities menu (10.4 and later). There is also an Installer-compatible version of Disk Utility there, and while booted from the CD is an ideal Time to Repair your main Hard Drive, while it is not being used for booting the System.

  • OS X says  D-Link DSM g-600 network drive needs a username and password.

    Can connect my macbook to my wireless network, surf the net and detect network printer and shared files on my XP Home Desktop. The LAN portion consistists of a network printer, Linksys router, XPHome desktop and 500 GB external storage device. The storage device is a D-Link dsm g-600. The files therein were put there by the desktop and a now-defunct XP Home laptop over the course of 2 years. The laptop never had any trouble detecting, connecting to and reading files on the DSM-G600.
    The Macbook detects it under "Finder", but fails to connect. Trying to connect elicits and demand for username and password. Connecting to the DSM from the XP computers never required a password and conecting to the device as an admin just requires the username "admin" and no password. D-Link says its an OSX problem and Apple says its a D-Link firmware problem. Before buying a ticket to India to find the phone techs that told me this, I'm wondering if anyone else had any thoughts.

    Basics - Server 2008 R2 - SP1, WDS,  MDT 2013
    Well all, I've done this at least 20 times today and the deployment share info is still wrong...
    Someone else built and messed with this thing so i'm trying to fix it.  We have 2 MDT servers and 1 WDS that is on the Production MDT.  I've turned the test MDT off.
    It was working fine, until I updated the deployment share ... after adding some drivers for the surface pro 3 for the pxe boot
    Very Simple bootstrap.ini
    [Settings]
    Priority=Default
    [Default]
    DeployRoot=\\MMPDEPLOY02\DeploymentShare$
    UserID=xxx
    UserDomain=xxx
    UserPassword=xxx
    KeyboardLocale=en-US
    SkipBDDWelcome=YES
    It continues to show up on the client as ||mdt901w8|deploymentshare$  (test server) (pipes for \ since it makes it a link and i'm new)
    I've deleted all the .wim and associated files from all locations from the deployment share\boot folder and from the wds remote install\boot\x64\images folder where they are instead of the remote install\boot\images folder that everyone refers to.
    I really can't figure this one out... I know it's something simple I'm over looking but I can't see it..
    Any ideas..

  • When i try to log in to places like facebook and other places that need a login and password it always goes back to a clean screen and requires you to login again..i have a mac pro 2014

    Help please...I can't login to anything....facebook....ipiccy....I can get into websites but if it asks me for my login and password just boots me out.

    login implies encryption, and encryption requires the date&time be within five minutes of perfect. ¿Is the date & Time set correctly?

Maybe you are looking for

  • Can I give a software gift by using a firend's computer and paying with my AppleID?

    I have a simple problem.  I want to log in to the App Store on my friend's computer with my AppleID, then purchase and download some software as a gift.  I don't want to download it for free, as it's not my computer.  How do I accomlish this?

  • Copying a page from one picture book into another

    Does anyone know how to copy a page from one picture book into another. I have made 2 books and would like to make a third consisting of pages from the first 2 but seem unable to do it without starting again, or at least starting from a duplicate of

  • Keyboard shortcut no longer working in webapp after FF19 was installed

    I work with a company webapp that uses the keyboard shortcut Shift+F9 to populate text boxes. Prior to Firefox version 19 upgrade on my Windows 7 PC, the shortcut worked just fine. After the upgrade, the shortcut stopped working. I have uninstalled i

  • Create Adobe Form using Design Time for Processes and Forms

    Hi all, I am trying to create a form that have 3 fields: 1. pernr 2. ename 3. effective_date I done all the necessary setup of BADI ,class, interface and form. I need the step to step guide where you create the adobe form using the Design Time for Pr

  • REUSE_ALV_GRID_DISPLAY forcing new page when printing

    Hi, how can  force a new page n several condition when i'm printing a list generated by FM REUSE_ALV_GRID_DISPLAY? I need a new page by group change with several columns. IS_PRINT seems not to be the right place where to look. Thx in advance.   Raine