How to install a real certificate over a mobile ??

I would want to know how can I install a certificate over a mobile or if I only can install it over an application. Another question is if I could add a certificate to my mobile secure certificate (say to the mobile that a own-made server certificate is secure).
Thank you

http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB13492&sliceId=SAL_Public&dialogID=77551987&stateId=0%200%2077553914

Similar Messages

  • How to install mdk in nwds for creating mobile applications

    Hi experts,
    how to install mdk in nwds for creating mobile applications?
    reward points for appropriate answer.
    Thank you,
    G.V.K.Prasd

    HI,
    MDK is already integrated in NWDS. Separate MDK download is only necessary in case you want to use Eclipse as single DEV environmant without the full blown NWDS orwant to develop for earlier versions like MI7.0.
    So very important: separate MDK does only support MI7.0 and earlier versions. If this is your intention, simply download MDK plugin, extract the folder, have a look into the download subfolder and you see the ECLIPSEPLUGIN.ZIP file in there. Unzip this as well and then put the related stuff into the FEATURES and the PLUGINS folder of Eclipse. After restarting Eclipse open the settings and add the buttons to the view and configure the correct settings for your system. This is the normal stuff like for every Eclipse plugin. Not 100% sure if this is not included in NWDS as well already.
    If you are not sure about PLUGINS and FEATURES stuff and the configuration - the MDK itself has a great documentation that shows the steps you need to follow.
    Regards,
    Oliver

  • How to install and use certificates on client?

    Hello everyone, and first of all sorry for my poor, italian-accented english.
    I have some questions about SSL and certificates. I'm developing a java desktop application, which should connect to a https server, authenticate with a previously downloaded certificate and then gain access. Some specs: I work on a Windows Xp Pro machine with Netbeans 6.1 and jdk 1.6.0_07.
    Now, I'm using HttpUnit libraries to connect the first time, login with basic authentication and download the certificate, but after i get it I'm not sure how to install the certificate (using java, it has to be an automated procedure) on the client machine and then how to use it to connect to the server. I've tried to use the code I've found here and after using it I can see the certificate inside Control Panel > Java > Securiy > Certificates > System, but I'm not sure I'm installing it in the correct way and/or in the correct path.
    Everytime I try to connect to the server I get back a HTTP 403 forbidden exception. Does someone know any tutorials/howtos/example codes to suggest to me? Or could tell me what's the right installation procedure using java? Any help would be very appreciated.
    Thanks in advance
    K.

    After banging my head on my keyboard for a lot of hours, I've got it!
    I was trying to install a *.pfx certificate, and that was bad. I tried to convert it in *.p12 or *.cer but that workaround didn't work. Finally I've found a small code to use a *.pfx certificate without installing it and... it works! No more 403 errors now, I can get that damn page. :)
    Here is the class I've used (I've found it somewhere googling around but I've lost the link, sorry. Anyway, I've modified it a little)
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
    import java.net.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    public class ConnectWithPfx {
       static final int HTTPS_PORT = 443;
       public static void main(String argv[]) throws Exception {
          // Get a Socket factory
          SocketFactory factory = SSLSocketFactory.getDefault();
          SSLSocketFactory socketFactory = null;
          try {
                KeyStore keyStoreKeys;
                KeyManagerFactory keyMgrFactory;
                SSLContext sslContext;
                keyStoreKeys = KeyStore.getInstance("PKCS12");               
                keyStoreKeys.load(new FileInputStream("mycertificate.pfx"),"certpassword".toCharArray());
                keyMgrFactory = KeyManagerFactory.getInstance("SunX509");
                keyMgrFactory.init(keyStoreKeys, "certpassword".toCharArray());
                sslContext = SSLContext.getInstance("SSL");
                sslContext.init(keyMgrFactory.getKeyManagers(), null, null);
                socketFactory = sslContext.getSocketFactory();
                Socket socket2 = factory.createSocket("www.my.host", HTTPS_PORT);
          } catch (Exception e) {
                e.printStackTrace();
            URL url = new URL("https://www.my.host/mypage");      
            // Open a HTTP connection to the URL assigning the SocketFactory we created before
            HttpsURLConnection conn = null;
            conn.setDefaultSSLSocketFactory(socketFactory);
            conn = (HttpsURLConnection) url.openConnection();              
            // Allow Inputs
            conn.setDoInput(true);
            // Allow Outputs
            conn.setDoOutput(true);
            // Don't use a cached copy.
            conn.setUseCaches(false);
            conn.setRequestProperty("Connection", "Keep-Alive");
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            String response = "";
            while ((line = in.readLine()) != null) {
                response += line+"\n";
            System.out.println(response);
    }Hope this could be useful for someone else. Thanks to everyone who read or replied to my thread. :)

  • How to Install 9i real application clusters on a PC!

    How to install and deploy Oracle Real Application Clusters on a single Linux
    server with a minimal configuration (less than $1000 worth of harware):
    First of all to install Oracle cluster database you DON'T HAVE to have a cluster, but a
    single PC may do as well (of course thi kind of installation will not be of
    much use for a production DB). A minimal server that I HAVE TESTED is: Celeron 750 MhZ,
    512 Mb of RAM, 2 IDE HD, Linux Suse 7.2
    This document contains the steps needed to deploy a working Oracle 9i Database with a
    minimal comment. For a complete discussion refer to Oracle documentation, namely:
    Oracle 9i administrator's reference part number A90347-02
    Oracle 9i Linux release notes part number A90356-01
    Oracle 9i Real Application Clusters Administration part numebr A89869-01
    1) set up the partitions to user for Oracle software and the ones to use as raw devices
    for the cluster DB. Soppose you want to you use an HD mounted as the 3rd IDE device
    (/dev/hdc) for the cluster DB. Then you have to partition it with fdisk with a large
    extended partition (say hdc1). Create a large number of logical partitions inside hdc1
    (say hdc5 till hdc20) of about 300 Mb in size (all of the same size for simplicity).
    2) Real application clusters wants to store the DB strutures into raw devices or a
    cluster filesystem. Create the raw devices using the following command (as superuser):
    raw /dev/raw1 /dev/hdc5
    raw /dev/raw2 /dev/hdc6 ... etc till /dev/hdc20
    you will need to repeat these steps after every boot
    3) Set up the Oracle user (already done with the Suse distribution), environment variables
    and mount point.
    Install Oracle software enterprise edition
    4) Complete the installation with a custom install of the real application cluster option.
    This will add a directory called oracm under your oracle home, which contains the
    cluster manager software
    5) edit $ORACLE_HOME/oracm/admin/nmcfg.ora, it contains 3 lines for the set-up of the
    cluster manager sofware:
    DefinedNodes=localhost
    CmDiskFiles=/dev/raw2
    CmHostName=localhost
    6) edit /var/opt/oracle/srvConfig.loc. It contains 1 line with the location of a raw device
    used to sync the cluster nodes:
    srvconfig_loc=/dev/raw1
    7) start the cluster manager software (as superuser):
    $ORACLE_HOME/oracm/bin/ocmstart.sh
    8) as the oracle user start the global cache service:
    gsd
    9) you can now create a cluster db. to use the configuration assistant you need to set
    an extra environment variable:
    export THREADS_FLAG=native
    10) start the configuration assistant: dbca
    expect some errors in the script the dbca generates, best is to review them before
    execution
    11) after the db creation you'll be able to start two instances on the same DB,
    which means you will have a cluster DB!
    12) the environment variable ORACLE_SID will determine the instance to which you can
    connect by means of a special syntax: SID.parameter=value
    this is used for example for paramters like instance_number, thread, etc
    also the parameter cluster_database must be set to true
    All these problems are normaly handled by the dbca.
    Have fun,
    Luca Canali
    OCP-DBA

    RedHat 7.1 with the some configuration I run a production 9.0.1
    database: Compaq Proliant Hardware with a RA4100 storage.
    The script created from the dbca seems fine, but the dbca give
    me the
    some error I get from:
    srvconfig -init
    [...]stop all daemons and oracle programs on both machines, then
    start only $ORACLE_HOME/oracm/bin/ocmstart.sh,
    then run the line
    srvconfig -init
    you can check it by running
    srvconfig -version
    it should output something like "9.0.0.0.0"
    before running dbca, make sure ocmstart.sh and gsd are
    running on both machines ("lsnodes -v" should putput sbshadow1
    and dbshadow2).
    BTW - I cant run clusca... Can somenome give a sample nmcfg.ora,
    just to check my parameters? for dbshadow1:
    DefinedNodes=dbshadow1 dbshadow2
    CmDiskFiles=/dev/raw/raw2
    CmHostName=dbshadow1
    for dbshadow2:
    DefinedNodes=dbshadow1 dbshadow2
    CmDiskFiles=/dev/raw/raw2
    CmHostName=dbshadow2
    Saludos
    --Marcos.
    Ps: can you contact me by e-mail? i have some questions regarding
    your HW

  • How to install Oracle Real Application Clusters on Aix

    I am running a 64 bit kernel AIX 5.2 on IBM RISC Based p-series sever(7028-6C4).Clustered has already been configured. How can i check the clustered has configured successfully (software & hardware) for oracle installation?
    What is the procedure to install oracle real application custer on AIX ?
    Can Any body Help me......
    Arif

    Here you have books related to that theme:
    http://otn.oracle.com/pls/db92/db92.docindex?remark=homepage
    Joel Pérez

  • How to install & use x509 certificate in XI 3.0

    Hi gurus,
    Somebody knows as install a x509 certificate in XI 3.0? Is it in Visual Admin?
    Is There some guide?
    When this installed, how we test it? What configuration we must do in Communication Channels and the Receiver Agreement/Sender Agreement? What tool we can use to test the scenario?
    Kind regards

    Hi,
    This is used when you are using FTPS in your communicaiton channel. The Certificates are installed in the visual administration. I have not seen any guide on how to install this. But you have a detailed step  by step procedure of how to install in this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/53/b221e3b466b346860715a550ca987d/content.htm
    Apart from this you may also need to install SAP Java Cryptographic Toolkit. You get some help on this at this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/cb71b8046e6e469bf3dd283104e65b/content.htm
    Once when you do this your certificates can be seen from the communicaiton channel. In your communication channel in the FTP Conneciton parameters you have to select Conneciton security as FTPS and check the check box X.509 certificates. In keystore if you press F4 you will see the keystore which were installed earlier. Select the keystore and the X.509 Certificate.
    Once you are done with this run your scenario. If you have any errors you will see in communicaiton channel monitoring.
    ---Satish

  • How to install IPSec Client Certificate for Apple products (iPad,iPhoe and Mac)

    We need  Ipsec vpn client authentication with certificate (instead of pre-shared key). We tested the same with Windows client and its works fine. However when we used the same certificates with Apple products (iPad, iPhoe and Mac) it doesnt work.
    We have two types of certificates installed on the client from the CA server.
    One is the root certificate with the extenstion .cer
    and the other one is client certificate with the extension of .pfx (personal informaiton exchange)
    We can not find a proper document to install certificates and client configuration for iPad,iPhoe and Mac. We need to know what type of certificates needed, what are the certificate formats and how to install etc.
    Appreciate if someone has implemented this and share any documents.
    thanks

    This will be helpful for you :-
    http://images.apple.com/iphone/business/docs/iOS_Certificates_Mar12.pdf
    Manish

  • How to install enterprise trust certificate in iphone

    I am trying to use the outlook mail account. But i need to install the enterprise trust certificate before using it. Where i can find the link and how to install it?

    Apple have restrictions against adobe on the iphone, ipod touch and ipad. There will not be any flash in the near future.

  • ¿How can I install an authority certificate in Firefox Mobile?

    Hi all,
    I am trying to install a CA certificate to be used in Firefox Mobile. I tried to install it downloading from a website in "cer", "crt" and "pem" formats, but none of this works...
    ¿Anyone knows how to do it? It is simple and easy in Firefox Desktop but not for Mobile...
    Thank you in advance,

    The only other one I can find is the CACert Root Cert and this was for 19-20* also a no go. I will make a habit of looking there too.
    There was also [https://addons.mozilla.org/en-US/firefox/addon/addcertificate/ Add Certificate][only PKCS#12 certificates] that was for version 27. I wonder if there is one for version 31?
    I know that you can import a cert if a site requests it. What kind of certificate are you looking to?

  • How to install a browser certificate OTA

    Does anybody know if it's possible to install a browser certificate (for authentication) OTA?
    I know that if the certificate is installed in the internet explorer, we can use the desktop manager to synchronize certificates with the device. But unfortunately most of our users do not have the desktop manager installed.
    First I was thinking about policies to push the certificate onto the device, but our BB admin told me that you can
    not define policies per user (one certificate per user).
    I would be nice if it were possible to send the user a http link (email), so that he can fire up the browser and download the certificate. Just like in ie or firefox.
    Any ideas?
    BR
    Predrag
    Solved!
    Go to Solution.

    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB13492&sliceId=SAL_Public&dialogID=77551987&stateId=0%200%2077553914

  • How To install Java Application[J2SE] into Windows Mobile

    Hi All,
    I have developed an application for Mobile devices[ Windows Mobile] exclusively using Java[AWT].When I try to install , the application in mobile, i got the following error.
    *"MIDlet cannot be installed because critical information is missing from the MIDlet file (.jar). - 13 Please contact the MIDlet provider for more information."*
    I didnt use any midlet classes in my application. So my question is, what the above error denotes? and How to install
    java[AWT] application into mobile?. What are all the requirements to install the application?.
    Thanks in advance.

    Hi David, thank you very much, your information was very useful, finally i got the work done.
    The problem was with the JVM which is im used in my Windows Mobile. And im installed CrE-ME in my mobile
    to execute java application.
    The following link has the details of how to install the JVM and execute the aplication (.jar ).
    http://javatolearn.blogspot.com/search/label/Java%20in%20Windows%20CE%20with%20CrE-ME
    Thanks and Regards
    Baskaran

  • HOW TO INSTALL ROOT (Authority) CERTIFICATES ON S4...

    Recently i bought a 6500 Classic and stupidly deleted my Authority Certificates.
    After trwaling the net for info on how to re-install certificates i couldnt find an answer apart from NO YOU CANT DO THIS.
    Well to that i say NUTS!!! because you can and i will show you how by simply following these steps.
    1. Create a New Folder on your desktop and call it whatever you like.
    2. Open notepad on your computer.
    3. Copy the text below into the Notpad file. (I got this from some website as they were using it for smething else but it does work so thanks to them or thanks to you if this is yours)
     <?xml version="1.0"?>
    <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Install root CA</title>
    </head>
    <body>
    <p>
    <a href="der1.cer">Download a CA Cert1</a>
    <a href="der2.cer">Download a CA Cert2</a>
    <a href="der3.cer">Download a CA Cert3</a>
    <a href="der4.cer">Download a CA Cert4</a>
    <a href="der5.cer">Download a CA Cert5</a>
    <a href="der6.cer">Download a CA Cert6</a>
    <a href="der7.cer">Download a CA Cert7</a>
    <a href="der8.cer">Download a CA Cert8</a>
    <a href="der9.cer">Download a CA Cert9</a>
    <a href="der10.cer">Download a CA Cert10</a>
    <a href="der11.cer">Download a CA Cert11</a>
    </p>
    </body>
    </html>
    4. Save the Notpad file as type ALL FILES but when naming it just call it cert.html and save it to the folder you created on your desktop earlier.
    5. Now downlaod the Root Certificates you need to the same folder on your Desktop.
    6. When saving the first Certificate to the folder call it der1 ((make sure not to take out the file extension eg .cer)) then the second der2, third der3 and so on and so on till you get to der11. (Dont worry this will not rename the certificate when it installs on your phone.)
     Example of what the files in your Desktop folder should be called der1.cer, der2.cer etc etc.
    7. Now transfer the whole folder from your Desktop to your Mobile phone. (I did this by using Nokia PC Suite.)
     8. When the folder with the certificates and hmtl we made have been transfered to you phone navigate using your phone to that folder.
    9. Go into the folder and open the cert.html file. (Your browser will now open a page with 11 download links available)10. Now all you have to do is click on each link and accept each certificate remembering to save and they will install on your phone. (On my 6500 Classic i can check this by Navigating through my phone to Menu>Settings>Security>Authority Certificates)
     Notes:- Some errors you may receive when trying to download the certificates through your phone browser may be Already Exists, Expired Certificate and the most annoying is Corrupted Certificate.
    Already Exists - Shouldt allow you to save (DO NOT SAVE IF IT ALLOWS YOU)
    Expired Certificate - (DO NOT SAVE)
    Corrupted Certificate - Install the certificate on your computer first, then go to Tools>Internet Options>Content>Certificates.
    (save the certificate to other people tab) Browse for the certificate you installed then export it in DER format to the Desktop Folder you created then start process over again to get it onto your phone.
    Remember to delete any certificates as you go that you have already installed so you dont get mixed up.
    Any issues reply and i will do what i can to help and if anyone has Hutchinson 3G Root Certificates please let me know.
    Thanks.
    Message Edited by andyhardie on 15-Jul-2009 04:05 PM

    I have nokia 6300 s40v3 and when I tried to open cert.html it showed format unknown.
    What should I do. Can you tell me the format of bookmark so that can rename it to cer.(format)
    sir please give some guidense its very urgent
    reply at *******
    MODERATOR'S NOTE:
    Personal details removed by a moderator. We kindly ask you not to share your personal e-mail address or any other personal information publicly on this forum. This is for your personal safety and privacy.
    Message edited by Aikin19

  • How to install Comodo email certificate?

    Hi! I just obtained a brand new free email certificate from Comodo, but I can't make Mail see that!
    Before Lion I used certificates, but I don't remember how I got Mail to see them.
    I tried double clicking on the file, and it installs it correctly under "login / All items", but Mail doesn't seem to be affected. I read on the web that the certificate should be placed under "login / My Certificates", but copy/paste doesn't work!
    Is anyone using Comodo or similar certificates with Lion 10.7.2 and Mail.app ?
    Cheers!

    I can't seem to get this to work either.
    I downloaded an email certificate from Comodo.  It saved as a .p7s file, which I double-clicked to install into keychain. 
    In keychain, I have an apple certificate with a private key for my apple ID, which is the same gmail address as the address I used for the comodo certificate.
    However, there appear to be two separate certificates from comodo: one named for my gmail address, and one named "COMODO Client Authentication and Secure Email CA".  These show up under "Certificates" but not under "My Certificates"...
    When I launch Mail and check for TLS certificates in account preferences, I only see the apple ID one listed, not any of the ones from comodo...
    Any idea what's going on here?
    Thanks,
    Trevor

  • How to install a SSL certificate on Azure?

    Hi,
    I am trying to install an SSL cert on my Azure instance. I followed this tutorial: http://www.windowsazure.com/en-us/documentation/articles/cloud-services-configure-ssl-certificate/
    However, when I deploy the package on to the staging instance it does not start up. And we can't retrieve detailed bug, and can't connect remotely to that instance.
    I am not sure what else can be done? Please help?

    hi,
    Did you upload cert into staging environment? How did you set the Https endpoint on your service definition file ?Did you try to change http to https to access cloud service? I suggest you could try to use https to visit your cloudservice firstly. If it
    doesn't work, please check your endpoints setting in your project.
    >>And we can't retrieve detailed bug, and can't connect remotely to that instance.
    Did you enable the Remote desktop? You could enable the remote desktop on your deployment (http://msdn.microsoft.com/en-us/library/windowsazure/gg443832.aspx ). Any latest info,
    please let me know.
    Hope this helps.
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to install Windows 7 Professional over Home Premium?

    I have an HP notebook which came pre-installed with Windows 7 Home premium 32-bit. I have received a copy of Windows 7 Professional 32-bit from MSDNAA. How do I install it such that none of my data is lost? Also I have a single usable partition of 440
    GB and can't make any more partitions as the HP guys delivered the PC with 4 partitions which is the maximum it can have.

    On Sat, 29 May 2010 06:45:26 +0000, absk wrote:
    > I have an HP notebook which came pre-installed with Windows 7 Home premium 32-bit. I have received a copy of Windows 7 Professional 32-bit from MSDNAA. How do I install it such that none of my data is lost? Also I have a single usable partition of 440
    GB and can't make any more partitions as the HP guys delivered the PC with 4 partitions which is the maximum it can have.
    Although it is technically correct that four is the maximum number of
    partitions you can have, it really doesn't matter.
    The reason it doesn't matter is that almost all of use the word
    "partition" very loosely. Besides real partitions, we call logical
    drives within extended partitions "partitions." Since you can have as
    many of those logical drives as you want within one partition, you can
    effectively have as many "partitions" as you want. And using those
    logical drives within Windows is exactly like using a partition; you
    can't even tell them apart.
    Ken Blake, Microsoft MVP (Windows Desktop Experience) since 2003
    Ken Blake

Maybe you are looking for

  • Trying to install ilife 04

    everytime I try it keeps saying cannot install because iphoto, idvd, imovie, garage band, or itunes is running. Please quit applications...but the funny thing, THERE'S NOTHING RUNNING!!!!! HELP ME BEFORE I THROW THIS MACHINE OUT THE WINDOW!!!! Thanks

  • My stepson got a new iPhone for Christmas, but can't sync

    his uploaded music from itunes because he has tiger on his older macbook.  Aside from upgrading from tiger to snow leopard to lion, which his hardware won't support, what can he do?  This isn't music he purchased from itunes but rather music uploaded

  • Sapccm4x agent terminates

    Hi ,   I am facing a strange problem.The sapccm4x agent for our quality box terminates after 5 minutes after starting with following error. INFO: entering  sReInitSapccmsrLight ERROR: Reinitialization called more than 10 times in the last 5 minutes E

  • Elements Organizer Errror

    Within Photoshop Elements 9, having the latest updates - I attempted to open a folder. Upon selecting the folder, I am met with the attached error message and the application crashed. I have rebooted the computer and get the same error and crash. Loo

  • Can't Double Click Jar in Fedora 2 Core

    Hi, Have a Jar that works in XP and was created with Ecliplse 3. I can double click the Jar File and it works great. I even compiled with Jet Excelsor to and EXE and it works great. Installed Java 1.4.2 SDK with Net Beans onto Fedora 2 Core OS, final