<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Inside BlackBerry for Business Blog &#187; Enterprise Apps</title>
	<atom:link href="http://bizblog.blackberry.com/tag/enterprise-apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://bizblog.blackberry.com</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 14:36:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bizblog.blackberry.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/20ac8e1f171f33d226baa862f286c029?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Inside BlackBerry for Business Blog &#187; Enterprise Apps</title>
		<link>http://bizblog.blackberry.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bizblog.blackberry.com/osd.xml" title="Inside BlackBerry for Business Blog" />
	<atom:link rel='hub' href='http://bizblog.blackberry.com/?pushpress=hub'/>
		<item>
		<title>The Guide for using Push technology in your Enterprise Apps, now with an exciting Video!</title>
		<link>http://bizblog.blackberry.com/2013/06/push-enterprise-apps/</link>
		<comments>http://bizblog.blackberry.com/2013/06/push-enterprise-apps/#comments</comments>
		<pubDate>Thu, 06 Jun 2013 14:27:42 +0000</pubDate>
		<dc:creator>Luke Reimer</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[BlackBerry development]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[push]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=10989</guid>
		<description><![CDATA[John Mutter and Brent Thornton, of the BlackBerry Enterprise Developer Partnerships team, have contributed this post for the Inside BlackBerry for Business Blog. Enterprise apps are changing the way that we work, undoubtedly for the better. Access to behind-the-firewall data for a workforce that is constantly on the move provides increased productivity, can reduce the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=10989&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><i>John Mutter and Brent Thornton, of the BlackBerry Enterprise Developer Partnerships team, have contributed this post for the Inside BlackBerry for Business Blog.</i></p>
<p>Enterprise apps are changing the way that we work, undoubtedly for the better. Access to behind-the-firewall data for a workforce that is constantly on the move provides increased productivity, can reduce the margin of error in reporting, fosters collaboration, and the list goes on. </p>
<p>Building push technology into your enterprise apps takes things to a whole new level. Push is an essential component of the real-time, always-on experience of BlackBerry devices. It offers an incredibly efficient and reliable way of sending information to your users in real time. Check out the video below for our take on push technology in enterprise apps: </p>
<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/GvrOVgCM9J8?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p style="text-align:center;">[ <a href="http://www.youtube.com/watch?v=GvrOVgCM9J8" target="_new">YouTube link for mobile viewing</a> ]</p>
<p>Let&#8217;s take a look at how you can build push technology into your enterprise apps. </p>
<p><span id="more-10989"></span></p>
<p>Before I begin I have to pass mad props to Garett Beukeboom here at BlackBerry who wrote <a href="https://github.com/blackberry/Cascades-Community-Samples/tree/master/SimplePushClient" target="_new">the original Simple Push Sample</a>. I took his code and modified it for use with enterprise applications.</p>
<p>Getting the sample client that we used in the video to get up and running is nice and easy. Follow these steps to get started:  </p>
<ol>
<li>Download the <a href="https://github.com/blackberry/BES10-Cascades/tree/master/ServerNotify" target="_new">ServerNotify sample</a> (Note: Client and Server code is located here) </li>
<li>Import the project in to Cascades</li>
<li>Modify the bar-descriptor.xml file:</li>
<pre>
&lt;invoke-target id="com.abccompany.servernotify"&gt;
     &lt;type&gt;APPLICATION&lt;/type&gt;
     &lt;filter&gt;
          &lt;action&gt;bb.action.PUSH&lt;/action&gt;
          &lt;mime-type&gt;application/vnd.push&lt;/mime-type&gt;
     &lt;/filter&gt;
&lt;/invoke-target&gt;
</pre>
<p>The Key piece is the invoke-target id. Set this to something unique to your company and app. </p>
<li>Next, open up PushManager.cpp</li>
<li>Modify the following line to match the invoke target id you used in your bar-descriptor</li>
<pre>
const QString PushManager::BLACKBERRY_INVOKE_TARGET_ID = 
     "com.abccompany.servernotify";
</pre>
<li>Modify the following application ID to match the application ID you use in the server code</li>
<pre>const QString PushManager::BLACKBERRY_PUSH_APPLICATION_ID = "bb_server_notify";</pre>
<li>Package and sign your application.</li>
<li><strong>IMPORTANT</strong>: Do not load the app by side loading as it loads to the personal space. Your application needs to be deployed from BlackBerry Enterprise Service 10 in order to make use of enterprise push. This way the app will appear in the work space and can be received through BlackBerry World for Work. </li>
<li>Once deployed, launch your application (You must run your application at least once to have it register with the push service).</li>
<li>Start pushing <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>
<h3><strong>Breaking it down – The Important Stuff</strong></h3>
</p>
<p>Taking a look at PushManager.cpp, here is what happens in the code:</p>
<p>You kick off by registering your application with the Push Service using your Application ID and Invoke-target ID.</p>
<p><pre>
const QString PushManager::BLACKBERRY_PUSH_APPLICATION_ID = "bb_server_notify";
const QString PushManager::BLACKBERRY_INVOKE_TARGET_ID = "com.abccompany.servernotify";
m_pushService = new PushService(BLACKBERRY_PUSH_APPLICATION_ID, BLACKBERRY_INVOKE_TARGET_ID);
m_pushService-&gt;createSession();
</pre>
</p>
<p>When the session is completed successfully you need to create a channel. You will notice that we pass a URL to the createChannel function. For enterprise we are passing the empty string.</p>
<p><pre>
const QString PushManager::BLACKBERRY_PUSH_URL = "";
m_pushService-&gt;createChannel(QUrl(BLACKBERRY_PUSH_URL));
</pre>
</p>
<p>Once the channel is completed successfully, push is ready to go. There are a few additionally items you will want to take care of. In our code you will see:</p>
<p><pre>
m_pushService-&gt;registerToLaunch();
</pre>
</p>
<p>This tells the push service to launch the application when a push arrives. This needs to happen if you plan on processing the push. If you only want to see push data when the app is open, this step is not needed.</p>
<p>Now for the most important piece of the puzzle, what to do with the push payload?  When a push arrives on the device the Push Service checks what Application ID in the push header matches an application on the device that has registered with the same Application ID. It then invokes the application associated with that ID.</p>
<p>In the constructor of the PushHandler class we registered the invoked SIGNAL with an invoked SLOT function.</p>
<p><pre>
invokeManager = new InvokeManager(this);
     connect(invokeManager,
          SIGNAL(invoked(const bb::system::InvokeRequest&amp;)), this,
          SLOT(invoked(const bb::system::InvokeRequest&amp;)));
</pre>
</p>
<p>The void PushManager::invoked(const InvokeRequest&amp; request) function takes in the invoke request that includes the push payload and processes it like so:</p>
<ul>
<li>Check the invoke came from the push service:</li>
<pre>if (request.action().compare("bb.action.PUSH") != 0)</pre>
<li>Convert the request to a payload object now that we know it&#8217;s from push</li>
<pre>PushPayload payload(request);</pre>
<li>Check that the payload is valid.</li>
<pre>if (payload.isValid()) {</pre>
<li>If you require notification that the push has been received (via the Notify URL) you need to acknowledge the push.</li>
<pre>
if (payload.isAckRequired()) { 
          m_pushService-&gt;acceptPush(payload.id());
     }
</pre>
<li>Finally, grab the push data</li>
<pre>
//Read all the push data from the payload
QString message = payload.data();
</pre>
</ul>
<p>You can choose to process the data however you like. In our case we interpret the priority and update the UI and notifications accordingly. </p>
<p>Common Push issues in the Enterprise:</p>
<ol>
<li>If you have any other samples that were built in cascades and aren&#8217;t working: Make sure you remove the following from the bar-descriptor.xml file. It is for public push only.</li>
<pre>&lt;permission system="true"&gt;_sys_use_consumer_push&lt;/permission&gt;</pre>
<li>If you have read about the Push Service SDK anywhere for the server, you can use this in the enterprise, but it is not necessary. It is much easier to build the HTTP POST yourself on the server. The Push Service SDK is a great tool for consumer push.  </li>
<li>Make sure your invoke-target id’s are unique and match between the code and the bar-descriptor.xml file.</li>
</ol>
<p>
<h3><strong>Fun Fact of the day</strong></h3>
</p>
<p>You can register an app target with multiple application ID’s if you like. That way, a different Push transaction can perform different tasks within the same application.</p>
<p>
<pre>
m_pushService1 = newPushService(BLACKBERRY_PUSH_APPLICATION_ID1, BLACKBERRY_INVOKE_TARGET_ID);
m_pushService2 = newPushService(BLACKBERRY_PUSH_APPLICATION_ID2, BLACKBERRY_INVOKE_TARGET_ID);
</pre>
</p>
<p>
<h3><strong>The Push Server</strong></h3>
</p>
<p>Building applications that leverage Enterprise Push is easier than you think.  The process involves a server-initiated HTTP POST transaction to the BlackBerry Enterprise Service hosted by your company.  Before you begin, you need a few details from your BlackBerry Server Administrator to be successful.</p>
<ol>
<li>BlackBerry Enterprise Service Host Name</li>
<li>BlackBerry Enterprise Service Push Port</li>
<li>E-Mail Address or PIN of the Application User (Although the E-Mail address is recommended)</li>
</ol>
<p>You will also need the following details from the Developer of the client application on the BlackBerry.</p>
<ol>
<li>The unique BlackBerry Application ID from the BlackBerry Application you are pushing to</li>
<li>The format of the data payload you intend to push (e.g. JSON, XML, Text, etc&#8230;)</li>
</ol>
<p>Once you have obtained this information, I have written a C# sample Method that will complete the HTTP POST transaction for you. Keep in mind, there are <a href="http://docs.blackberry.com/en/admin/deliverables/50897/index.jsp?name=Development+Guide+-+Push+Service+for+Enterprise+Apps6.2&amp;language=English&amp;userType=2&amp;category=BlackBerry+Device+Service&amp;subCategory=" target="_new">a lot of additional options and headers</a> you can find on the BlackBerry Developer Website. </p>
<p><pre>
public boolean pushData(String besName, String besPushPort, String recipientEMail, String appIdOnBlackBerry, String pushPayload)
     {
          Boolean result = false;
          // Examples of Data format
          //String besName = "myServer.abcCompany.net”;
          //String besPushPort = "8080";
          //String recipientEMail = "my.address@abcCompany.com";
          //String appIdOnBlackBerry = "bb_server_notify";
          // Please note the appIdOnBlackBerry can
          // be the PORT for previous implementations
          // of the Push Initiator.
          //String pushPayload = "Data that is sent to the Push Application on the BlackBerry";

          // Now we are going to build the POST URL
          String httpURL = "http://" + besName
               + ":" + besPushPort
               + "/push?DESTINATION=" + recipientEmail
               + "&amp;PORT=" + appIdOnBlackBerry
               + "&amp;REQUESTURI=/";
          try
          {
               // Instantiate and define the Web Request
               HttpWebRequest HttpWReq = (HttpWebRequest)WebRequest.Create(httpURL);
               HttpWReq.Method = ("POST");
               HttpWReq.Headers.Add("ContentType", "text/plain");
               // Convert the payload to a Byte Array
               byte[] data = System.Text.ASCIIEncoding.UTF8.GetBytes(pushPayload);
               // Instantiating and writing the communication stream
               Stream requestStream = HttpWReq.GetRequestStream();
               requestStream.Write(data, 0, data.Length);
               HttpWebResponse HttpWRes = (HttpWebResponse)HttpWReq.GetResponse();
               if (HttpWRes.StatusCode == HttpStatusCode.OK)
               {
                    result = true;
               }
               requestStream.Close();
               HttpWRes.Close();
               }
                    catch (Exception err)
               {
               //Handle Exception here
          }
          return result;
     }

</pre>
</p>
<p>There you have it; the guide for using push technology in your enterprise apps. Have questions? Share in the comments below or head over to the <a href="http://supportforums.blackberry.com/t5/Developer-Support-Forums/ct-p/blackberrydev" target="_new">BlackBerry Developer Support Forums</a>.  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/10989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/10989/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=10989&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2013/06/push-enterprise-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02798908b6c8de45a0e4aa8531a6d869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lukereim1</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML 5 Opens the Door to Efficient and Functional Enterprise App Development</title>
		<link>http://bizblog.blackberry.com/2013/05/html-5-development-enterprise-apps/</link>
		<comments>http://bizblog.blackberry.com/2013/05/html-5-development-enterprise-apps/#comments</comments>
		<pubDate>Wed, 01 May 2013 14:48:00 +0000</pubDate>
		<dc:creator>Jim Ing</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[enterprise developer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Native]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[WebWorks]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=10799</guid>
		<description><![CDATA[Designing mobile apps for your business can bring a load of benefits. But what platform should you use for development? How can you maximize your investment and minimize the time and resources required? Let&#8217;s tackle these questions and look at a few examples. Today, any company that is creating mobile apps faces an important decision [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=10799&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><i>Designing mobile apps for your business can bring a load of benefits. But what platform should you use for development? How can you maximize your investment and minimize the time and resources required? Let&#8217;s tackle these questions and look at a few examples.</i></p>
<p><img src="http://rimbizblog.files.wordpress.com/2013/05/header-w600.png?w=600&#038;h=604" alt="header-w600" width="600" height="604" class="aligncenter size-full wp-image-10806" /></p>
<p>Today, any company that is creating mobile apps faces an important decision – should you develop in <strong>native</strong> or <strong>HTML5</strong>? Both have advantages and disadvantages, so the choice really depends on your requirements and available resources. Certainly, native apps can provide a better user experience, but developing for native usually takes longer and can be more costly. HTML5, on the other hand, allows you to reach a wider market sooner without the restrictions imposed by walled storefronts. So wouldn&#8217;t it be great if we could have the best of both worlds? Well, we can with <strong>hybrid</strong> apps like those built by <a href="https://developer.blackberry.com/html5/" target="_new">BlackBerry WebWorks</a> or PhoneGap. A hybrid app is actually a native app that runs on the device, but it is written using web technologies (i.e., HTML5, CSS3, JavaScript, Canvas, and others) Since hybrid apps run inside a native container, it can access native device capabilities and leverage native security features. This makes it ideal for most enterprise apps.</p>
<p><span id="more-10799"></span></p>
<p>In fact, we worked with partners like SAP to help them develop WebWorks apps. The <a href="http://appworld.blackberry.com/webstore/content/22592874/" target="_new">Customer Financial Fact Sheet</a> and <a href="http://appworld.blackberry.com/webstore/content/22591884/" target="_new">RealSpend</a> apps are two examples that were developed in just a matter of weeks. By leveraging Responsive Web Design principles, these apps work on the latest <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry 10</a> smartphones, <a href="http://www.blackberry.com/playbook" target="_new">BlackBerry PlayBook tablets</a>, BlackBerry 6 and 7 smartphones, and even in a desktop browser. With some minor tweaking, these apps can also run on other platforms. This cross-device and cross-generation support is important because it allows companies to upgrade their inventory in a more cost-effective way, it allows their apps to reach a wider audience sooner rather than later, and it simplifies training and support.</p>
<p>For app developers, using HTML5 allows them to leverage and re-use their existing skillsets, workflow, and infrastructure. With dozens of solid frameworks (e.g., Sencha Touch and jQuery Mobile) and hundreds of libraries to choose from (see <a href="http://www.jsdb.io/?sort=trending" target="_new">jsdb.io</a> and <a href="http://www.microjs.com/" target="_new">microjs.com</a>), developers can quickly prototype and focus on their business logic without reinventing libraries. Even companies that leverage enterprise solutions like SAP’s <a href="http://www54.sap.com/pc/tech/collaboration-content-management/software/connectivity-framework/index.html" target="_new">NetWeaver Gateway</a>, which uses OData, can use the following libraries to get up and running quickly:</p>
<ul>
<li><a href="http://datajs.codeplex.com/" target="_new">datajs</a></li>
<li><a href="http://www.sencha.com/blog/sencha-touch-odata-connector-and-samples-for-sap" target="_new">Sencha Touch’s oData Connector</a></li>
<li><a href="https://github.com/egil/jquery.odata" target="_new">jquery.odata</a></li>
<li><a href="http://jaydata.org/tutorials/how-to-build-a-simple-odata-based-ajax-application" target="_new">JayData</a></li>
<li><a href="http://www.breezejs.com/documentation/odata" target="_new">Breeze OData Adapter</a></li>
</ul>
<p>With datajs, for example, developers can read and display data, read paginated data, add data, and add data in batches. This API supports both JSON and ATOM-based formats, and it provides a mechanism for combining remote services with local storage.</p>
<p>As you can see, HTML5 and hybrid apps offer a compelling solution for enterprises. If you’d like to discuss web development for BlackBerry in person, we’ll be available at the BlackBerry booth at SAP Sapphire Now from May 14-16.</p>
<p>Also, don’t forget to go by the Enterprise Development pods at <a href="http://www.blackberrylive.com/" target="_new">BlackBerry Live</a> &amp; <a href="http://www.blackberryjamericas.com/" target="_new">BlackBerry Jam</a> from May 14-16 and be sure to check out these sessions:</p>
<ul>
<li>JAM44 – Building for the Multi-Device Enterprise using Sencha</li>
<li>JAM19 – Calling and Consuming Enterprise Web Services</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/10799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/10799/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=10799&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2013/05/html-5-development-enterprise-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01266d01d1ae9a95d889f5143acd2a49?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">myjing</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2013/05/header-w600.png" medium="image">
			<media:title type="html">header-w600</media:title>
		</media:content>
	</item>
		<item>
		<title>Business Apps on BlackBerry 10 To Get You Started</title>
		<link>http://bizblog.blackberry.com/2013/01/business-apps-on-blackberry-10/</link>
		<comments>http://bizblog.blackberry.com/2013/01/business-apps-on-blackberry-10/#comments</comments>
		<pubDate>Wed, 30 Jan 2013 20:20:35 +0000</pubDate>
		<dc:creator>Morgan P</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 Launch Day]]></category>
		<category><![CDATA[BlackBerry apps]]></category>
		<category><![CDATA[business apps]]></category>
		<category><![CDATA[Enterprise Apps]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9821</guid>
		<description><![CDATA[Everyone loves apps. But what&#8217;s often overlooked is the real business value that they can provide in terms of productivity, access to work data on the go, and ultimately the potential to cut costs. Check out the video below for an overview of business apps and application management on BlackBerry 10, and read on for [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9821&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Everyone loves apps. But what&#8217;s often overlooked is the real business value that they can provide in terms of productivity, access to work data on the go, and ultimately the potential to cut costs. Check out the video below for an overview of business apps and application management on <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry 10</a>, and read on for a list of some of our favorites to get you started with your BlackBerry 10 smartphone.</p>
<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/wMB8SEwzR7k?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p style="text-align:center;">[ <a href="http://www.youtube.com/watch?v=wMB8SEwzR7k" target="_new">YouTube link for mobile viewing</a> ]</p>
<p>
<h2>Apps to get you started</h2>
</p>
<p><span id="more-9821"></span></p>
<p>
<h3><a href="http://appworld.blackberry.com/webstore/content/8105/" target="_new">Cisco WebEx Meetings</a></h3>
</p>
<p><img src="http://rimbizblog.files.wordpress.com/2013/01/cisco.png?w=277&#038;h=459" alt="Cisco" width="277" height="459" class="aligncenter size-full wp-image-9873" /></p>
<p>With the Cisco WebEx app on BlackBerry 10 you&#8217;re able to schedule and join Cisco WebEx meetings, as well as invite and view attendees, chat, screen share, and more.  Cisco WebEx has become a key business and collaboration tool, and on BlackBerry 10 it&#8217;s one of the key apps helping you connect with colleagues to get more done while on the go.</p>
<p>
<h3>Box</h3>
</p>
<p><img src="http://rimbizblog.files.wordpress.com/2013/01/box.png?w=543&#038;h=411" alt="Box" width="543" height="411" class="aligncenter size-full wp-image-9874" /></p>
<p>Box has become known as one of the predominant cloud file storage and collaboration providers. On BlackBerry 10 smartphones Box is integrated into the file system on the device, making it simple for you to access and share your content stored in Box. It&#8217;s so easy to access Box files and folders on your BlackBerry 10 smartphone that it feels like they&#8217;re stored right there on your device, giving you the ability to quickly access and share important content anywhere you work. </p>
<p>
<h3><a href="http://appworld.blackberry.com/webstore/content/22501880/" target="_new">Citrix Podio</a></h3>
</p>
<p>Citrix Podio on BlackBerry 10 smartphones is built on HTML5, providing a powerful work collaboration platform that enables you to work the way you want to, where you want to, and using tools that perfectly fit your team’s projects and workflows. </p>
<p>Citrix Podio on Blackberry 10 brings collaboration and business processes together through  workspaces and apps that are powerful, collaborative, and social alternatives to spreadsheets, documents and email. You can also develop your own custom apps with easy building blocks (no tech skills required) for managing projects. Over 200,000 organizations around the world already use Podio and we’re excited to bring the power of Podio to the BlackBerry community.  Learn more at <a href="http://blog.podio.com/" target="_new">blog.podio.com</a></p>
<p>
<h3><a href="http://appworld.blackberry.com/webstore/content/13651/" target="_new">Ricoh HotSpot Printing Application</a></h3>
</p>
<p>Ricoh’s print app on BlackBerry 10 smartphones enables you to print documents and presentations on HotSpot enabled printers with the simple click of a button, making it more convenient to print hard copies right from your BlackBerry 10 device. The HotSpot service is available in many public venues such as airport club lounges and hotels. It may also be hosted on a private cloud service for enterprise customers, enabling mobile printing throughout the corporate network. </p>
<p>
<h3><a href="http://appworld.blackberry.com/webstore/content/21197954/" target="_new">SalesNOW CRM for BlackBerry 10</a></h3>
</p>
<p>SalesNOW on BlackBerry 10 enables you to manage all of your sales data with full access to your critical service and customer information when and where you need it. SalesNOW is also integrated with core BlackBerry 10 features such as email, contacts, phone, and maps functionality, and also automatically synchronizes with the SalesNOW server to give you access to the latest data. This lets you keep up to date with your accounts, and also update them while you&#8217;re out of the office, as well as making it easier for you to connect with key contacts.</p>
<p>
<h3><a href="http://appworld.blackberry.com/webstore/search/BMC/" target="_new">BMC &#8211; BMC Mobility for Incident Management, and BMC Approvals</a> applications</h3>
</p>
<p><img src="http://rimbizblog.files.wordpress.com/2013/01/bmc.png?w=523&#038;h=413" alt="BMC" width="523" height="413" class="aligncenter size-full wp-image-9875" /></p>
<p>BMC’s applications on BlackBerry 10 smartphones enable you to interact with key business systems – Incident Management as well as Approvals systems while on the go. On BMC Mobility for ITSM Incidents you are able to view incident detals, and interact with incident management tickets to stay up to date, as well as provide updates to incident management items. With BMC Mobility for Approvals, you are able to view and update approval items while away from your desk.  Both apps wirelessly synch with the back-end BMC systems to keep information up to date. This enables you to improve productivity by not having to return to your workstation to update trouble tickets, or check the status of approvals.</p>
<p>There you have it; go forth and explore business apps! Be sure to come back here and share your favorites in the comments below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9821/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9821/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9821&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2013/01/business-apps-on-blackberry-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1064841ffeecb078c0d6aa7bb54a67c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moparker85</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2013/01/cisco.png" medium="image">
			<media:title type="html">Cisco</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2013/01/box.png" medium="image">
			<media:title type="html">Box</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2013/01/bmc.png" medium="image">
			<media:title type="html">BMC</media:title>
		</media:content>
	</item>
		<item>
		<title>Evaluating custom mobile app solutions for your business? Consider Connectivity, Push, Management, and Standards-based Development</title>
		<link>http://bizblog.blackberry.com/2012/12/enterprise-mobile-app-development/</link>
		<comments>http://bizblog.blackberry.com/2012/12/enterprise-mobile-app-development/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 15:05:06 +0000</pubDate>
		<dc:creator>Gregg Ostrowski</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[App World for Work]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[blackberry smartphone]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[mobile app]]></category>
		<category><![CDATA[push]]></category>
		<category><![CDATA[solutions]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9257</guid>
		<description><![CDATA[When evaluating solutions to enable your business with mobile applications that go far beyond email, calendar, and PIM, the best practice is to ensure you are making the most of what’s available. I’ve worked in this post to establish a benchmark of how BlackBerry solutions can enable business collaboration and enterprise applications with four key [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9257&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img src="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-1.jpg?w=550&#038;h=367" alt="business-apps-coding-1" width="550" height="367" class="aligncenter size-full wp-image-9258" /></p>
<p>When evaluating solutions to enable your business with mobile applications that go far beyond email, calendar, and PIM, the best practice is to ensure you are making the most of what’s available. I’ve worked in this post to establish a benchmark of how BlackBerry solutions can enable business collaboration and enterprise applications with four key elements.</p>
<h3><strong>Connectivity</strong></h3>
<p>Although this sounds pretty basic, it’s really the core of what’s needed to get things done.  When leveraging the BlackBerry Enterprise Solution, this aspect is built in from the ground up and really cannot be any easier. With a service called <a href="http://bizblog.blackberry.com/2012/08/blackberry-mds-enterprise-apps/" target="_new">MDS-CS</a>, you have that built-in “VPN-Like” connection to allow you easy access to the secure data stored behind the firewall. This is a key differentiator, as without this out-of-the-box connectivity behind the firewall, complex and potentially costly solutions would need to be created in order to achieve secure access to corporate data.</p>
<p><span id="more-9257"></span></p>
<h3><strong>Push</strong></h3>
<p><img src="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-2.jpg?w=301&#038;h=152" alt="business-apps-coding-2" width="301" height="152" class="aligncenter size-full wp-image-9259" /></p>
<p>Many of us are already familiar with the term “Push”. As a brief primer, push is a service that sends data to a device without the device having to send a request for that data. This is why you don’t have to manually check your email – new messages simply appear the moment that they arrive. It’s a great protocol for delivering information in real time and keeping you connected. But the story doesn’t end here – let’s look at what can be accomplished with Push technology in a business setting.</p>
<p>First and foremost, you have the ability to push data to an app and even notify the end user when something has arrived. Secondly, you can push that information directly to the <a href="http://blogs.blackberry.com/2012/09/blackberry-10-video/" target="_new">BlackBerry Hub in BlackBerry 10</a>. Consider how a business user works and the fact that they’re constantly in their inbox. When they wake up in the morning, they go to their inbox; before they go to bed, they are in their inbox. It follows, then, that your business applications should also have a presence here. For example, let’s say that you want to send your CEO the daily sales reports or business intelligence data. Put it right where they’ll be: the inbox! With the invocation framework introduced in <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry 10</a> you can have them tap on the notification in their inbox and thereby invoke your app.</p>
<p>Secondly, Push also solves the issue that apps need to work offline. Executives often use their BlackBerry smartphones on flights and trips all around the world.  Many “send” messages while in transit, and when they land their messages are sent without them even having to lift a finger. Your applications can work the same way; once you build into the workflow a system that can push down the requests to their devices, the requests will be waiting for them until your users have the downtime to go through and take action. They will absolutely love you if you make them more productive on the airplane, and especially if you design it so they do not need to go back to their PC to approve or interact with the information.</p>
<h3><strong>Management</strong></h3>
<p>Beyond building your enterprise app, it’s important to consider its deployment within your organization. With BlackBerry 10 we’ve created the <a href="http://bizblog.blackberry.com/2012/09/blackberry-10-application-management-it-admins/" target="_new">App World for Work</a>, which gives you the ability to host your confidential application behind the firewall, accessible only to employees within your business. This is enabled as soon as the device is activated against <a href="http://bizblog.blackberry.com/2012/08/blackberry-enterprise-service-1/" target="_new">BlackBerry Enterprise Service 10</a>, when the <a href="http://bizblog.blackberry.com/2012/09/blackberry-balance-on-blackberry-10/" target="_new">BlackBerry Balance</a> feature comes alive during <a href="http://bizblog.blackberry.com/2012/09/blackberry-10-enterprise-activation/" target="_new">device activation</a>. You can then make it available through App World for Work and the employees can download it, or you can make it a mandatory application which will then automatically be pushed to employee devices. Employees also have the ability to manage available upgrades within App World for Work to ensure that the latest maintenance releases and enhancements are available.</p>
<p>If you’re building applications which you’re looking to sell to enterprise customers, you can either provide them the application to host in their environment or you can submit your application to <a href="http://appworld.blackberry.com/" target="_new">BlackBerry App World</a> and simply recommend that your customers flag the application for work. Administrators can select publicly available apps from BlackBerry App World, which makes the application appear in App World for Work as a recommended download for employees, manageable like any other internal applications.</p>
<h3><strong>Standards-based Development</strong></h3>
<p><img src="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-3.jpg?w=550&#038;h=59" alt="business-apps-coding-3" width="550" height="59" class="aligncenter size-full wp-image-9260" /></p>
<p>Let’s face it, when building applications for mobile devices there are many different tools and languages available, and it can be daunting to make a selection.  Even some of the MDM providers who try to enable enterprise applications require you to learn their tools in order to build, manage, and secure mobile applications. With the security elements already built into the BlackBerry Enterprise Solution, all that is left to do is build the app. We’ve made it easier than ever by supporting standards-based development. First with HTML5, CSS and JavaScript, you can write and in many cases reuse samples of code which can then be compiled with our <a href="https://developer.blackberry.com/html5/" target="_new">BlackBerry WebWorks</a> tool to create a BlackBerry app. Aside from being simple to build, the beauty of the BlackBerry WebWorks development solution is that it supports BlackBerry 6 and BlackBerry 7 OS, <a href="http://www.blackberry.com/playbook" target="_new">BlackBerry PlayBook</a> tablets, and the upcoming BlackBerry 10 platform. You can also go really deep to create customized extensions that leverage the core of the BlackBerry OS and hardware. We’ve got loads of samples for you to check out on <a href="http://developer.blackberry.com/" target="_new">http://developer.blackberry.com/</a></p>
<p><img src="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-4.jpg?w=462&#038;h=332" alt="business-apps-coding-4" width="462" height="332" class="aligncenter size-full wp-image-9261" /></p>
<p>If you go a step further and would like to develop using our <a href="https://developer.blackberry.com/develop/platform_choice/ndk.html" target="_new">Native Software Development Kit</a>, the core of the language is C++.  Combined with our <a href="https://developer.blackberry.com/cascades/" target="_new">Cascades tool</a>, you can build some serious applications that not only increase productivity at your company, but have a beautiful interface.</p>
<p>When you’re evaluating solutions to solve your business problems, take a look at Connectivity, Push, Management, and Standards-based Development to see how they can help you in your quest for designing and implementing functional and intuitive business apps. The Enterprise Partnerships team here at RIM is ready to help!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9257&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/12/enterprise-mobile-app-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/2a4851a868b1ec16bc7eeea73181ae50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greggoski</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-1.jpg" medium="image">
			<media:title type="html">business-apps-coding-1</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-2.jpg" medium="image">
			<media:title type="html">business-apps-coding-2</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-3.jpg" medium="image">
			<media:title type="html">business-apps-coding-3</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/business-apps-coding-4.jpg" medium="image">
			<media:title type="html">business-apps-coding-4</media:title>
		</media:content>
	</item>
		<item>
		<title>SAP Innojam Event Wrap Up</title>
		<link>http://bizblog.blackberry.com/2012/12/sap-innojam/</link>
		<comments>http://bizblog.blackberry.com/2012/12/sap-innojam/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 21:19:58 +0000</pubDate>
		<dc:creator>Morgan P</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[blackberry playbook]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP Innojam]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9202</guid>
		<description><![CDATA[During the recent SAP TechEd and SAPPHIRE NOW conferences, SAP has been hosting Innojam events, attracting over one hundred SAP-focused developers at each event who came together to learn about the latest from SAP and develop applications integrated with SAP infrastructure. As a part of the event, a winning application was chosen, and the winning [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9202&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>During the recent SAP TechEd and SAPPHIRE NOW conferences, SAP has been hosting <a href="http://scn.sap.com/community/events/innojam" target="_new">Innojam events</a>, attracting over one hundred SAP-focused developers at each event who came together to learn about the latest from SAP and develop applications integrated with SAP infrastructure. As a part of the event, a winning application was chosen, and the winning teams were awarded a prize (as well as bragging rights).</p>
<p>The BlackBerry Enterprise Developer Partnership team was on hand to showcase the latest in BlackBerry technology including <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry 10</a>, and show how easy <a href="https://developer.blackberry.com/html5/" target="_new">HTML5 applications</a> can be developed for or ported over to the BlackBerry platform. At each event, most of the developer teams built their apps using HTML5 and showed demonstrations of these applications running on BlackBerry devices, including both the <a href="http://www.blackberry.com/playbook" target="_new">BlackBerry PlayBook</a> tablet and the <a href="http://devblog.blackberry.com/2012/10/blackberry-10-dev-alpha-a-b-specs/" target="_new">BlackBerry 10 Dev Alpha</a> device.</p>
<p>All of the BlackBerry versions of the applications were built with  HTML5/BlackBerry WebWorks, and considering that they were built in a day and half &#8211; and that they all connected to the<a href="http://www.sap.com/solutions/technology/in-memory-computing-platform/hana/overview/index.epx" target="_new">SAP HANA platform</a> using oData &#8211; it was quite impressive. This really illustrates how quick and easy it is to develop effective enterprise applications on the BlackBerry platform, with very little time and development effort.</p>
<p><span id="more-9202"></span></p>
<p>At the end of the day a winning app was selected.  At the Healthcare focused Innojam hosted in Las Vegas as a part of SAP TechEd, the app “Nurse Assist” was crowned the victor. At The Innojam hosted at SAPPHIRE NOW in Madrid , the theme was connecting people in larger cities with each other, and the “WeCare” app emerged victorious:</p>
<h3><strong>Nurse Assist (winner in Las Vegas)</strong></h3>
<p><img src="http://rimbizblog.files.wordpress.com/2012/12/sap-innojam-2.jpg?w=227&#038;h=387" alt="" width="227" height="387" class="aligncenter size-full wp-image-9204" /></p>
<p>Nurse Assist is designed to help mobile nurses in their day to day activities, keeping them better informed about patients and providing an easy and effective way to update patient records. It even provides the quickest way to get to their next appointment. This app was designed to run on the BlackBerry platform using HTML5/WebWorks, and was integrated with SAP solutions on the back end to enable the user to pull the latest information, and to update patient records and information. The application was demonstrated on a BlackBerry 10 Dev Alpha device.</p>
<h3><strong>WeCare (winner in Madrid)</strong></h3>
<p><img src="http://rimbizblog.files.wordpress.com/2012/12/sap-innojam-31.jpg?w=550&#038;h=304" alt="sap-innojam-3" width="550" height="304" class="aligncenter size-full wp-image-9221" /></p>
<p>The WeCare application was the winner at the Madrid Innojam, and was designed to better connect people in large cities with their neighbors; similar to the experience of those living in smaller towns and communities. The app makes it easier for people living in large cities to easily and securely connect with their neighbors to help out with shopping, carpooling, babysitters, and more. The app connects to <a href="http://www.sap.com/solutions/technology/in-memory-computing-platform/hana/overview/index.epx" target="_new">SAP HANA</a> for the latest information and updates, and was integrated with various social media tools like Twitter &amp; Facebook.</p>
<p>To learn more, check out a full video recap of the <a href="http://www.sapvirtualevents.com/teched/sessiondetails.aspx?sid=3428" target="_new">Las Vegas event</a> and the <a href="http://www.sapvirtualevents.com/teched/sessiondetails.aspx?sId=3831" target="_new">Madrid event</a>.</p>
<p>For more information on developing applications integrated with SAP solutions on the back end, check out the <a href="http://www.slideshare.net/BlackBerry/sap-for-blackberry-development-guide" target="_new">SAP for BlackBerry Development Guide</a>, and for more on BlackBerry development best practices, check out the <a href="http://www.slideshare.net/BlackBerry/blackberry-enterprise-development-guide" target="_new">BlackBerry Enterprise Development Guide</a>.</p>
<p>We also hope you will take the time to check out all the new and exciting news and information on the upcoming <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry 10</a> platform. Have you developed business or government apps using BlackBerry WebWorks? Share your experience in the comments below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9202&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/12/sap-innojam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1064841ffeecb078c0d6aa7bb54a67c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moparker85</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/sap-innojam-2.jpg" medium="image" />

		<media:content url="http://rimbizblog.files.wordpress.com/2012/12/sap-innojam-31.jpg" medium="image">
			<media:title type="html">sap-innojam-3</media:title>
		</media:content>
	</item>
		<item>
		<title>Connecting with Business Developers at BlackBerry Jam – Enterprise Edition in Washington, D.C. [VIDEO]</title>
		<link>http://bizblog.blackberry.com/2012/12/business-developers-video/</link>
		<comments>http://bizblog.blackberry.com/2012/12/business-developers-video/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 14:08:33 +0000</pubDate>
		<dc:creator>Luke Reimer</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[BlackBerry Jam Enterprise]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[enterprise developer]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Washington]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9217</guid>
		<description><![CDATA[We always love the opportunity to connect with business developers who attend BlackBerry events. Recently, we had the chance to speak with Mike Hennick, IT Administrator and Enterprise Developer, at the BlackBerry 10 Jam World Tour – Enterprise Edition in Washington, DC. Mike shared the following with us: “BlackBerry Mobile Fusion was a piece of [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9217&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>We always love the opportunity to connect with business developers who attend BlackBerry events. Recently, we had the chance to speak with Mike Hennick, IT Administrator and Enterprise Developer, at the <a href="http://www.blackberryjamenterprise.com/" target="_new">BlackBerry 10 Jam World Tour – Enterprise Edition</a> in Washington, DC. Mike shared the following with us: “BlackBerry Mobile Fusion was a piece of cake to set up. We had an existing BlackBerry Enterprise Server (BES) implementation that my company had outsourced, so I was a little apprehensive. After I went to a few webinars to learn more, it seemed simple enough to get started. So, I fired up some equipment, and within a week, I was able to put online the new BlackBerry Device Service (BDS), BlackBerry Mobile Fusion, and Universal Device Service (UDS) components to manage third party Android™ and iOS devices. Within a week, everything was up and running, right out of the box – ready to go!” Check out the video below for the full scoop.</p>
<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/_uYUdtNoXHU?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p style="text-align:center;">[ <a href="http://www.youtube.com/watch?v=_uYUdtNoXHU" target="_new">YouTube link for mobile viewing</a> ]</p>
<p>In his interview with us, Mike also mentions that he’s a <a href="http://www.blackberry.com/playbook" target="_new">BlackBerry PlayBook</a> fan, and uses his tablet for both work and personal life. “I even used my BlackBerry PlayBook to pass my wedding vows back and forth with my wife.” It was great to connect with him – many Enterprise developers are, like Mike, excited to take advantage of BlackBerry 10 and BlackBerry PlayBook tablet capabilities within their workplace.</p>
<p>Have any questions we can help answer about deploying BlackBerry products and services within your business? Are you using BlackBerry Mobile Fusion as your mobile device management solution? Let us know by commenting below!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9217&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/12/business-developers-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02798908b6c8de45a0e4aa8531a6d869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lukereim1</media:title>
		</media:content>
	</item>
		<item>
		<title>A Wider Perspective on Enterprise App Development and BlackBerry App World on BlackBerry 10 [VIDEO]</title>
		<link>http://bizblog.blackberry.com/2012/11/enterprise-app-development-video/</link>
		<comments>http://bizblog.blackberry.com/2012/11/enterprise-app-development-video/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 19:21:49 +0000</pubDate>
		<dc:creator>Luke Reimer</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 Jam]]></category>
		<category><![CDATA[BlackBerry App World]]></category>
		<category><![CDATA[Enterprise app development]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9177</guid>
		<description><![CDATA[After six whirlwind stops around the globe, the BlackBerry® 10 Jam World Tour – Enterprise Edition recently made its way through Washington, DC. Aiming to connect with business developers, the events focus on helping business developers build enterprise apps that take advantage of information behind their corporate firewall. We once again had the privilege of [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9177&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After six whirlwind stops around the globe, the <a href="http://www.blackberryjamenterprise.com/" target="_new">BlackBerry® 10 Jam World Tour – Enterprise Edition</a> recently made its way through Washington, DC. Aiming to connect with business developers, the events focus on helping business developers build enterprise apps that take advantage of information behind their corporate firewall.</p>
<p>We once again had the privilege of connecting with <a href="http://bizblog.blackberry.com/author/greggoski/" target="_new">Gregg Ostrowski</a>, Senior Director of Enterprise Partnerships at RIM®, to get his thoughts on why the Enterprise Jam events resonate with attendees. Throughout the interview, Gregg discusses RIM’s vision for the BlackBerry App World™ storefront, as well as RIM’s commitment to providing tools and resources to the enterprise development community.</p>
<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/g3Ujy4SRDE0?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p style="text-align:center;">[ <a href="http://www.youtube.com/watch?v=g3Ujy4SRDE0" target="_new">YouTube link for mobile viewing</a> ]</p>
<p>According to Gregg, “When an enterprise developer is building an app, they typically don’t want their app stored in a place that can be accessed by the public. To address that specific requirement, we’ve enabled a simple user-interface [in BlackBerry App World] that Enterprise developers can use to host not only public apps, but also unique Enterprise apps that they have built for their business – all housed behind their corporate firewall.”</p>
<p>Are you an enterprise developer interested in building BlackBerry apps for your business? If so, let us know by commenting below. We will be sure to connect you to the right people inside RIM and resources you need to make this happen!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9177&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/11/enterprise-app-development-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02798908b6c8de45a0e4aa8531a6d869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lukereim1</media:title>
		</media:content>
	</item>
		<item>
		<title>Spain Welcomes the BlackBerry 10 Jam World Tour – Enterprise Edition</title>
		<link>http://bizblog.blackberry.com/2012/11/spain-welcomes-the-blackberry-10-jam-world-tour-enterprise-edition/</link>
		<comments>http://bizblog.blackberry.com/2012/11/spain-welcomes-the-blackberry-10-jam-world-tour-enterprise-edition/#comments</comments>
		<pubDate>Mon, 19 Nov 2012 19:18:06 +0000</pubDate>
		<dc:creator>Luke Reimer</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Global]]></category>
		<category><![CDATA[b2b]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 Jam World Tour]]></category>
		<category><![CDATA[BlackBerry Jam]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Enterprise Apps]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=9126</guid>
		<description><![CDATA[Guest post from Astrit &#8211; Ed. &#160; Last week the BlackBerry® 10 Jam World Tour – Enterprise Edition was held in Madrid, Spain. 121 developers took part in some very interesting sessions, demonstrations, and workshops. With these events, Research In Motion® (RIM®) aims to help enterprise developers find out what the BlackBerry® 10 platform has [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9126&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><i>Guest post from Astrit &#8211; Ed.</i></p>
<p style="text-align:center;"><img src="http://rimdevblog.files.wordpress.com/2012/11/blackberry-10-jam-enterprise-1.jpg?w=288" alt="TITLE_IMAGE" title="TITLE_IMAGE" width="288" />&nbsp;<img src="http://rimdevblog.files.wordpress.com/2012/11/blackberry-10-jam-enterprise-2.jpg?w=288" alt="" title="" width="288" /></p>
<p>Last week the <a href="http://www.blackberryjamenterprise.com/" target="_new">BlackBerry® 10 Jam World Tour – Enterprise Edition</a> was held in Madrid, Spain. 121 developers took part in some very interesting sessions, demonstrations, and workshops. With these events, Research In Motion® (RIM®) aims to help enterprise developers find out what the <a href="http://www.blackberry.com/blackberry10" target="_new">BlackBerry® 10</a> platform has to offer and provide experts in building applications to show developers the wide variety of <a href="http://developer.blackberry.com/" target="_new">tools currently available</a>. These tools include BlackBerry® WebWorks™ using HTML5, CSS and Javascript®, and the NDK/Cascades™ leveraging C++. On this occasion, attendees also become versed in <a href="http://bizblog.blackberry.com/2012/08/blackberry-mds-enterprise-apps/" target="_new">BlackBerry MDS-CS</a>, <a href="http://bizblog.blackberry.com/2012/08/blackberry-enterprise-service-1/" target="_new">BlackBerry® Enterprise Service 10</a>, and BlackBerry advantages in <a href="http://www.blackberry.com/security" target="_new">security</a>.</p>
<p><strong><a style="float:right;" href="http://devblog.blackberry.com/2012/11/blackberry-10-jam-world-tour-enterprise-spain" target="_new">Read more at the Inside BlackBerry Developer Blog »</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/9126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/9126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=9126&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/11/spain-welcomes-the-blackberry-10-jam-world-tour-enterprise-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02798908b6c8de45a0e4aa8531a6d869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lukereim1</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/11/blackberry-10-jam-enterprise-1.jpg" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/11/blackberry-10-jam-enterprise-2.jpg" medium="image" />
	</item>
		<item>
		<title>Resources for the Corporate Developer – Extending Mobile Access to your SAP Business Suite</title>
		<link>http://bizblog.blackberry.com/2012/10/sap-blackberry-development-guide/</link>
		<comments>http://bizblog.blackberry.com/2012/10/sap-blackberry-development-guide/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 14:55:23 +0000</pubDate>
		<dc:creator>Shay D</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[corporate apps]]></category>
		<category><![CDATA[develop corporate apps]]></category>
		<category><![CDATA[development guide]]></category>
		<category><![CDATA[Enterprise Apps]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=8909</guid>
		<description><![CDATA[Enterprise developers who are looking to extend access to their SAP® Business Suite from the BlackBerry® platform are faced with many choices for how to do so. One of those choices is that of the middleware tier that will bridge the gap between the client side application and backend SAP Business Suite. Here we will [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=8909&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Enterprise developers who are looking to extend access to their SAP® Business Suite from the BlackBerry® platform are faced with many choices for how to do so.  One of those choices is that of the middleware tier that will bridge the gap between the client side application and backend SAP Business Suite.  Here we will explore SAP based middleware such as SAP NetWeaver® Application Server Web Services, SAP NetWeaver® Gateway, and the Sybase® Unwired Platform (SUP) that provide this bridge.</p>
<p>The guide posted below will help developers understand SAP middleware solutions, which can help remove one of the complexities of SAP in the mobile space.  Key topics covered are:</p>
<ul>
<li>SAP Mobile Continuum</li>
<li>SAP Middleware</li>
<li>Deploying and Managing Client Applications</li>
<li>Securing Enterprise Content</li>
</ul>
<p>Check out the <a href="http://www.slideshare.net/BlackBerry/sap-for-blackberry-development-guide" target="_new">development guide</a> below and share your thoughts and feedback in the comments.</p>
<p style="text-align:center;"><iframe src='http://www.slideshare.net/slideshow/embed_code/14840852' width='425' height='348'></iframe></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/8909/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/8909/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=8909&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/10/sap-blackberry-development-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f1e9e93d2e35a4d7dfa6ddfd82c84765?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaydillon</media:title>
		</media:content>
	</item>
		<item>
		<title>Resources for the Corporate Developer – The BlackBerry Development Guide</title>
		<link>http://bizblog.blackberry.com/2012/10/corporate-developer-resource-guide/</link>
		<comments>http://bizblog.blackberry.com/2012/10/corporate-developer-resource-guide/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 18:04:25 +0000</pubDate>
		<dc:creator>Shay D</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[BlackBerry WebWorks]]></category>
		<category><![CDATA[corporate app guide]]></category>
		<category><![CDATA[corporate apps]]></category>
		<category><![CDATA[develop enterprise app]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[development guide]]></category>
		<category><![CDATA[Enterprise Apps]]></category>

		<guid isPermaLink="false">http://bizblog.blackberry.com/?p=8906</guid>
		<description><![CDATA[As more and more smartphones and tablets enter the enterprise, there is increasing desire to extend enterprise data beyond the desktop and into mobile. There are also more complexities when developing and deploying an app in an enterprise environment, such as data and device management, security, cross-platform and cross-device development, and connectivity for your application. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=8906&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img src="http://rimbizblog.files.wordpress.com/2012/10/enterprise_banner.png?w=600&#038;h=163" alt="" title="enterprise_banner" width="600" height="163" class="aligncenter size-full wp-image-8931" /></p>
<p>As more and more smartphones and tablets enter the enterprise, there is increasing desire to extend enterprise data beyond the desktop and into mobile.  There are also more complexities when developing and deploying an app in an enterprise environment, such as data and device management, security, cross-platform and cross-device development, and connectivity for your application.  With its core DNA rooted in the enterprise, the BlackBerry® platform addresses these issues with app development and deployment solutions – and as a developer, these can be leveraged to deliver a richer and more secure application.</p>
<p>The guide posted below will help developers make the right development decisions, leveraging the right tools and resources.  This can save valuable time and money, and ultimately help build better applications.  Key topics covered are:</p>
<ul>
<li>Overview of BlackBerry® WebWorks™</li>
<li>Building HTML5 Applications with Native-Like Functionality</li>
<li>Using Existing Web Development Frameworks</li>
<li>BlackBerry WebWorks Resources</li>
<li>Tools and Code to Help You Get Started Today</li>
<li>Deploying and Managing Client Applications</li>
<li>Securing Enterprise Content</li>
</ul>
<p><a href="http://www.slideshare.net/BlackBerry/blackberry-enterprise-development-guide" target="_new">Check out the guide</a> below and share your thoughts and feedback in the comments.</p>
<p style="text-align:center;"><iframe src='http://www.slideshare.net/slideshow/embed_code/14837862' width='425' height='348'></iframe></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimbizblog.wordpress.com/8906/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimbizblog.wordpress.com/8906/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bizblog.blackberry.com&#038;blog=17235672&#038;post=8906&#038;subd=rimbizblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bizblog.blackberry.com/2012/10/corporate-developer-resource-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f1e9e93d2e35a4d7dfa6ddfd82c84765?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaydillon</media:title>
		</media:content>

		<media:content url="http://rimbizblog.files.wordpress.com/2012/10/enterprise_banner.png" medium="image">
			<media:title type="html">enterprise_banner</media:title>
		</media:content>
	</item>
	</channel>
</rss>
