Skip to main content

Posts

install own certificate to blackberry

Additional Information The following are alternate methods of loading personal certificates: Browser Plugin - If a web page has the appropriate Multipurpose Internet Mail Extension (MIME) type set and the .cer file type is used, click the link to the certificate and import or view the certificate wirelessly. Email messages - Certificates included as email attachments can also be imported manually when received on the BlackBerry smartphone. info from

Blackberry - Access Address Book contacts

Procedure BlackBerry smartphone applications can make use of contacts stored in the Address Book. The following sample application gives a listing of all contacts in the Address Book and then displays all information for a selected contact. Note: This example uses the BlackBerryContact interface that is an extension of Contact. It is possible to use the Contact interface if you do not require access to any BlackBerry smartphone specific fields that include four user-defined fields (string values) and a personal identification number (PIN) field (hexadecimal number). code here

How To - Add a Certificate to DeviceKeyStore

By default, KeyStore Injection is denied on a BlackBerry wireless device that is added to a BlackBerry Enterprise Server™. Use Application Control to allow third-party applications to add certificates to the DeviceKeyStore. By locating a ControlledAccessException, the application will continue to function, even if the application control is denying the addition of the certificate. Note: Currently, third-party applications are unable to add certificates to the TrustedKeyStore automatically. The application must first add the certificate to the DeviceKeyStore. Then the user can manually trust the certificate on the device under Options > Security > Certificates. A third-party application can add a certificate to DeviceKeyStore by using the following method

Determining how to properly call a stored procedure

Set Conn = Server.CreateObject("ADODB.Connection") ' The following line must be changed to reflect your data source info Conn.Open "data source name", "user id", "password" set cmd = Server.CreateObject("ADODB.Command") set cmd.ActiveConnection = Conn ' Specify the name of the stored procedure you wish to call cmd.CommandText = "sp_MyStoredProc" cmd.CommandType = adCmdStoredProc ' Query the server for what the parameters are cmd.Parameters.Refresh %> <Table Border=1> <TR> <TD><B>PARAMETER NAME</B></TD> <TD><B>DATA-TYPE</B></TD> <TD><B>DIRECTION</B></TD> <TD><B>DATA-SIZE</B></TD> </TR> <% For Each param In cmd.Parameters %> <TR> <TD><%= param.name %></TD> <TD><%= param.type %></TD> <TD><%= param.direction %></TD> ...

user Emulator to debug Windows Mobile 6 in Vista

open Windows Mobile Device center Mobile Device Setting -> Connection Setting -> Allow connections to one of the following: Change to DMA in vs 2008, Go to Tools -> Device Emulator Manager select one from list, for example: windows mobile 6 professional emulator right on to cradle waiting for popup to establish the relationship (be sure get internet connection from Emulator)

PHP Framework - CodeIgniter

create own library: http://codeigniter.com/user_guide/general/creating_libraries.html external library - if don't want to create another php file just for css or js They try this: http://codeigniter.com/forums/viewthread/101236/ If run into any URI issue: external->run(); ?> ? to /: (auto -> query_string, or try any others) $config['uri_protocol'] = "query_string";