<?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"
	>

<channel>
	<title>专注于blackberry &#187; bis</title>
	<atom:link href="http://www.inblackberry.com/web/tag/bis/feed" rel="self" type="application/rss+xml" />
	<link>http://www.inblackberry.com/web</link>
	<description>blackberry</description>
	<pubDate>Thu, 26 Aug 2010 14:19:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>每周一技： ServiceBook初探</title>
		<link>http://www.inblackberry.com/web/development/week-tech/weektech-access-servicebook.html</link>
		<comments>http://www.inblackberry.com/web/development/week-tech/weektech-access-servicebook.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 10:09:04 +0000</pubDate>
		<dc:creator>Taigoo</dc:creator>
		
		<category><![CDATA[每周一技]]></category>

		<category><![CDATA[BES]]></category>

		<category><![CDATA[bis]]></category>

		<category><![CDATA[configure]]></category>

		<category><![CDATA[mds]]></category>

		<category><![CDATA[开发]]></category>

		<guid isPermaLink="false">http://www.inblackberry.com/web/?p=246</guid>
		<description><![CDATA[<p>关于Service Book，已经不止一次在本站讨论了。在这里还是简单概括一下:服务的配置。例如，上网，需要有GPRS和WAP的配置，对WIFI，有WIFI的配置。</p>
<p>本文是Service Book的初探，有必要的话或需求的话，我会更深一步讲解。</p>
<p>首先介绍如何访问机器上的Service Book，要实现这个功能，我们可以参考一下API，API已经提供了相关的接口了。代码如下：</p>
 ServiceBook sb = ServiceBook.getSB();
 ServiceRecord[] srs]]></description>
			<content:encoded><![CDATA[<p>关于Service Book，已经不止一次在本站讨论了。在这里还是简单概括一下:服务的配置。例如，上网，需要有GPRS和WAP的配置，对WIFI，有WIFI的配置。</p>
<p>本文是Service Book的初探，有必要的话或需求的话，我会更深一步讲解。</p>
<p>首先介绍如何访问机器上的Service Book，要实现这个功能，我们可以参考一下API，API已经提供了相关的接口了。代码如下：</p>
<pre> ServiceBook sb = ServiceBook.getSB();
 ServiceRecord[] srs = sb.getRecords();</pre>
<p>通过ServiceRecord，我们可以得到什么内容呢？</p>
<ul>
<li>CID，比如邮件的CID为CMIME，可以通过srs[i].getCid得到相关内容</li>
<li>APN,既然访问网络，APN也必须得到，这对于一些网络编程非常有帮助</li>
<li>网络地址，和网络类型</li>
<li>其他</li>
</ul>
<p>我建议看看ServiceRecord 该类的文档，说不定有意想不到的收获。</p>
<p>现在给出一个完整的例子：</p>
<pre> public void listServiceBook()
     {
         ServiceBook sb = ServiceBook.getSB();
         ServiceRecord[] srs = sb.getRecords();

         for(int index = srs.length - 1; index &gt;= 0; --index) {
             //identify the service record associated with a mail message service via a CID of 'CMIME'
             if( srs[index].getCid().equalsIgnoreCase( "CMIME" )) {
                //add your code here
               }
         }
      }</pre>
<p>下面讲讲应用。</p>
<p>已经有很多人提出如何列出Blackberry机器上绑定的邮箱.其实这个问题非常简单。可以将上面的代码改为：</p>
<pre> public void listBoundEmails()
     {
         ServiceBook sb = ServiceBook.getSB();
         ServiceRecord[] srs = sb.getRecords();

         for(int index = srs.length - 1; index &gt;= 0; --index) {
             //identify the service record associated with a mail message service via a CID of 'CMIME'
             if( srs[index].getCid().equalsIgnoreCase( "CMIME" )) {
                 ServiceConfiguration sc = new ServiceConfiguration(srs[index]);
                 logger.log("The SB name configuring is:"+sc.getName()+"/"+sc.getEmailAddress());
               }
         }
      }</pre>
<p>代码不解释了，太简单了。知道了email地址，你就可以指定一个缺省的邮件作为发送地址。这是另外一个话题，不再这里赘述。</p>
<p>综合上述，所以很多问题不是不懂，而是没有仔细去看文档。</p>
<p>还有其他应用吗？当然有，例如：</p>
<ol>
<li>如何和Blackberry邮件系统集成</li>
<li>如何和BES关联</li>
<li>如何让浏览器上网</li>
<li>如何设置网络的APN</li>
<li>如何通过WIFI访问网络</li>
<li>如何提供LBS服务</li>
<li>如何设置MMS服务</li>
<li>如何设置PUSH</li>
</ol>
<p>以上这些应用需要Service Book，但是目前RIM从来没有公开过其格式。即使有备份的ipd文件，但是ipd文件格式往往都是网友crack的，做出来的软件也不太令人满意，希望RIM能早日发布这些格式吧，这样对Blackberry的推动是非常有好处的。</p>
<p>以上仅仅是我任意列出的应用，如果您对以上哪个感兴趣，可以留言，如果有很多网友想知道某个具体问题，我会另写一些文章解释之。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inblackberry.com/web/development/week-tech/weektech-access-servicebook.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>BIS 2.5 released!</title>
		<link>http://www.inblackberry.com/web/news/bis-version-25-released.html</link>
		<comments>http://www.inblackberry.com/web/news/bis-version-25-released.html#comments</comments>
		<pubDate>Tue, 24 Jun 2008 23:18:34 +0000</pubDate>
		<dc:creator>Taigoo</dc:creator>
		
		<category><![CDATA[新闻]]></category>

		<category><![CDATA[bis]]></category>

		<category><![CDATA[blackberry]]></category>

		<guid isPermaLink="false">http://www.inblackberry.com/web/news/bis-version-25-released.html</guid>
		<description><![CDATA[<p>BIS(Blackberry Internet Service) 2.5版本已经发布。很多公司又有升级了，这得忙煞技术支持了。</p>
<p>看看最新版本有什么新特性：</p>

<li>附件按原来格式下载</li>
<li>HTML 邮件消息的阅读</li>

<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 该特性是是这个版本最大的改变。我们可以看如下类型的文件：</p>
<ul>
<li> 图片</li>
<li>段落格式</li>
<li>字体</li>
</ul>
<p>&#160;&#160; 3.支持Hotmail 帐号的集成</p>
<p>&#160;&#160;&#160;&#160; 该功能最大的亮点是实时接收邮件，而不是原来15分钟的提交时间。同时可以集成任何格式的Hotmail邮件。</p>
<p>&#160;</p>
<p>看看Blackberry官方怎么说。</p>
New]]></description>
			<content:encoded><![CDATA[<p>BIS(Blackberry Internet Service) 2.5版本已经发布。很多公司又有升级了，这得忙煞技术支持了。</p>
<p>看看最新版本有什么新特性：</p>
<ol>
<li>附件按原来格式下载</li>
<li>HTML 邮件消息的阅读</li>
</ol>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 该特性是是这个版本最大的改变。我们可以看如下类型的文件：</p>
<ul>
<li> 图片</li>
<li>段落格式</li>
<li>字体</li>
</ul>
<p>&#160;&#160; 3.支持Hotmail 帐号的集成</p>
<p>&#160;&#160;&#160;&#160; 该功能最大的亮点是实时接收邮件，而不是原来15分钟的提交时间。同时可以集成任何格式的Hotmail邮件。</p>
<p>&#160;</p>
<p>看看Blackberry官方怎么说。</p>
<h3>New features in BlackBerry Internet Service 2.5</h3>
<p>&#160;</p>
<ul>
<li>BlackBerry&#174; Device Software 4.5 </li>
<li>BlackBerry&#174; Internet Service 2.5 </li>
</ul>
<p><strong>Note:</strong> BlackBerry Internet Service 2.5 is available through Asia Pacific service providers.</p>
<hr />
<h4>Details</h4>
<p>This article outlines the main changes to BlackBerry Internet Service 2.5.</p>
<p><strong>Attachment downloading in the native file format</strong></p>
<p>BlackBerry Internet Service subscribers can save, edit, upload, and transfer attachments in their native file formats. For a list of supported native file format attachments, see KB15253. BlackBerry Internet Service 2.5 subscribers can edit native file format attachments using embedded or third-party applications. This feature requires BlackBerry Device Software 4.5.</p>
<p><strong>HTML email message viewing</strong></p>
<p>Subscribers can view HTML email messages on their BlackBerry smartphones, including the following file types:</p>
<ul>
<li>Graphics and photos, including the following:
<ul>
<li>Embedded images and tables </li>
<li>External images </li>
<li>Active hyperlinks </li>
</ul>
</li>
<li>Paragraph formatting, including the following:
<ul>
<li>Numbering </li>
<li>Bulleted lists </li>
<li>Justification </li>
<li>Indentation </li>
</ul>
</li>
<li>Font formatting, including the following:
<ul>
<li>Font type </li>
<li>Color </li>
<li>Size </li>
<li>Effects (italics, bold) </li>
</ul>
</li>
</ul>
<p>This feature requires BlackBerry Device Software 4.5. For instructions on configuring HTML email message viewing and automatic downloading of embedded images and tables, see KB15254.</p>
<p><strong>Note:</strong> For security reasons, externally linked images must be manually retrieved using the menu key.</p>
<p><strong>Important:</strong> HTML content cannot be created when forwarding, replying to, or composing a new email message.</p>
<p><strong>Support for Windows Live&#8482; Hotmail&#174; integration</strong></p>
<p>Integrating a Windows Live Hotmail email account results in the following:</p>
<ul>
<li>Real-time delivery of email messages replaces the standard 15 minute polling interval </li>
<li>No restrictions; all Windows Live Hotmail accounts can be integrated </li>
</ul>
<p><strong>Note:</strong> Some wireless service providers do not support integration with Windows Live Hotmail. Contact your wireless service provider for information on availability.</p>
<p>Windows Live Hotmail email accounts integrated using BlackBerry Internet Service 2.4 or earlier must be deleted and then re-integrated to turn on the enhanced features. For instructions on removing and integrating email accounts to a BlackBerry Internet Service account, see <a href="http://www.blackberry.com/btsc/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=KB04258&amp;sliceId=SAL_Public&amp;dialogID=141072365&amp;stateId=0%200%2066691635">KB04258</a> and <a href="http://www.blackberry.com/btsc/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=KB03087&amp;sliceId=SAL_Public&amp;dialogID=141072648&amp;stateId=0%200%2066691818">KB03087</a>, respectively</p>
<p>Integrated Windows Live Hotmail email accounts must be revalidated every 90 days to continue receiving email messages to the BlackBerry smartphone. Revalidation is required by Windows Live Hotmail for security purposes. Prior to the end of the 90-day window, a message is sent to the BlackBerry smartphone advising you to revalidate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inblackberry.com/web/news/bis-version-25-released.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.905 seconds -->
