ICEmobile
  1. ICEmobile
  2. MOBI-10

BlackBerry client container for enhanced mobile features

    Details

    • Type: New Feature New Feature
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: EE 1.0
    • Component/s: None
    • Labels:
      None
    • Environment:
      BlackBerry

      Description

      A client side container is required for BlackBerry to provide an enhanced web browser supporting additional mobile features.

        Activity

        Ted Goddard created issue -
        Ted Goddard made changes -
        Field Original Value New Value
        Description A client side container is required for Android to provide an enhanced web browser supporting additional mobile features.
        A client side container is required for BlackBerry to provide an enhanced web browser supporting additional mobile features.
        Environment Android BlackBerry
        Ted Goddard made changes -
        Assignee Steve Maryka [ steve.maryka ] Greg Dick [ greg.dick ]
        Hide
        Steve Maryka added a comment -

        The container should be configurable, with respect to what specific device integration capabilities are included.

        Show
        Steve Maryka added a comment - The container should be configurable, with respect to what specific device integration capabilities are included.
        Hide
        Steve Maryka added a comment -

        The container should be configurable, with respect to what specific device integration capabilities are included.

        Show
        Steve Maryka added a comment - The container should be configurable, with respect to what specific device integration capabilities are included.
        Hide
        Greg Dick added a comment -

        Working on the push aspect of the application. There are at least two versions of developer guides for connecting to a blackberry push service from the client, and none of them work. Currently, the networking connection to the Blackberry push service URL is timing out with an IOException: Tunnel open timed out.

        There appears to be far more to networking on the Blackberry than simply opening a socket connection to a server, depending on the technologies involved. Here are some of the links I've tracked down:

        Show
        Greg Dick added a comment - Working on the push aspect of the application. There are at least two versions of developer guides for connecting to a blackberry push service from the client, and none of them work. Currently, the networking connection to the Blackberry push service URL is timing out with an IOException: Tunnel open timed out. There appears to be far more to networking on the Blackberry than simply opening a socket connection to a server, depending on the technologies involved. Here are some of the links I've tracked down:
        Hide
        Greg Dick added a comment -

        http://supportforums.blackberry.com/t5/Java-Development/Java-io-ioException-Tunnel-Timed-out-received/td-p/432968

        Here's the source code download page for the RIM network diagnostic tool:

        http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is_-_Network_Diagnostic_Tool.html?nodeid=1450596&vernum=0

        There is a mid/high level approach to the subscription process using new classes in blackberry OS6 from the dev guide as follows:

        http://docs.blackberry.com/id-id/developers/deliverables/29215/Subscribe_to_a_BPS_content_provider_1226150_11.jsp

        mport the required classes and interfaces.
        import net.rim.device.api.io.messaging.*;
        2.
        Initialize a NonBlockingReceiverDestination variable to manage the subscription.
        NonBlockingReceiverDestination nbrd = null;
        3.
        Create a MessageListener object to process incoming push messages.
        try {
        4.
        MyMessageListener pushListener = new MyMessageListener();
        Create a URI object with the port information that the content provider assigns to you.
        URI pushURI = URI.create("http://:101");
        5.
        Create an InboundDestinationConfiguration object to set parameters for the push subscription.
        InboundDestinationConfiguration config =
        InboundDestinationConfigurationFactory.createBPSConfiguration
        (true, // start this application when a push message arrives
        false, // allow other applications to receive these push messages
        false, // do not store these messages (persistence not supported)
        "12-Ab234cD5eF67h890", // application ID,
        BPSuri); // BlackBerry Push Service URI
        6.
        Create a NonBlockingReceiverDestination.
        nbrd = DestinationFactory.createNonBlockingReceiverDestination
        (config, pushURI, pushListener);
        7.
        Create a SenderDestination to send a subscription message.
        13
        Development Guide
        Sending login information to an HTTP server
        NonBlockingSenderDestination bpsDestination =
        DestinationFactory.createNonBlockingSenderDestination
        (myContext, uri, responseListener);
        8.
        Configure a subscription message.
        ByteMessage subMsg =
        BpsSubscriptionMessageBuilder.createByteSubscriptionMessage
        (bpsDestination, nbrd, "user", "pwd");
        9.
        Send the subscription message.
        bpsDestination.send();

        Step six of the above process throws an InvalidScheme IOException. Something about "http" it doesn't like.

        The above process hides a few details of the procedure. It opens a local socket listener on the port assigned to you by RIM, (101 in the above example) and then connects to the service and sends a subscription message.

        I've found a low level HttpConnection and standard XML string based approach in a Blackberry Forum posting (RIM knowledgebase) which is throwing the Tunnel Exception. I'll post that link when I find it again.

        Show
        Greg Dick added a comment - http://supportforums.blackberry.com/t5/Java-Development/Java-io-ioException-Tunnel-Timed-out-received/td-p/432968 Here's the source code download page for the RIM network diagnostic tool: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is_-_Network_Diagnostic_Tool.html?nodeid=1450596&vernum=0 There is a mid/high level approach to the subscription process using new classes in blackberry OS6 from the dev guide as follows: http://docs.blackberry.com/id-id/developers/deliverables/29215/Subscribe_to_a_BPS_content_provider_1226150_11.jsp mport the required classes and interfaces. import net.rim.device.api.io.messaging.*; 2. Initialize a NonBlockingReceiverDestination variable to manage the subscription. NonBlockingReceiverDestination nbrd = null; 3. Create a MessageListener object to process incoming push messages. try { 4. MyMessageListener pushListener = new MyMessageListener(); Create a URI object with the port information that the content provider assigns to you. URI pushURI = URI.create("http://:101"); 5. Create an InboundDestinationConfiguration object to set parameters for the push subscription. InboundDestinationConfiguration config = InboundDestinationConfigurationFactory.createBPSConfiguration (true, // start this application when a push message arrives false, // allow other applications to receive these push messages false, // do not store these messages (persistence not supported) "12-Ab234cD5eF67h890", // application ID, BPSuri); // BlackBerry Push Service URI 6. Create a NonBlockingReceiverDestination. nbrd = DestinationFactory.createNonBlockingReceiverDestination (config, pushURI, pushListener); 7. Create a SenderDestination to send a subscription message. 13 Development Guide Sending login information to an HTTP server NonBlockingSenderDestination bpsDestination = DestinationFactory.createNonBlockingSenderDestination (myContext, uri, responseListener); 8. Configure a subscription message. ByteMessage subMsg = BpsSubscriptionMessageBuilder.createByteSubscriptionMessage (bpsDestination, nbrd, "user", "pwd"); 9. Send the subscription message. bpsDestination.send(); Step six of the above process throws an InvalidScheme IOException. Something about "http" it doesn't like. The above process hides a few details of the procedure. It opens a local socket listener on the port assigned to you by RIM, (101 in the above example) and then connects to the service and sends a subscription message. I've found a low level HttpConnection and standard XML string based approach in a Blackberry Forum posting (RIM knowledgebase) which is throwing the Tunnel Exception. I'll post that link when I find it again.
        Show
        Greg Dick added a comment - A little bit more on making network connections via various blackberry technologies: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is_-_Different_ways_to_make_an_HTTP_or_socket_connection.html?nodeid=826935&vernum=0#3
        Show
        Greg Dick added a comment - More information on specifying the APN when making a direct HTTP connection: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/How_To_-_Specify_APN_information_for_a_direct_TCP_connection.html?nodeid=1265025&vernum=0
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25184 Wed Aug 03 16:41:07 MDT 2011 ted.goddard updating icon and home URL (MOBI-10)
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/res/img/icon.png
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25496 Fri Sep 16 15:01:54 MDT 2011 greg.dick MOBI-10 cleaned up documentation
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/http/HttpRequestHandler.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25497 Fri Sep 16 15:04:07 MDT 2011 greg.dick MOBI-10 cleaned up documentation
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/push/PushMessageReader.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25498 Fri Sep 16 15:06:33 MDT 2011 greg.dick MOBI-10 cleaned up logging. Use 'public' BIS-B connection postfix for demo
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/push/PushAgent.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25499 Fri Sep 16 15:07:57 MDT 2011 greg.dick MOBI-10 Dont run in the background. Also, added a reload current page menu item
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ApplicationScreen.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25500 Fri Sep 16 15:11:48 MDT 2011 greg.dick MOBI-10 renamed to make way for reload current menu
        Files Changed
        Commit graph ADD /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/ReloadHomeMenuItem.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25501 Fri Sep 16 15:14:17 MDT 2011 greg.dick MOBI-10 changed desired menu index to make way for Reload
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/ReloadScriptMenuItem.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25502 Fri Sep 16 15:15:00 MDT 2011 greg.dick MOBI-10 changed desired menu index to make way for Reload
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/BackMenuItem.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25503 Fri Sep 16 15:16:39 MDT 2011 greg.dick MOBI-10 Added a bit of debug for timing of uploads
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/upload/AjaxUpload.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25504 Fri Sep 16 15:19:03 MDT 2011 greg.dick MOBI-10 Added some timing measurements to image capture
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/camera/WidgetCameraController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25505 Fri Sep 16 15:28:20 MDT 2011 greg.dick MOBI-10 Added timing, network connectivity test, comments, notification icon and methods for indicator activation
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25506 Fri Sep 16 15:29:01 MDT 2011 greg.dick MOBI-10 Changed order to make room for reload menu item.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/HistoryMenuItem.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25507 Fri Sep 16 15:30:29 MDT 2011 greg.dick MOBI-10 complete rename of reload and adding ReloadCurrent
        Files Changed
        Commit graph DEL /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/ReloadMenuItem.java
        Commit graph ADD /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/ReloadCurrentMenuItem.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25650 Mon Sep 26 16:18:18 MDT 2011 greg.dick MOBI-10 Changed Push ApplicationId to new evaluation version
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/push/PushAgent.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25651 Mon Sep 26 16:19:33 MDT 2011 greg.dick MOBI-10 Enable the OK button after some time to allow the device to layout the EULA first
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/EulaManager.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25652 Mon Sep 26 16:20:43 MDT 2011 greg.dick MOBI-10 Re-enabled the ovveriding screen behaviour on close to keep app running always
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ApplicationScreen.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25653 Mon Sep 26 16:23:14 MDT 2011 greg.dick MOBI-10 Remove call to getIPCIframe.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/blackberry-interface.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25654 Mon Sep 26 16:27:08 MDT 2011 greg.dick MOBI-10 Enhancements for parkPushId features
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25655 Mon Sep 26 16:28:17 MDT 2011 greg.dick MOBI-10 Added email notification options for permantent consumption
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProperties.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25656 Mon Sep 26 16:29:04 MDT 2011 greg.dick MOBI-10 Added email notification options for permantent consumption
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProvider.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25690 Wed Sep 28 11:37:07 MDT 2011 greg.dick MOBI-10 Logging changes for format
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/push/PushMessageReader.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25691 Wed Sep 28 11:37:57 MDT 2011 greg.dick MOBI-10 Checked in new Push Listening Port Id
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/push/PushAgent.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25692 Wed Sep 28 11:40:28 MDT 2011 greg.dick MOBI-10 Removed logging statement
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/upload/ScriptResultReader.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25693 Wed Sep 28 11:40:58 MDT 2011 greg.dick MOBI-10 Removed logging statements
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/upload/AjaxUpload.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25694 Wed Sep 28 11:44:11 MDT 2011 greg.dick MOBI-10 Added calls to resume/pause blocking connection
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25930 Fri Oct 14 15:00:43 MDT 2011 greg.dick MOBI-10 Added two useful URLs to the quick home list
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProperties.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #25934 Fri Oct 14 16:58:03 MDT 2011 greg.dick MOBI-10 Updated to match the other platforms.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/blackberry-interface.js
        Ken Fyten made changes -
        Security Private [ 10001 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26023 Mon Oct 24 08:55:27 MDT 2011 greg.dick MOBI-10 Only call parking and blocking connection scripts if the device is a real device.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26065 Tue Oct 25 15:43:01 MDT 2011 greg.dick MOBI-10 Use static sleep method on Thread, not instance of Thread.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/audio/AudioRecorder.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26066 Tue Oct 25 15:44:01 MDT 2011 greg.dick MOBI-10 Use static sleep method on Thread, not instance of Thread
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/camera/VideoController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26079 Wed Oct 26 11:02:11 MDT 2011 greg.dick MOBI-10 Changed 'h5' tags to 'em' for the Blackberry
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/device/qrcode-example.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26084 Wed Oct 26 11:52:59 MDT 2011 greg.dick MOBI-10 Use better icon for notification, and log the park script when executed
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26085 Wed Oct 26 11:54:05 MDT 2011 greg.dick MOBI-10 Remove placeholder icon and use official icon for notification
        Files Changed
        Commit graph ADD /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/icemobile-icon-32x32.png
        Commit graph DEL /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/icebox-32x32.png
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26114 Thu Oct 27 16:19:01 MDT 2011 greg.dick MOBI-10 Make options menu contain versioning information.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProvider.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #26577 Fri Nov 25 09:30:01 MST 2011 greg.dick MOBI-10 Removed obsolete reload native javascript mechanism and method calls
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ApplicationScreen.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27045 Thu Dec 22 09:17:20 MST 2011 greg.dick MOBI-10 Changed pauseBlockingConnection to pauseConnection and added guards for only doing certain things on real devices
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27046 Thu Dec 22 09:21:34 MST 2011 greg.dick MOBI-10 Use 'ICEmobileContainer 1.0 RC1'
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProvider.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27047 Thu Dec 22 09:21:54 MST 2011 greg.dick MOBI-10 Use 'ICEmobileContainer 1.0 RC1' as guid string
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ContainerController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27052 Thu Dec 22 12:04:59 MST 2011 greg.dick MOBI-10 Use 'ICEmobileContainer 1.0 Beta 3'
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ContainerController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27248 Wed Jan 18 15:07:21 MST 2012 greg.dick MOBI-10 Provided some better logging.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/FieldErrorHandler.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27249 Wed Jan 18 15:12:03 MST 2012 greg.dick MOBI-10 Moved the call to close the Player to after the code for committing the recording. Also don't use Stream recording, but set the output file name.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/camera/VideoController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27250 Wed Jan 18 15:28:41 MST 2012 greg.dick MOBI-10 Add Screen to display using event thread, rather than just getting eventLock. This seems to prevent the screen from being added over the permissions modal dialog.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/script/camera/VideoController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27672 Mon Feb 06 11:53:49 MST 2012 greg.dick MOBI-10 Added Product field as 'ICEmobileContainer 1.0 RC1', updated GUID to reflect this value
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ContainerController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27673 Mon Feb 06 11:56:18 MST 2012 greg.dick MOBI-10 Use PRODUCT_ID from ContainerController to reduce number of independent versioning variables
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/options/BlackberryOptionsProvider.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27739 Thu Feb 09 15:07:09 MST 2012 greg.dick MOBI-10 Use 'ICEmobileContainer 1.0 GA'
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ContainerController.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27755 Fri Feb 10 10:01:01 MST 2012 greg.dick MOBI-10 Removed unused imports
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ICEmobileContainer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27759 Fri Feb 10 11:41:31 MST 2012 greg.dick MOBI-10 Improve logging for push notifications to cloud to include the exception
        Files Changed
        Commit graph MODIFY /icepush/trunk/icepush/core/src/main/java/org/icepush/servlet/MainServlet.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27819 Mon Feb 13 14:50:56 MST 2012 greg.dick MOBI-10 Removed logging of common DOM exception
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/blackberry-interface.js
        Ted Goddard made changes -
        Security Private [ 10001 ]
        Ted Goddard made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Fix Version/s EE 1.0 Final [ 10318 ]
        Resolution Fixed [ 1 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30133 Thu Jul 19 15:34:37 MDT 2012 greg.dick MOBI-10 change to javadoc
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/http/HttpRequestHandler.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30134 Thu Jul 19 15:35:37 MDT 2012 greg.dick MOBI-10 Added logging statement
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/authentication/AuthenticatingProtocolHandler.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32279 Wed Nov 21 13:28:40 MST 2012 greg.dick MOBI-10 Added Reset BIS push menu item to screen for long sitting applications
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/ApplicationScreen.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32280 Wed Nov 21 13:29:25 MST 2012 greg.dick MOBI-10 Moved Reset menu item to bottom of menu list
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/client/blackberry/container/src/org/icemobile/client/blackberry/menu/ResetPushMenuItem.java
        Migration made changes -
        Status Resolved [ 5 ] Closed [ 6 ]

          People

          • Assignee:
            Greg Dick
            Reporter:
            Ted Goddard
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: