<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Main : Unanswered Threads - Java ME &amp; Capuchin</title>
    <link>/community/chinese_forums/java_me?view=discussions&amp;filter=open</link>
    <description>Unanswered Discussion Threads in Java ME &amp; Capuchin</description>
    <language>en</language>
    <pubDate>Thu, 05 Nov 2009 05:34:04 GMT</pubDate>
    <generator>Clearspace 2.5.7 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-11-05T05:34:04Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>J2ME怎么压缩图片？</title>
      <link>http://developer.sonyericsson.com/community/thread/49951</link>
      <description>&lt;!-- [DocumentBodyStart:40cd78f7-4321-49f4-8d90-6952136ccb1e] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;对于特别大的图片，特别是JPG的图片，如何能够通过流的方式或者直接对图片文件的byte[]进行操作从而实现图片的压缩？&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:40cd78f7-4321-49f4-8d90-6952136ccb1e] --&gt;</description>
      <pubDate>Fri, 30 Oct 2009 08:10:24 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49951</guid>
      <dc:date>2009-10-30T08:10:24Z</dc:date>
      <clearspace:dateToText>2 weeks, 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>9</clearspace:messageCount>
      <clearspace:replyCount>8</clearspace:replyCount>
    </item>
    <item>
      <title>Display类的flashBacklight如何使用</title>
      <link>http://developer.sonyericsson.com/community/thread/49917</link>
      <description>&lt;!-- [DocumentBodyStart:72c135b1-bd4b-4144-b4db-19a04af758f8] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Display.getDisplay(miDlet).flashBacklight(&lt;span style="font-family: Courier New;"&gt;int duration&lt;/span&gt;)&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:72c135b1-bd4b-4144-b4db-19a04af758f8] --&gt;</description>
      <pubDate>Fri, 23 Oct 2009 07:08:44 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49917</guid>
      <dc:date>2009-10-23T07:08:44Z</dc:date>
      <clearspace:dateToText>3 weeks, 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>[蓝牙socket问题]PC端的蓝牙socket服务端通讯程序无法接受ＷＭ手机客户端发起的蓝牙连接的问题</title>
      <link>http://developer.sonyericsson.com/community/thread/49771</link>
      <description>&lt;!-- [DocumentBodyStart:eed2fcef-0ffa-4f7b-8a7d-f8f47434582f] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;这是运行在ＰＣ上的蓝牙通讯程序。是作为服务器的，主要是与手机进行蓝牙通讯。 &lt;br/&gt;以下是部分代码： &lt;br/&gt;m_lisSocket =  socket(AF_BTH, SOCK_STREAM, BTHPROTO_RFCOMM); &lt;br/&gt;if (m_lisSocket  ==  INVALID_SOCKET) &lt;br/&gt;{ &lt;br/&gt;return WSAGetLastError (); &lt;br/&gt;} &lt;br/&gt;SOCKADDR_BTH sa;  &lt;br/&gt;memset (&amp;amp;sa, 0, sizeof(sa)); &lt;br/&gt;sa.addressFamily = AF_BTH; &lt;br/&gt;sa.port  = BT_PORT_ANY; &lt;br/&gt;sa.btAddr = lpRadioInfo-&amp;gt;address.ullLong;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if  (bind(m_lisSocket, (SOCKADDR *)&amp;amp;sa, sizeof(sa))) &lt;br/&gt;{ &lt;br/&gt;return  WSAGetLastError(); &lt;br/&gt;} &lt;br/&gt;int iNameLen = sizeof(sa); &lt;br/&gt;if  (getsockname(m_lisSocket, (SOCKADDR *)&amp;amp;sa, &amp;amp;iNameLen)) &lt;br/&gt;{ &lt;br/&gt;return  WSAGetLastError (); &lt;br/&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if (listen (m_lisSocket, SOMAXCONN)) &lt;br/&gt;{  &lt;br/&gt;return WSAGetLastError (); &lt;br/&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;一切都正常，但是accept函数那里检测不到客户端的连接。我写了个Windows  Mobile的手机蓝牙客户端作测试，调用connect函数是得到的错误是10061,connect的时候指定的蓝牙地址应该没错呀？可是就是连不上？  &lt;br/&gt;有做过蓝牙通讯程序的朋友能帮忙解决吗？&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;以下是Windows Mobile蓝牙客户端的部分代码： &lt;br/&gt;GUID  ServerGuid;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if(GetGUID(strGUID, &amp;amp;ServerGuid)) &lt;br/&gt;return -1;  &lt;br/&gt;m_socketClient = socket (AF_BT, SOCK_STREAM, BTHPROTO_RFCOMM);&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if  (m_socketClient == INVALID_SOCKET) &lt;br/&gt;{ &lt;br/&gt;return WSAGetLastError(); &lt;br/&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;SOCKADDR_BTH sa;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;memset (&amp;amp;sa, 0, sizeof(sa));  &lt;br/&gt;sa.addressFamily = AF_BT; &lt;br/&gt;sa.serviceClassId=ServerGuid; &lt;br/&gt;sa.btAddr =  0x003091400130;　　//这里干脆直接把ＰＣ的蓝牙设备地址写上去，应该没错吧&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;//if(iSelectedDeviceIndex==-1) &lt;br/&gt;//{ &lt;br/&gt;//  sa.btAddr=m_saClient.btAddr; &lt;br/&gt;//} &lt;br/&gt;//else &lt;br/&gt;//{ &lt;br/&gt;// for (int iCount =  0  ;(m_pCurrentDevice)&amp;amp;&amp;amp;iCount!=iSelectedDeviceIndex;m_pCurrentDevice=m_pCurrentDevice-&amp;gt;NextDevice,iCount++);  &lt;br/&gt;// sa.btAddr = m_pCurrentDevice-&amp;gt;bthAddress; &lt;br/&gt;//}&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if (connect  (m_socketClient, (SOCKADDR *)&amp;amp;sa, sizeof(sa)) == SOCKET_ERROR) &lt;br/&gt;{  &lt;br/&gt;m_socketClient=INVALID_SOCKET; &lt;br/&gt;int n =  WSAGetLastError();　　　//此处n=10061,connect不成功 &lt;br/&gt;return WSAGetLastError(); &lt;br/&gt;}&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:eed2fcef-0ffa-4f7b-8a7d-f8f47434582f] --&gt;</description>
      <pubDate>Wed, 23 Sep 2009 02:34:54 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49771</guid>
      <dc:date>2009-09-23T02:34:54Z</dc:date>
      <clearspace:dateToText>2 months, 4 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>发帖必看（索尼爱立信论坛操作需知）</title>
      <link>http://developer.sonyericsson.com/community/thread/49506</link>
      <description>&lt;!-- [DocumentBodyStart:e46ced58-8899-4df5-bcf8-f364e6949f26] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;hi,索尼爱立信开发者论坛与大家常用的网站有一些操作上的不同，还请大家注意。&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;在索尼爱立信论坛中，如果想要发帖讨论问题，请选择右边“操作”中的“展开讨论”，如下图红框选中的选项&lt;/p&gt;&lt;p&gt;&lt;a href="http://developer.sonyericsson.com/community/servlet/JiveServlet/showImage/2-127644-1586/1.JPG"&gt;&lt;img alt="1.JPG" class="jive-image" src="http://developer.sonyericsson.com/community/servlet/JiveServlet/downloadImage/2-127644-1586/1.JPG"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;而不要选择“创建文档”选项，因为“创建文档”选项会自动归类成wiki,这样它就不算帖子了，大家参与讨论时也会感到十分的不方便。因此还请注意。如果想讨论或问问题，请使用“展开讨论”选项，同时也欢迎大家使用“创建文档”选项把自己的开发心得写出来&lt;img height="16px" src="http://developer.sonyericsson.com/community/images/emoticons/laugh.gif" width="16px"/&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e46ced58-8899-4df5-bcf8-f364e6949f26] --&gt;</description>
      <pubDate>Mon, 24 Aug 2009 15:05:36 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49506</guid>
      <dc:date>2009-08-24T15:05:36Z</dc:date>
      <clearspace:dateToText>2 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>6</clearspace:messageCount>
      <clearspace:replyCount>5</clearspace:replyCount>
    </item>
    <item>
      <title>為什麼在JP8裡面的檔案讀寫這麼慢？</title>
      <link>http://developer.sonyericsson.com/community/thread/49327</link>
      <description>&lt;!-- [DocumentBodyStart:3b2f89e1-65f3-49be-8cda-dcba00517d12] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;請問一下大家：&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;小弟有一隻在Nokia S40 6th下面跑的很正常的程式，現在有需求要移轉到SE JP8的系統上。&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;程式一開始會讀大約九到十個檔案，並且把部份的內容存到內儲上。&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;在Nokia S40 6th下面，這個動作大約只要5~6秒，可是不知道為什麼？ 在JP8下面，居然要花整整5分鐘來做這件事。&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;不曉得是不是在SE JP8的系統下，檔案的讀寫有特殊的設定要去處理？&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;先謝謝大家了，小弟卡在這邊很久了。&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3b2f89e1-65f3-49be-8cda-dcba00517d12] --&gt;</description>
      <pubDate>Thu, 16 Jul 2009 06:40:20 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49327</guid>
      <dc:date>2009-07-16T06:40:20Z</dc:date>
      <clearspace:dateToText>3 months, 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>Services MXPs 是什么东西？JAVA需要干什么？</title>
      <link>http://developer.sonyericsson.com/community/thread/49235</link>
      <description>&lt;!-- [DocumentBodyStart:3a143e29-6189-4912-a2fb-f602feda22d4] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;    今天看到了Services MXPs这个东西，这到底是干什么用的？以前只接触过J2ME ，对于J2SE我都不是很懂。看到PDF文档上的介绍，感觉这个东西跟J2ME没关系，capuchin.service.generator_4.0.0跟它应该是配套的吧？我还没找到API。。。总之，有谁明白这个Services MXPs有什么用，与J2ME有啥关系，请给小弟解释一下，感激不尽。&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3a143e29-6189-4912-a2fb-f602feda22d4] --&gt;</description>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2023">services</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2023">mxps</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2023">capuchin.service.generator_4.0.0</category>
      <pubDate>Tue, 23 Jun 2009 06:34:04 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49235</guid>
      <dc:date>2009-06-23T06:34:04Z</dc:date>
      <clearspace:dateToText>4 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>J2ME架构</title>
      <link>http://developer.sonyericsson.com/community/thread/49188</link>
      <description>&lt;!-- [DocumentBodyStart:3f722436-00eb-4382-8afe-51098a966453] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;      &lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt; 与J2SE和J2EE相比，J2ME总体的的运行环境和目标更加多样化，但其中每一种产品的用途却更为单一，而且资源限制也更加严格。为了在达到标准化和兼容性的同时尽量满足不同方面的需求，J2ME的架构分为Configuration、Profile和Optional Packages（可选包）。它们的组合取舍形成了具体的运行环境。&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="spctrl"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;　　Configuration主要是对设备纵向的分类，分类依据包括存储和处理能力，其中定义了虚拟机特性和基本的类库。已经标准化的Configuration有- Connected Limited Device Configuration（CLDC）和Connected Device Configuration(CDC)。&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="spctrl"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;　　Profile建立在Configuration基础之上，一起构成了完整的运行环境。它对设备横向分类，针对特定领域细分市场，内容主要包括特定用途的类库和API。CLDC上已经标准化的Profile有Mobile Information Device Profile ( &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://baike.baidu.com/view/50372.htm"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;MIDP&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;)和Information Module Profile（&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://baike.baidu.com/view/67627.htm"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;IMP&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;），而CDC上标准化的Profile有Foundation Profile(&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://baike.baidu.com/view/569248.htm"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;FP&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;)、Personal Basis Profile(PBP)和Personal Profile(&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://baike.baidu.com/view/9522.htm"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;PP&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;)。&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="spctrl"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;　　可选包独立于前面两者提供附加的、模块化的和更为多样化的功能。目前标准化的可选包包括数据库访问、多媒体、&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://baike.baidu.com/view/1028.htm"&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;蓝牙&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"&gt;等等。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3f722436-00eb-4382-8afe-51098a966453] --&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:52:45 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/49188</guid>
      <dc:date>2009-06-09T13:52:45Z</dc:date>
      <clearspace:dateToText>5 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>请教W910串口通信问题</title>
      <link>http://developer.sonyericsson.com/community/thread/48815</link>
      <description>&lt;!-- [DocumentBodyStart:0640a86f-2f1e-408f-b000-04ea7ce91890] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;div class="jive-thread-post-message"&gt;&lt;!-- [DocumentBodyStart:1236ff44-9b50-4bb6-9724-a14e0f29ed58] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;我在W880上用J2ME实现与PC的串口通信，需要PC机发AT*SEJCOMM=1到手机上，手机才能打通串口服务，然后实现手机与PC的正常串口通信。&lt;/p&gt;&lt;p&gt;但是用W910的时候，还没发AT*SEJCOMM=1的时候，手机已经自己找到USB1，AT1串口，PC无论有没有发送AT*SEJCOMM=1，都无法实现与W910的串口通信，请问一下怎么回事？&lt;/p&gt;&lt;p&gt;PS：这个论坛貌似太冷清了，在这里发的问题怎么都没有人回答的？&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0640a86f-2f1e-408f-b000-04ea7ce91890] --&gt;</description>
      <pubDate>Tue, 31 Mar 2009 03:19:53 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/48815</guid>
      <dc:date>2009-03-31T03:19:53Z</dc:date>
      <clearspace:dateToText>7 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>真机调试的视频</title>
      <link>http://developer.sonyericsson.com/community/thread/48655</link>
      <description>&lt;!-- [DocumentBodyStart:2414f98a-4cbd-4600-8ce0-b33be13ffd89] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/11z2ZQ4bDoI"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/11z2ZQ4bDoI" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2414f98a-4cbd-4600-8ce0-b33be13ffd89] --&gt;</description>
      <pubDate>Thu, 12 Mar 2009 07:33:14 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/48655</guid>
      <dc:date>2009-03-12T07:33:14Z</dc:date>
      <clearspace:dateToText>5 months, 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>6</clearspace:messageCount>
      <clearspace:replyCount>5</clearspace:replyCount>
    </item>
    <item>
      <title>problem with access to sim</title>
      <link>http://developer.sonyericsson.com/community/thread/48630</link>
      <description>&lt;!-- [DocumentBodyStart:02744bd3-2d1b-44a2-9314-64568e2c6466] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;hello all, I'm tring to develop a javaME application using SATSA_APDU API to acess sim application toolkit.When running it on the emulator ,it works well,but when downloading jar to the real w595c ,it throws a security exception. I know it's because jar needs a operator domain signature. The problem is I hava got no such a certificate,the appliction is only for develop use,just for fun .Could anyboby give me a solution?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thanks a lot!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:02744bd3-2d1b-44a2-9314-64568e2c6466] --&gt;</description>
      <pubDate>Wed, 11 Mar 2009 02:52:45 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/48630</guid>
      <dc:date>2009-03-11T02:52:45Z</dc:date>
      <clearspace:dateToText>8 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
  </channel>
</rss>

