<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: Remote File Management (RFM) on SIMCard</title>
	<atom:link href="http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/feed/" rel="self" type="application/rss+xml" />
	<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/</link>
	<description></description>
	<lastBuildDate>Mon, 21 Dec 2009 03:55:43 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Waqar Ahmed</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1107</link>
		<dc:creator>Waqar Ahmed</dc:creator>
		<pubDate>Tue, 29 Jul 2008 08:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1107</guid>
		<description>8) Thanx Ady... yeah the simulator does&#039;nt support it , and i believe work around will be that to test it on live sim..and on real cell fone...B)  I am going for it,... and if i will be success full that way i will post the solu tion here... so other guy have benifit as well

Regards;
WaqarAhmed</description>
		<content:encoded><![CDATA[<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Thanx Ady&#8230; yeah the simulator does&#8217;nt support it , and i believe work around will be that to test it on live sim..and on real cell fone&#8230;B)  I am going for it,&#8230; and if i will be success full that way i will post the solu tion here&#8230; so other guy have benifit as well</p>
<p>Regards;<br />
WaqarAhmed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adywicaksono</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1100</link>
		<dc:creator>adywicaksono</dc:creator>
		<pubDate>Sat, 19 Jul 2008 09:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1100</guid>
		<description>I suggest you read about CARD Application Toolkit as your reference

Thanks</description>
		<content:encoded><![CDATA[<p>I suggest you read about CARD Application Toolkit as your reference</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waqar Ahmed</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1099</link>
		<dc:creator>Waqar Ahmed</dc:creator>
		<pubDate>Thu, 17 Jul 2008 11:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1099</guid>
		<description>Hi Ady;

Man!.... actaully i want to get two type of information or parameters....
1. BCCH
2. TA -timing Advance

from the applet, before this file reading approach i was trying it through commands; but simulator reponds that &quot;Command is Beyond simulators Capabilty&quot; :(  not even AT commands are supportedby Simulator.... 

So; than i switched to reading thi information through reading GSM Files....
 I got the BCCH values... yet... :) but i dont know which file contains the
value of &quot;timing advance&quot; secondly if some one has some info about decding the values i got from BCCH file and TA.... please share it... that will really be helpful for me....

i saw this code on gemaltos forums but it is of no use...  :(
proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, code, DEV_ID_TERMINAL);
proHdlr.send();

Only code = 0x00 (local info)      -supported
= 0x01 (IMEI)                         -suppotred

code = 0x02 (NMR)                  -Not Supported By Simulator  
code = 0x03 (Date-Time)          --Not Supported By Simulator
code = 0x05 (Timing Advance)   -Not Supported By Simulator

.
.
.My Code................................................  :)  ..............................
Pliz review if its wrong  :o .......
.
ProactiveHandler proHdlr = ProactiveHandler.getTheHandler();
		ProactiveResponseHandler rspHdlr = ProactiveResponseHandler
				.getTheHandler();

		// Send Provide IMEI Information - IMEI Info command to the mobile
//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0x02, DEV_ID_ME); // for NMR

//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0x03, DEV_ID_ME); // for Date &amp; Time

//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0x04, DEV_ID_ME); // for Unknown

		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0x05, DEV_ID_ME); // for Timing Advance
		proHdlr.send();

		// Clear the tempBuffer[] area reserved for Local Information
		Util.arrayFillNonAtomic(tempBuffer, OFFSET_LOCATION_INFO,
				LENGTH_LOCATION_INFO, (byte) 0x00);

		rspHdlr.findAndCopyValue(TAG_LOCATION_INFORMATION, tempBuffer,
				OFFSET_LOCATION_INFO);
		 //~~~~~~~~~~~~~~~~~~~~~DECODER~~~~~~~~~~~~~~~~~~~~~~~~
		decodeLocationIDs(tempBuffer, (short) 10); // just a hex2Asci  convertor..
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~	
//tempBuffer[0] = &#039;Waqar&#039;;

		proHdlr.initDisplayText((byte) 0, DCS_8_BIT_DATA, tempBuffer,
				(short) 0, (short) 12);
		proHdlr.send();

.....................  my code runs f9 but simulator does not support commands as i ststed befroe..... that why i am trying to read files to have info whichis needed....  got Bcch but Timing advanced TA is still which i didnt got.. :(  

if can help or guide or give suggestions; ! :) ..
dath will be great as i am stucked here for since last weak... :(</description>
		<content:encoded><![CDATA[<p>Hi Ady;</p>
<p>Man!&#8230;. actaully i want to get two type of information or parameters&#8230;.<br />
1. BCCH<br />
2. TA -timing Advance</p>
<p>from the applet, before this file reading approach i was trying it through commands; but simulator reponds that &#8220;Command is Beyond simulators Capabilty&#8221; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   not even AT commands are supportedby Simulator&#8230;. </p>
<p>So; than i switched to reading thi information through reading GSM Files&#8230;.<br />
 I got the BCCH values&#8230; yet&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but i dont know which file contains the<br />
value of &#8220;timing advance&#8221; secondly if some one has some info about decding the values i got from BCCH file and TA&#8230;. please share it&#8230; that will really be helpful for me&#8230;.</p>
<p>i saw this code on gemaltos forums but it is of no use&#8230;  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, code, DEV_ID_TERMINAL);<br />
proHdlr.send();</p>
<p>Only code = 0&#215;00 (local info)      -supported<br />
= 0&#215;01 (IMEI)                         -suppotred</p>
<p>code = 0&#215;02 (NMR)                  -Not Supported By Simulator<br />
code = 0&#215;03 (Date-Time)          &#8211;Not Supported By Simulator<br />
code = 0&#215;05 (Timing Advance)   -Not Supported By Simulator</p>
<p>.<br />
.<br />
.My Code&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;<br />
Pliz review if its wrong  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' />  &#8230;&#8230;.<br />
.<br />
ProactiveHandler proHdlr = ProactiveHandler.getTheHandler();<br />
		ProactiveResponseHandler rspHdlr = ProactiveResponseHandler<br />
				.getTheHandler();</p>
<p>		// Send Provide IMEI Information &#8211; IMEI Info command to the mobile<br />
//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0&#215;02, DEV_ID_ME); // for NMR</p>
<p>//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0&#215;03, DEV_ID_ME); // for Date &amp; Time</p>
<p>//		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0&#215;04, DEV_ID_ME); // for Unknown</p>
<p>		proHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0&#215;05, DEV_ID_ME); // for Timing Advance<br />
		proHdlr.send();</p>
<p>		// Clear the tempBuffer[] area reserved for Local Information<br />
		Util.arrayFillNonAtomic(tempBuffer, OFFSET_LOCATION_INFO,<br />
				LENGTH_LOCATION_INFO, (byte) 0&#215;00);</p>
<p>		rspHdlr.findAndCopyValue(TAG_LOCATION_INFORMATION, tempBuffer,<br />
				OFFSET_LOCATION_INFO);<br />
		 //~~~~~~~~~~~~~~~~~~~~~DECODER~~~~~~~~~~~~~~~~~~~~~~~~<br />
		decodeLocationIDs(tempBuffer, (short) 10); // just a hex2Asci  convertor..<br />
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br />
//tempBuffer[0] = &#8216;Waqar&#8217;;</p>
<p>		proHdlr.initDisplayText((byte) 0, DCS_8_BIT_DATA, tempBuffer,<br />
				(short) 0, (short) 12);<br />
		proHdlr.send();</p>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;  my code runs f9 but simulator does not support commands as i ststed befroe&#8230;.. that why i am trying to read files to have info whichis needed&#8230;.  got Bcch but Timing advanced TA is still which i didnt got.. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   </p>
<p>if can help or guide or give suggestions; ! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ..<br />
dath will be great as i am stucked here for since last weak&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ady wicaksono</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1098</link>
		<dc:creator>ady wicaksono</dc:creator>
		<pubDate>Thu, 17 Jul 2008 06:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1098</guid>
		<description>great :)

if file is transparent, obviously readRecord() will throw exception :)</description>
		<content:encoded><![CDATA[<p>great <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>if file is transparent, obviously readRecord() will throw exception <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waqar Ahmed</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1097</link>
		<dc:creator>Waqar Ahmed</dc:creator>
		<pubDate>Thu, 17 Jul 2008 05:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1097</guid>
		<description>Thanx! for your response....</description>
		<content:encoded><![CDATA[<p>Thanx! for your response&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waqar Ahmed</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1096</link>
		<dc:creator>Waqar Ahmed</dc:creator>
		<pubDate>Thu, 17 Jul 2008 05:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1096</guid>
		<description>well i found it ... lol... i done it through read Binary method...[;)]</description>
		<content:encoded><![CDATA[<p>well i found it &#8230; lol&#8230; i done it through read Binary method&#8230;[;)]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adywicaksono</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1095</link>
		<dc:creator>adywicaksono</dc:creator>
		<pubDate>Wed, 16 Jul 2008 13:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1095</guid>
		<description>Hi ahmed

Have you select the file properly?
what&#039;s the file type? linier, record file?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi ahmed</p>
<p>Have you select the file properly?<br />
what&#8217;s the file type? linier, record file?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waqar Ahmed</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1094</link>
		<dc:creator>Waqar Ahmed</dc:creator>
		<pubDate>Wed, 16 Jul 2008 12:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1094</guid>
		<description>hi ; i am exploring the file structure of SIM right now i wanna read 

MF 3F00 --&gt; DF GSM --&gt;BCCH which contains RX vals through a java card gemalto applet can some body assist me; my code throws exception on
	
        gsmFile.readRecord((short) 1, (byte) 0x04, (short) 0, tempBuffer,
					(short) 0, (short) 1);

it throws ISOException here....  any help will be appriciateable...</description>
		<content:encoded><![CDATA[<p>hi ; i am exploring the file structure of SIM right now i wanna read </p>
<p>MF 3F00 &#8211;&gt; DF GSM &#8211;&gt;BCCH which contains RX vals through a java card gemalto applet can some body assist me; my code throws exception on</p>
<p>        gsmFile.readRecord((short) 1, (byte) 0&#215;04, (short) 0, tempBuffer,<br />
					(short) 0, (short) 1);</p>
<p>it throws ISOException here&#8230;.  any help will be appriciateable&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samir</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1093</link>
		<dc:creator>Samir</dc:creator>
		<pubDate>Mon, 14 Jul 2008 08:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1093</guid>
		<description>Hi,

We are currently doing research at Stanford on remote file management using SIM OTA. This was very helpful for us. We still have some questions though so we wish if the author of this can send us a reply to samirsel@stanford.edu so that we can further communicate with him. Compensation is surely not a problem.

Regards,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We are currently doing research at Stanford on remote file management using SIM OTA. This was very helpful for us. We still have some questions though so we wish if the author of this can send us a reply to <a href="mailto:samirsel@stanford.edu">samirsel@stanford.edu</a> so that we can further communicate with him. Compensation is surely not a problem.</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muhnur</title>
		<link>http://adywicaksono.wordpress.com/2008/06/21/remote-file-management-rfm-on-simcard/#comment-1087</link>
		<dc:creator>muhnur</dc:creator>
		<pubDate>Thu, 26 Jun 2008 09:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://adywicaksono.wordpress.com/?p=146#comment-1087</guid>
		<description>hore nomer 1... :)
ngga paham aku ilmunya terlalu tinggi tulisan sampeyan...</description>
		<content:encoded><![CDATA[<p>hore nomer 1&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
ngga paham aku ilmunya terlalu tinggi tulisan sampeyan&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
