How to get code signing keys without filling the field "company"?

When you use RIM "Sensitive APIs" I am aware that I should get the signature keys and was directed to: https://www.blackberry.com/SignedKeys/

When you enter information for my keys the field "Company" is required.

This is why I'm a bit confused (questions below):

* How the company is associated with these keys?
* What happens if I change companies after obtaining the keys?
* Is that my current employer, so I work? (ie: McDonald's, Burger King)
* What happens if I am a student?
* Can I create a company just to get the keys?
* What happens if I put unemployment in the area of the company?
* What happens if I set the self-employed in the field of the company?

I have a job with a company (which is a good thing these days), but at home and as a software engineer and passionate about mobile I just began to develop blackberry applications and I wanted access to these very important APIs.

Thank you.

Carl

Put independent Consultant or put your name. RIM expects you to work for a sort of cabinet when filling out the information, but if you're a solo developer so it makes sense to be put your name or a counselor, since you are the company of one of these two.

Tags: BlackBerry Developers

Similar Questions

  • How to get a new column without using the update (Please check with the requirment)

    write a query to display the current sal and the new sal for all employees

    condition
    If job = 'MANAGER' and deptno in (10.20) and then newsal has increased by 15% to the current salary.
    If work! = 'MANAGER' and deptno in (10.20) and then newsal has increased by 25% to the current salary.

    Select ename, sal as old_sal,
    -CASE when work = 'MANAGER' and deptno in (10,20) then (sal + (sal * 15) / 100)
    When job! = 'MANAGER' and deptno in (10.20) and then (sal + (sal * 25) / 100)
    Another Sal
    END as new_sal
    EMP;

  • Code signing keys can be used on more than a developer (different PC)?

    Hello

    I applied for a set of code a long time ago signing keys.

    I installed them on the JDE on my computer... and I was able to migrate them to my new computer always on the JDE, then on the eJDE thereafter.  I had a few problems of migration of these keys, but everything is working well now, I am able to sign my application.

    Now, I have a colleague who wants to develop an application using Widgets and there need code signing keys as well.  Can I just send my key itself?  Or he must apply to his own set of keys?

    In other words, the code signing keys used to identify a company or developer?

    Thank you!

    Each developer must have their own set of BlackBerry Code signing keys.  Sharing the key is against the license agreement.

  • Must be signed with the RIM Runtime Code Signing Key (RRT) - example of code bar

    Hi, when I try to start the bardcode example in my device (9780 Smartphone), I get

    "Error starting BarCodeApp: Module 'BarCodeApp' must be signed with the RIM Code Signing Key (RRT) DURATION.

    The only class I have in my project is:

    import java.util.Hashtable;
    import java.util.Vector;
    
    import net.rim.blackberry.api.browser.Browser;
    import net.rim.blackberry.api.browser.BrowserSession;
    import net.rim.device.api.barcodelib.BarcodeBitmap;
    import net.rim.device.api.barcodelib.BarcodeDecoder;
    import net.rim.device.api.barcodelib.BarcodeDecoderListener;
    import net.rim.device.api.barcodelib.BarcodeScanner;
    import net.rim.device.api.command.Command;
    import net.rim.device.api.command.CommandHandler;
    import net.rim.device.api.command.ReadOnlyCommandMetadata;
    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.system.KeyListener;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Keypad;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.EditField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.FullScreen;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.decor.BorderFactory;
    import net.rim.device.api.ui.toolbar.ToolbarButtonField;
    import net.rim.device.api.ui.toolbar.ToolbarManager;
    import net.rim.device.api.util.StringProvider;
    
    import com.google.zxing.BarcodeFormat;
    import com.google.zxing.DecodeHintType;
    import com.google.zxing.common.ByteMatrix;
    import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
    import com.google.zxing.qrcode.encoder.Encoder;
    import com.google.zxing.qrcode.encoder.QRCode;
    
    /***
     * Barcode API Sample
     * 

    * This application demonstrates the most common use of the Barcode API: 1) * Creating and displaying a QR code, 2) Scanning a QR code and opening the * browser pointing to that URL. It could be easily modified to scan/create * other kinds of barcodes, or do other things with the scanned/created barcode. * * @author PBernhardt * */ public class BarcodeAPISample extends UiApplication { //This controls how big barcode we will display is to be private static final int BARCODE_WIDTH = 300; // This is the app itself private static BarcodeAPISample _app; // Errors will be logged here private LabelField _logField; // The main screen which holds the toolbar and displayed barcode private MainScreen _mainScreen; // The barcode is displayed here private BitmapField _barcodeField; // The text stored here is converted into a barcode by the user private EditField _barcodeTextField; // This controls the scanning of barcodes private BarcodeScanner _scanner; // This screen is where the viewfinderf or the barcode scanner is displayed private FullScreen _barcodeScreen; public BarcodeAPISample() { // New screen _mainScreen = new MainScreen(); // Create the log field so it can be used in this constructor _logField = new LabelField("Log: "); // Create the place-holder for the barcode image and add it to the main // screen _barcodeField = new BitmapField(new Bitmap(BARCODE_WIDTH, BARCODE_WIDTH), Field.FIELD_HCENTER); _barcodeField.setBorder(BorderFactory.createBevelBorder(new XYEdges(2, 2, 2, 2))); _mainScreen.add(_barcodeField); // Create and add the field to store the barcode contents _barcodeTextField = new EditField("Barcode text: ", "http://devblog.blackberry.com"); _mainScreen.add(_barcodeTextField); // Add "display barcode" and "scan barcode" toolbar buttons /** * This is a quick example of the new (in 6.0) * net.rim.device.api.command package and the * net.rim.device.api.ui.toolbar package. All it does is invoke the * displayBarcode() or scanBarcode() method when you click the * corresponding button. For more details on this package, see the * JavaDocs or elsewhere in the Developer Resource Center */ ToolbarManager toolbar = new ToolbarManager(); ToolbarButtonField displayBarcodeToolbarButtonField = new ToolbarButtonField(new StringProvider("Display")); displayBarcodeToolbarButtonField.setCommand(new Command(new CommandHandler() { public void execute(ReadOnlyCommandMetadata arg0, Object arg1) { displayBarcode(); } })); toolbar.add(displayBarcodeToolbarButtonField); ToolbarButtonField scanBarcodeToolbarButtonField = new ToolbarButtonField(new StringProvider("Scan")); scanBarcodeToolbarButtonField.setCommand(new Command(new CommandHandler() { public void execute(ReadOnlyCommandMetadata arg0, Object arg1) { scanBarcode(); } })); toolbar.add(scanBarcodeToolbarButtonField); _mainScreen.setToolbar(toolbar); // Add the log field to the bottom _mainScreen.add(_logField); pushScreen(_mainScreen); } // Simply create the the app and enter the event dispatcher public static void main(String[] args) { _app = new BarcodeAPISample(); _app.enterEventDispatcher(); } /** * displayBarcode *

    * This method will take the text in the _barcodeTextField, convert it into * a QRCode and display it on the main screen. It could be easily modified * to use a different barcode format or to get the text from somewhere else. */ private void displayBarcode() { try { QRCode qrCode = new QRCode(); // This encodes the text with a low level (%7) of error correction Encoder.encode(_barcodeTextField.getText(), ErrorCorrectionLevel.L, qrCode); // From there we get the actual data matrix and convert it into a // bitmap ByteMatrix barcode = qrCode.getMatrix(); Bitmap bitmap = BarcodeBitmap.createBitmap(barcode, BARCODE_WIDTH); _barcodeField.setBitmap(bitmap); } catch (Exception e) { log("Exception: " + e); } } private void scanBarcode() { // If we haven't scanned before, we will set up our barcode scanner if (_barcodeScreen == null) { // First we create a hashtable to hold all of the hints that we can // give the API about how we want to scan a barcode to improve speed // and accuracy. Hashtable hints = new Hashtable(); // The first thing going in is a list of formats. We could look for // more than one at a time, but it's much slower. Vector formats = new Vector(); formats.addElement(BarcodeFormat.QR_CODE); hints.put(DecodeHintType.POSSIBLE_FORMATS, formats); // We will also use the "TRY_HARDER" flag to make sure we get an // accurate scan hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); // We create a new decoder using those hints BarcodeDecoder decoder = new BarcodeDecoder(hints); // Finally we can create the actual scanner with a decoder and a // listener that will handle the data stored in the barcode. We put // that in our view screen to handle the display. try { _scanner = new BarcodeScanner(decoder, new MyBarcodeDecoderListener()); _barcodeScreen = new MyBarcodeScannerViewScreen(_scanner); } catch (Exception e) { log("Could not initialize barcode scanner: " + e); return; } } // If we get here, all the barcode scanning infrastructure should be set // up, so all we have to do is start the scan and display the viewfinder try { _scanner.startScan(); _app.pushScreen(_barcodeScreen); } catch (Exception e) { log("Could not start scan: " + e); } } /*** * MyBarcodeDecoderListener *

    * This BarcodeDecoverListener implementation tries to open any data encoded * in a barcode in the browser. * * @author PBernhardt * **/ private class MyBarcodeDecoderListener implements BarcodeDecoderListener { public void barcodeDecoded(final String rawText) { // First pop the viewfinder screen off of the stack so we can see // the main app _app.invokeLater(new Runnable() { public void run() { _app.popScreen(_barcodeScreen); } }); // We will use a StringBuffer to create our message as every String // concatenation creates a new Object final StringBuffer message = new StringBuffer("Would you like to open the browser pointing to \""); message.append(rawText); message.append("\"?"); log(message.toString()); _barcodeScreen.invalidate(); // Prompt the user to open the browser pointing at the URL we // scanned _app.invokeLater(new Runnable() { public void run() { if (Dialog.ask(Dialog.D_YES_NO, message.toString()) == Dialog.YES) { // Get the default sessionBrowserSession BrowserSession browserSession = Browser.getDefaultSession(); // Launch the URL browserSession.displayPage(rawText); } } }); } } /*** * MyBarcodeScannerViewScreen *

    * This view screen is simply an extension of MainScreen that will hold our * scanner's viewfinder, and handle cleanly stopping the scan if the user * decides they want to abort via the back button. * * @author PBernhardt * */ private class MyBarcodeScannerViewScreen extends MainScreen { public MyBarcodeScannerViewScreen(BarcodeScanner scanner) { super(); try { // Get the viewfinder and add it to the screen _scanner.getVideoControl().setDisplayFullScreen(true); Field viewFinder = _scanner.getViewfinder(); this.add(viewFinder); // Create and add our key listener to the screen this.addKeyListener(new MyKeyListener()); } catch (Exception e) { log("Error creating view screen: " + e); } } /*** * MyKeyListener *

    * This KeyListener will stop the current scan cleanly when the back * button is pressed, and then pop the viewfinder off the stack. * * @author PBernhardt * */ private class MyKeyListener implements KeyListener { public boolean keyDown(int keycode, int time) { // First convert the keycode into an actual key event, taking // modifiers into account int key = Keypad.key(keycode); // From there we can compare against the escape key constant. If // we get it, we stop the scan and pop this screen off the stack if (key == Keypad.KEY_ESCAPE) { try { _scanner.stopScan(); } catch (Exception e) { log("Error stopping scan: " + e); } _app.invokeLater(new Runnable() { public void run() { _app.popScreen(_barcodeScreen); } }); return true; } // Otherwise, we'll return false so as not to consume the // keyDown event return false; } // We will only act on the keyDown event public boolean keyChar(char key, int status, int time) { return false; } public boolean keyRepeat(int keycode, int time) { return false; } public boolean keyStatus(int keycode, int time) { return false; } public boolean keyUp(int keycode, int time) { return false; } } } /*** * log *

    * Writes a message to an edit field for debug purposes. Also sends to * STDOUT. *

    * * @param msg * - The String to log */ public void log(final String msg) { invokeLater(new Runnable() { public void run() { _logField.setText(_logField.getText() + "\n" + msg); System.out.println(msg); } }); } }

    My request is properly signed and work very well in the Simulator.

    Thanks in advance.

    Solved.  http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/Support_-_Sign...

  • The process of code signing keys

    Hi all!

    I signed up recently on the forum and I also recently ordered my code signing keys.  To bring added value and we hope to answer my question, I thought that I turn this message in a topic ' what is the process of Code signing?  The best of my knowledge, I expose the steps as follows:

    1. developer fills web form and order of keys to Code signing by credit card

    2 automated response sent back by RIM to the e-mail address of the developer [filled in the form e-mail address]

    3. within 10 days, 3 emails are sent from the owner each containing a Code signing key

    I appreciate your comments provided by senior members of the forum to help complete this process.

    To get to my problem, I'm stuck on step 2 above.  I has not received a response from RIM about my purchase.  I am very sure that my credit card account has been charged because my card company called me 5 minutes after sending the form, and I checked the transaction as legitimate.  I am currently at day 7 of waiting for 10 days and was eager to follow the application process and was looking for some advice on where to start my research.  Is there a specific department within the RIM, I should post?  If so, if someone in the know could send me this email address, I'd be much obliged.

    Thanks a lot for your help.

    Kind regards

    Sheran

    Sorry to post this late reply.  The keys arrived 3 days after my message.  Thought that I would close this thread.

  • Timeout for code signing keys? What to do if you think that demand went AWOL?

    Dear BlackBerry PlayBook admins...

    How long should wait to get your code signing keys after asking them?

    After 3-4 "days" with any key in sight... should I re - present? " or y at - it a form of contact/email address I can use to inquire of the State?

    I don't want to flood the RIM with several duplicate applications, but I'm worried that I'm waiting for keys that could not happen.

    I'm also becomes slightly worried because he has only two weeks left to submit for the offer, and I would like to have a chance at some point of the review before the expiration of the offer. (e.g. submitting 13-15... and get a rejection because of something small single would be very frustrating)

    Note for later - check the Gmail spam folder before losing my mind.

    Gmail has marked the email as spam using the...

    ... the sad thing is he's been there for days... my apologies most sincere to get all worked upward for nothing.

    To future readers of this thread - CHECK YOUR SPAM FOLDER!

    Sender: [email protected]

    Subject: signing of the information on the registration of BlackBerry Code

    Body: the following attachment allow the tool BlackBerry BarSigner register with signing authority...

    Hope this helps!

  • I forgot the password of the Code signing key

    Hi, I got the signature key (csk file) by registering on blackberry, but for some reason, I forgot my password... When I try to sign my code it ask me password... I googled a lot to find a way to recover my password, but no avail... Can someone please tell me how to recover my password for the key signature or any other way that i can reset my password... Any kind of help would be appreciated... Thanks in advance...

    This is an old thread... but since it's one of the first results in a Google search, I wanted to bring an answer here.

    It is not possible to recover your password for BlackBerry Code signing keys.  However, you can choose a new if you reinstall your keys.  The first thing you need to do is to order a new set of keys (free) using the form below.

    https://www.BlackBerry.com/SignedKeys/

    Before installing your keys, find and delete the files below that will be present in the various BlackBerry development tools installation directories (location varies by tool).

    sigtool.DB

    sigtool. CSK

    sigtool. Set

    You will now be able to install your new CSI files and choose a new password.

  • RIM Web site won't let me download the code signing key

    I had to move to a new computer.  Won't spend my old code key signature RIM, and RIM will not respond to requests to replace.  I'm paying $20 and get new code signing keys.  Whenever I have the form with credit card information, it goes to a screen of error (internal error) and told me to try again in a few minutes.  (After that it clears the form data)

    It is futile to try again.  The site is broken.  I have a request signed on App World I would like to update.

    Any ideas?  Any developer support phone numbers that work?

    Thank you

    Gerry

    [email protected] is usually fast enough.

    You can also try another browser, I had problems with opera and finally with firefox.

    usually, you should be able to copy all the sigtool.* files to your new PC

  • How to get a product key genuine Windows

    key to Windows 7 jeneniyan

    Please help how to get windows 7 key jeneniyon

    Hi gyanuz,

    Visit the links to learn more about the genuine key of product below.

    Links: Get a new Windows 7 product key:http://windows.microsoft.com/en-us/windows7/Get-a-new-Windows-7-product-key

    Genuine Microsoft software

    http://www.Microsoft.com/genuine/validate/ValidateNow.aspx?displaylang=en

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit ourMicrosoft answers feedback Forum and let us know what you think.

  • How to get disabled login user (without password) at startup, so NOT to SHOW at all and so after the switch, go to desktop directly

    Vista Ultimate 64-bit

    How to get disabled login user (without password) at startup, so NOT to SHOW it to all (and needed clicked) and so after the switch, go to desktop directly?

    Also after inactivity, how to not go to sleep mode and press "power on" to bring back?

    Hello

    If you want to start directly on the desktop?

    How to automatically connect at startup in Vista
    http://www.Vistax64.com/tutorials/66966-logon-automatically.html

    Or

    How to make Vista require a user name and password when connecting
    http://www.Vistax64.com/tutorials/89812-logon-username-password.html

    =========================================

    Start - Control Panel - Power Options - upper left - require a password on wake up
    tick her do not require a password - save the changes.

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • How to get a product key, that I had a new hard drive installed in the computer shop and it seems that there is no key for windows 7

    Original title: window 7

    Hi can one tell me how to get a product key, that I had a new hard drive installed in the computer shop and it seems that there is no key for windows 7, I just brought Office 2016 and he did not finish the load down with the windows key 7.

    Because Windows 7 is in limited stock because Microsoft ended sales in October 2013, this created demand due to its rarity. This means the retail boxed copies request a bonus, while the OEM System Builder copies remain affordable.

    Full version (retail):

    -Includes the rights of transfer to another computer.

    -Does not require a qualifying earlier version of Windows.

    -Expensive

    Upgrade version (detail):

    -Includes the rights of transfer to another computer.

    -require a qualifying earlier version of Windows.

    -Expensive, but less expensive full version

    OEM System Builder version:

    The OEM of Windows 7 versions are identical to the versions commercial full license with the following exception:

    -OEM versions don't offer any free direct support from Microsoft technical support Microsoft

    -OEM Licenses are tied to the computer first you install and activate it on

    -OEM versions allow all hardware upgrades except for an upgrade to a different model motherboard

    -OEM versions does not move directly from an older Windows operating system

    There is nothing wrong to use it too, especially that all future versions of Windows will be full versions.

    You can find software OEM System Builder of dozens of online merchants. The current price for OEM Windows 7 Professional Newegg, for example, is $ 140. When I checked a few minutes ago, Amazon offered packages OEM Windows 7 Professional from several vendors at prices ranging from $ 101 to $ 150. When I checked earlier, a package specifically designed for reconditioned PCs cost only $ 50 for a 64-bit copy.

    There is no technical limitation to prevent you from using OEM software on your computer, although this software only works for a clean install, not an upgrade. In the past, Microsoft has been remarkably inconsistent in his advice to clients on the question of whether this practice is allowed. (See "is allowed to use Windows OEM on your own PC? Don't ask Microsoft. »)

  • Code signing keys

    Hi all

    I want to know about... $ 100 Code signing keys? Are there keys to these... ? I want to know some details on them.

    Thank you best regards &,.

    Previously, it was $ 100. Now it's $20.

  • Limit BlackBerry code signing keys

    The same set of customer files - RDK.csj and customer - PBDT.csj is usable on multiple computers to create the device debugging token?

    The CSJ files themselves can be installed once.  But after they have been installed, you can save your code signing keys and restore them on multiple computers.  See the link below for more information.

    Backup and restore BlackBerry Code signing keys

  • Code signing key?

    Hi all

    I am a new programmer of Blackberry. I read about the code signing key on the Blackberry home page. But I have a question. I know the cost because it is $ 20, but what it means? We must pay $ 20 for each application or only pay 1 time for applications that we write and install it on BlackBerry? Thank you!

    No, $20 buys you a set of signature keys. You can sign 0x7FFFFFFF times in total.

  • issue code signing key

    Hello

    I installed another eclipse jde in my system and in my old jde overshadows the code signing key, I installed, but I want to install the key in the new code-signing jde eclipse is can anyone help me please its urgent...

    my eclipse has Aproblematique goat that is why I ask you all plese...

    Hey, I resolved this BBForum thanks...

    go to this link...

    http://supportforums.BlackBerry.com/T5/Java-development/transfer-code-signing-key/m-p/749819#M141306

Maybe you are looking for