<?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</title>
    <link>/community/java_me?view=discussions&amp;filter=open</link>
    <description>Unanswered Discussion Threads in Java ME</description>
    <language>en</language>
    <pubDate>Fri, 20 Nov 2009 21:59:48 GMT</pubDate>
    <generator>Clearspace 2.5.7 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-11-20T21:59:48Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>KXML problem on sony ericsson</title>
      <link>http://developer.sonyericsson.com/community/thread/50119</link>
      <description>&lt;!-- [DocumentBodyStart:a89d8782-e61c-4bad-949e-95d9fcad01cc] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hi,&lt;br/&gt; &lt;br/&gt; i'm using KXML to parse a XML file. On other devices (e.g. nokia) it works perfectly but on Sony Ericsson (e.g. K550) i get an parsing error with the same code.&lt;br/&gt; &lt;br/&gt; XML structure:&lt;/p&gt;&lt;!--[CodeBlockStart:63595d57-d2c8-485f-b89c-48b98a1ca4bc]--&gt;&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-xml"&gt;&lt;span class="jive-xml-tag"&gt;&amp;lt;Plan version="1"&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;task name="Call Marry" type="1"&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;description&amp;gt;&lt;/span&gt;The description about the call&lt;span class="jive-xml-tag"&gt;&amp;lt;/description&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;field name="Answers"&amp;gt;&lt;/span&gt;&lt;span class="jive-xml-tag"&gt;&amp;lt;/field&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;/task&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;task name="Buy food" type="1"&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;description&amp;gt;&lt;/span&gt;The description about buying food&lt;span class="jive-xml-tag"&gt;&amp;lt;/description&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;field name="Problems"&amp;gt;&lt;/span&gt;&lt;span class="jive-xml-tag"&gt;&amp;lt;/field&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;/task&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;task name="Meeting with John" type="2"&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;description&amp;gt;&lt;/span&gt;The description about the meeting&lt;span class="jive-xml-tag"&gt;&amp;lt;/description&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;field name="Topics"&amp;gt;&lt;/span&gt;&lt;span class="jive-xml-tag"&gt;&amp;lt;/field&amp;gt;&lt;/span&gt;
        &lt;span class="jive-xml-tag"&gt;&amp;lt;field name="Notes"&amp;gt;&lt;/span&gt;&lt;span class="jive-xml-tag"&gt;&amp;lt;(field&amp;gt;&lt;/span&gt;
    &lt;span class="jive-xml-tag"&gt;&amp;lt;/task&amp;gt;&lt;/span&gt;
&lt;span class="jive-xml-tag"&gt;&amp;lt;/Plan&amp;gt;&lt;/span&gt;



&lt;/code&gt;&lt;/pre&gt;&lt;!--[CodeBlockEnd:63595d57-d2c8-485f-b89c-48b98a1ca4bc]--&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Parsing Code:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:cc312a28-7bc9-4181-a461-1ed3c325e5b5]--&gt;&lt;pre class="jive-pre"&gt;&lt;code class="jive-code jive-java"&gt;&lt;font color="navy"&gt;&lt;b&gt;do&lt;/b&gt;&lt;/font&gt; &lt;font color="navy"&gt;{&lt;/font&gt;
      &lt;font color="navy"&gt;&lt;b&gt;if&lt;/b&gt;&lt;/font&gt; (parser.getAttributeValue(POSITION_TYPE).equals(TYPE_ONE_FIELD)) &lt;font color="navy"&gt;{&lt;/font&gt; 
                String name = parser.getAttributeValue(FIRST_VALUE);
                String type = parser.getAttributeValue(Second_VALUE);
                parser.nextTag();
                String description = parser.nextText();
                parser.nextTag();
                String textfieldname = parser.getAttributeValue(FIRST_VALUE);           
                parser.nextTag();
                parser.nextTag();
                parser.nextTag();
                TypeOnefield t = &lt;font color="navy"&gt;&lt;b&gt;new&lt;/b&gt;&lt;/font&gt; TypeOnefield(name, type, description, textfieldname);
                tasks.addElement(t);
     &lt;font color="navy"&gt;&lt;b&gt;else&lt;/b&gt;&lt;/font&gt; &lt;font color="navy"&gt;&lt;b&gt;if&lt;/b&gt;&lt;/font&gt;(parser.getAttributeValue(POSITION_TYPE).equals(TYPE_TWO_FIELD))&lt;font color="navy"&gt;{&lt;/font&gt;
                String name = parser.getAttributeValue(FIRST_VALUE);
                String type = parser.getAttributeValue(Second_VALUE);
                parser.nextTag();
                String description = parser.nextText();
                parser.nextTag();
                String textfieldname1 = parser.getAttributeValue(FIRST_VALUE);
                parser.nextTag();
                parser.nextTag();
                String textfieldname2 = parser.getAttributeValue(FIRST_VALUE);
                parser.nextTag();
                parser.nextTag();
                parser.nextTag();
                TypeTwofield t = &lt;font color="navy"&gt;&lt;b&gt;new&lt;/b&gt;&lt;/font&gt; TypeTwofield(name, type, description, textfieldname1, textfieldname2);
                tasks.addElement(t);
     &lt;font color="navy"&gt;}&lt;/font&gt;
&lt;font color="navy"&gt;}&lt;/font&gt; &lt;font color="navy"&gt;&lt;b&gt;while&lt;/b&gt;&lt;/font&gt; (!parser.getName().equals(&lt;font color="red"&gt;"Plan"&lt;/font&gt;));
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&lt;/code&gt;&lt;/pre&gt;&lt;!--[CodeBlockEnd:cc312a28-7bc9-4181-a461-1ed3c325e5b5]--&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;With the parser i get the information out of the XML file and store it in the tasks vector. I return the vector later on to the view class and there it will be displayed on the phone (or not if i get a empty vector back...).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When i run it in the Sony Ericsson emulator it works..but on the phones i get a Nullpointerexception (because the view gets no data from the parser...). But whats wrong with my parser code and why does it work on some other brands?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I hope you can help me...I'm running out of ideas.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Matze&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a89d8782-e61c-4bad-949e-95d9fcad01cc] --&gt;</description>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">xml</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">j2me</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">parser</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">emulator</category>
      <pubDate>Fri, 20 Nov 2009 21:59:48 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50119</guid>
      <dc:date>2009-11-20T21:59:48Z</dc:date>
      <clearspace:dateToText>1 day, 10 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>Questions regarding MMAPI Documentation and Implementation</title>
      <link>http://developer.sonyericsson.com/community/thread/50114</link>
      <description>&lt;!-- [DocumentBodyStart:18d1daba-cf53-4467-9d05-101e66fc4ef5] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;In the standard &lt;em&gt;Java™ Platform, Micro Edition, CLDC – MIDP 2&lt;/em&gt; documentation on page's 72 and 73 with paragraph : &lt;em&gt;Playing media files with MMAPI using progressive download&lt;/em&gt; I read the following sentences :&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;To make use of progressive download in a player application, the createPlayer method must be&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;invoked with a file scheme locator string as parameter, for example:&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Manager.createPlayer(file:///c:/sounds/song.mp3);&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Unfortunately I haven't found any documentation giving a good example of this, I did found an article on this site itself with some code snippets and some global explanation. Is there any chance that "tutorial" will be expanded into something more usefull ?&lt;/p&gt;&lt;p&gt;Also, is my understanding correct that you can use one single Player connected to an audio file and in the meantime downloading and expanding this same file ? Or are multiple sound files and Players involved ? That I cannot establish from the aforemntioned "tutorial" and/or the documentation...&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also the next sentence is used in the documentation :&lt;/p&gt;&lt;p&gt;&lt;em&gt;Note: from JP-7 phones, progressive download according to 3GPP TS 26.234 45.3.0 is supported both&lt;br/&gt;for http download and InputStream via JSR-135.&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ok, so an InputStream or a http adress can be used instead of the "file" locator... But, is this only valid for 3GPP (so no MP3, or AAC)... So actually this is more of a video stream than an audio stream right ?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As a last point, is there any SE MMAPI implementation which can play AAC streams ?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance for any help, tips or pointers !&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:18d1daba-cf53-4467-9d05-101e66fc4ef5] --&gt;</description>
      <pubDate>Fri, 20 Nov 2009 10:39:15 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50114</guid>
      <dc:date>2009-11-20T10:39:15Z</dc:date>
      <clearspace:dateToText>1 day, 21 hours ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>Set the width/height of video on SE Satio</title>
      <link>http://developer.sonyericsson.com/community/thread/50113</link>
      <description>&lt;!-- [DocumentBodyStart:e9f31c38-8fce-4c2f-a97e-530336134152] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Is there any way to set the video width and height when playing a video on a Canvas?&lt;br/&gt; &lt;br/&gt; This is a fairly simple task on other phones:&lt;br/&gt;     videoControl.setDisplaySize(width,height);&lt;br/&gt; &lt;br/&gt; But SE Satio seems to ignore it.&lt;br/&gt; &lt;br/&gt; Anybody else has similar difficulties?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e9f31c38-8fce-4c2f-a97e-530336134152] --&gt;</description>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">mmapi</category>
      <category domain="http://developer.sonyericsson.com/community/tags?containerType=?14&amp;container=2001">multimedia</category>
      <pubDate>Fri, 20 Nov 2009 08:55:17 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50113</guid>
      <dc:date>2009-11-20T08:55:17Z</dc:date>
      <clearspace:dateToText>1 day, 23 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>[K800i] Player.getDuration() maxed out ?</title>
      <link>http://developer.sonyericsson.com/community/thread/50106</link>
      <description>&lt;!-- [DocumentBodyStart:4b49ab93-4632-4a17-a8db-7fee72aec29e] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have been feeding a Player a MP3 chunk :&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;ByteArrayInputStream is = new ByteArrayInputStream(passedData);&lt;br/&gt;Player newPlayer = Manager.createPlayer(is, "audio/mpeg");&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Which is working pretty good, the problem is that when I try to use getDuration() method of the Player class on one of those objects, for example :&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;long clipLength = playingPlayer.getDuration()/1000;   //in milliseconds&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I will get a maximum value of 4 seconds...&lt;/p&gt;&lt;p&gt;If I use a 1 second chunk of MP3 data, it will correctly return 1 second...&lt;/p&gt;&lt;p&gt;Same for 2, 3 and 4 seconds... After that it will always return 4 seconds...&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this some kind of known bug ?&lt;/p&gt;&lt;p&gt;Is there a workaround ?&lt;/p&gt;&lt;p&gt;Am I doing something stupid ?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tested it on several nokia's (N95, N97, 5800XM) and also on SE's own emulators and it works fine there &lt;img height="16px" src="http://developer.sonyericsson.com/community/images/emoticons/sad.gif" width="16px"/&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4b49ab93-4632-4a17-a8db-7fee72aec29e] --&gt;</description>
      <pubDate>Tue, 17 Nov 2009 16:19:49 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50106</guid>
      <dc:date>2009-11-17T16:19:49Z</dc:date>
      <clearspace:dateToText>1 day, 17 hours ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>Devices that is possible to get cell id</title>
      <link>http://developer.sonyericsson.com/community/thread/50105</link>
      <description>&lt;!-- [DocumentBodyStart:c3e61ae7-f508-4e79-88b1-d3c6dfe92f13] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello again,&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So...in all the devices that use JP 3, 4, 5,and 6 it's impossible to use:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;System.getProperty(cellID)&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And in all the devices that use JP 8 it's possible to use this code...&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My question is.... In devices that use JP 7... how can i know if the JP is aboce or over 7.3?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Becouse in the tab "Phones -&amp;gt; Java me" i can see only JP 3 4 5 6 7 8 and not 7.3...&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.. and sorry again about my bad english&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c3e61ae7-f508-4e79-88b1-d3c6dfe92f13] --&gt;</description>
      <pubDate>Tue, 17 Nov 2009 15:56:36 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50105</guid>
      <dc:date>2009-11-17T15:56:36Z</dc:date>
      <clearspace:dateToText>3 days, 19 hours ago</clearspace:dateToText>
      <clearspace:messageCount>9</clearspace:messageCount>
      <clearspace:replyCount>8</clearspace:replyCount>
    </item>
    <item>
      <title>Get cellid mcc mnc and lac on k750i</title>
      <link>http://developer.sonyericsson.com/community/thread/50104</link>
      <description>&lt;!-- [DocumentBodyStart:0d4f69eb-883e-4595-b624-44a9f0ed4922] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i'm brazilian... sorry for my bad english...&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can i get this informations from the Sony ericsson K750i?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;System.getProperty("com.sonyericsson.net.cellid");&lt;/p&gt;&lt;p&gt;System.getProperty("com.sonyericsson.net.mnc");&lt;br/&gt;System.getProperty("com.sonyericsson.net.mcc");&lt;br/&gt;System.getProperty("com.sonyericsson.net.lac");&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;this 4 are returning null....&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to do something before do this commands? like..open an connection?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!!!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0d4f69eb-883e-4595-b624-44a9f0ed4922] --&gt;</description>
      <pubDate>Tue, 17 Nov 2009 13:22:20 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50104</guid>
      <dc:date>2009-11-17T13:22:20Z</dc:date>
      <clearspace:dateToText>4 days, 17 hours ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>Problem in socket conneciton</title>
      <link>http://developer.sonyericsson.com/community/thread/50096</link>
      <description>&lt;!-- [DocumentBodyStart:24c07d55-63a4-48ff-8d84-be802de4e2d3] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hi all., &lt;br/&gt; &lt;br/&gt; &lt;br/&gt; &lt;br/&gt; I am trying to connect to my server(java) using sockets. Am able to connect to the server, but am unable to send/Rcv data. &lt;br/&gt; &lt;br/&gt; My client (mobile) sample code &lt;br/&gt; .&lt;br/&gt; .&lt;br/&gt; .&lt;br/&gt; String connectString = "socket://example.aeroalias.com:10003";&lt;br/&gt; StreamConnection streamConnection = (StreamConnection) Connector.open(connectString);&lt;br/&gt; OutputStream os = streamConnection.openOutputStream();&lt;br/&gt; Calendar cal = Calendar.getInstance();&lt;br/&gt; String str = cal.getTime() + "";&lt;br/&gt; byte[] toWrite = str.getBytes();&lt;br/&gt; for (int i = 0; i &amp;lt; str.length(); i++) {&lt;br/&gt; os.write(toWrite[i]);&lt;br/&gt; }          &lt;br/&gt; .&lt;br/&gt; .&lt;br/&gt; &lt;br/&gt; Am unable to send te time to my server., &lt;br/&gt; My server is running and am able to connect with my emulator., &lt;br/&gt; Please help me out!!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:24c07d55-63a4-48ff-8d84-be802de4e2d3] --&gt;</description>
      <pubDate>Mon, 16 Nov 2009 07:48:31 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50096</guid>
      <dc:date>2009-11-16T07:48:31Z</dc:date>
      <clearspace:dateToText>6 days, 38 minutes ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>Satio M3G Benchmark, FPC Bench, framerate cap.</title>
      <link>http://developer.sonyericsson.com/community/thread/50092</link>
      <description>&lt;!-- [DocumentBodyStart:5b865c3d-6a91-4aeb-b40e-be52cb76c1f8] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I noticed a strange behaviuour with FPC Bench rendering M3G scenes...&lt;/p&gt;&lt;p&gt;I noticed that Satio renders 8 different scenes at the same framerate:&lt;/p&gt;&lt;p&gt;Render 1= 21&lt;br/&gt;Render 2= 21&lt;br/&gt;Render 3= 21&lt;br/&gt;Render 4= 21&lt;br/&gt;Render 5= 19&lt;br/&gt;Render 6= 19&lt;br/&gt;Render 7= 20&lt;br/&gt;Render 8= 19&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The first two scene is a simple rotating cube and the others one is m3g scene with different complexity...&lt;/p&gt;&lt;p&gt;It seems that there is some framerate cap, but I can't understand why...&lt;/p&gt;&lt;p&gt;On others phone we have a really different results between various sceens because of the different complexity of the scenes,&lt;/p&gt;&lt;p&gt;why on satio we see this framerate?&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hope to see a good reply...&lt;/p&gt;&lt;p&gt;Thanks for your good piece of work.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5b865c3d-6a91-4aeb-b40e-be52cb76c1f8] --&gt;</description>
      <pubDate>Sun, 15 Nov 2009 14:51:47 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50092</guid>
      <dc:date>2009-11-15T14:51:47Z</dc:date>
      <clearspace:dateToText>6 days, 17 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>Canvas Painting after communication is misbehaving</title>
      <link>http://developer.sonyericsson.com/community/thread/50080</link>
      <description>&lt;!-- [DocumentBodyStart:82ad41dc-7dd2-417e-a629-3f817cc87a0a] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;&lt;!----&gt;&lt;p class="MsoNormal"&gt;In some of the sony phone W980, T700, C902, G705 while doing communication with a Midlet applicaiton, after getting response the next screen is not being displayed.&lt;/p&gt;&lt;p class="MsoNormal" style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt;After initializing communication from the Midlet application there is something unusual happens such that the Display object of Midlet gets disturbed. The application can not continue painting using Graphics available from current Display object and hence can not display the next screen.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt;However &lt;/span&gt;&lt;/p&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size: 10pt; font-family: Wingdings; color: navy;"&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt;The Display object still responds to the events (That is triggered by key presses on the keyboard). &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt;Only the top of the canvas is redrawn where the network icon is displayed.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: navy;"&gt;When the Midlet application gets callback of showNotify() (after doing mini/maximize application or flip close/open) the Display / Graphics object gets refreshed (corrected) and it is able to display the screen correctly.&lt;/span&gt;&lt;/p&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:82ad41dc-7dd2-417e-a629-3f817cc87a0a] --&gt;</description>
      <pubDate>Fri, 13 Nov 2009 11:59:43 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50080</guid>
      <dc:date>2009-11-13T11:59:43Z</dc:date>
      <clearspace:dateToText>1 week, 1 day ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
    <item>
      <title>collision between mesh?</title>
      <link>http://developer.sonyericsson.com/community/thread/50079</link>
      <description>&lt;!-- [DocumentBodyStart:7bb53507-2dc6-49e3-84a1-ed7361aa49f1] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;hi All,im really new to M3G, but i wanna learn it. and i've been having some problems with collision detection between mesh can some1 show me a simple example on how to do this. im using retained mode. &lt;img height="16px" src="http://developer.sonyericsson.com/community/images/emoticons/plain.gif" width="16px"/&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please, atleast a sample code will do....im trying to do the rayintersection thing, but to no avail.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7bb53507-2dc6-49e3-84a1-ed7361aa49f1] --&gt;</description>
      <pubDate>Fri, 13 Nov 2009 08:14:49 GMT</pubDate>
      <author>developerworldwatch@kpi-consulting.net</author>
      <guid>http://developer.sonyericsson.com/community/thread/50079</guid>
      <dc:date>2009-11-13T08:14:49Z</dc:date>
      <clearspace:dateToText>1 week, 2 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
    </item>
  </channel>
</rss>

