<?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"
	>
<channel>
	<title>Comments on: Fix for Sony Ericsson phones (MTE Beta)</title>
	<atom:link href="http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/</link>
	<description>Software Developer Tommi Laukkanen</description>
	<pubDate>Fri, 21 Nov 2008 20:37:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Ajay Ramaswamy</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-10527</link>
		<dc:creator>Ajay Ramaswamy</dc:creator>
		<pubDate>Thu, 20 Mar 2008 03:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-10527</guid>
		<description>In case you want to experiment with self signed apps - I found a discussion in german at this url http://www.gpslog.info/viewtopic.php?t=19

I am using MTE on a Nokia 3500 Classic and US Globalsat BT-359 and most things except drawing maps works</description>
		<content:encoded><![CDATA[<p>In case you want to experiment with self signed apps - I found a discussion in german at this url <a href="http://www.gpslog.info/viewtopic.php?t=19" rel="nofollow">http://www.gpslog.info/viewtopic.php?t=19</a></p>
<p>I am using MTE on a Nokia 3500 Classic and US Globalsat BT-359 and most things except drawing maps works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-10031</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Tue, 04 Mar 2008 21:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-10031</guid>
		<description>Hi again,

Originally i had hoped to learn enough about J2ME development to add functionality which would allow me to manage my phones camera and upload content from within the MIDlet. Unfortunately it wasn't to be, and i just couldn't get my head around it in the time available, so i decided to cut my losses and offload a lot of the work to the user and PHP. 

The modified Mobile Trail Explorer runs in the background uploading co-ordinates as frequently as it can. I only added a few lines of code to tell it to open a connection and request a URL. The URL has the lat, lng etc values appended to it and accesses a PHP script which strips them from the address and stores them in a database. 

The user takes photos/video/etc with their phone as normal. When they want to upload one they navigate to a page in their mobiles web browser and proceed to upload it via a simple form. On completion the PHP modifies the database accordingly, so the file is tied to the location. This means the delay between a photo being taken and it being uploaded is noticeable on the map. I can get around that by using the EXIF data to plot it instead of the file upload time, but the problem would still remain for videos (no EXIF :/). 

What's the MM API? It's too late to work with it now, but it sounds like it might have offered a solution to this problem. Now that i think about it, i should append the GPS data to the EXIF while i'm mucking about with it. 

I've come to the conclusion that in an ideal world everything would be done in the MIDlet, but i don't have the know how! 

The code i added will be in my documentation which i'll be sure to link you to when i hand in the project.</description>
		<content:encoded><![CDATA[<p>Hi again,</p>
<p>Originally i had hoped to learn enough about J2ME development to add functionality which would allow me to manage my phones camera and upload content from within the MIDlet. Unfortunately it wasn&#8217;t to be, and i just couldn&#8217;t get my head around it in the time available, so i decided to cut my losses and offload a lot of the work to the user and PHP. </p>
<p>The modified Mobile Trail Explorer runs in the background uploading co-ordinates as frequently as it can. I only added a few lines of code to tell it to open a connection and request a URL. The URL has the lat, lng etc values appended to it and accesses a PHP script which strips them from the address and stores them in a database. </p>
<p>The user takes photos/video/etc with their phone as normal. When they want to upload one they navigate to a page in their mobiles web browser and proceed to upload it via a simple form. On completion the PHP modifies the database accordingly, so the file is tied to the location. This means the delay between a photo being taken and it being uploaded is noticeable on the map. I can get around that by using the EXIF data to plot it instead of the file upload time, but the problem would still remain for videos (no EXIF :/). </p>
<p>What&#8217;s the MM API? It&#8217;s too late to work with it now, but it sounds like it might have offered a solution to this problem. Now that i think about it, i should append the GPS data to the EXIF while i&#8217;m mucking about with it. </p>
<p>I&#8217;ve come to the conclusion that in an ideal world everything would be done in the MIDlet, but i don&#8217;t have the know how! </p>
<p>The code i added will be in my documentation which i&#8217;ll be sure to link you to when i hand in the project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommi Laukkanen</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9887</link>
		<dc:creator>Tommi Laukkanen</dc:creator>
		<pubDate>Fri, 29 Feb 2008 18:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9887</guid>
		<description>@Stuart: Thanks! I always like it when people come up with brilliant ideas using my code. Your solution is very interesting. I would totally see that there would be users for that. It's like a journey diary with photos and videos. 

How did you implement the geo tags for your photos? Did you integrate the MM API in the Mobile Trail Explorer or did you use other app to do that? I'd be very interested in seeing that implementation if you will. That's what GPL is all about after all :)</description>
		<content:encoded><![CDATA[<p>@Stuart: Thanks! I always like it when people come up with brilliant ideas using my code. Your solution is very interesting. I would totally see that there would be users for that. It&#8217;s like a journey diary with photos and videos. </p>
<p>How did you implement the geo tags for your photos? Did you integrate the MM API in the Mobile Trail Explorer or did you use other app to do that? I&#8217;d be very interested in seeing that implementation if you will. That&#8217;s what GPL is all about after all :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9867</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Fri, 29 Feb 2008 15:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9867</guid>
		<description>Hey, i'm a final year multimedia student in London, UK and I'd just like to thank you so much for making your software GPL. It meant i was able to modify and use it in my dissertation. Having never programmed a MIDlet in my life i had a rather ambitious plan to use a GPS enabled mobile device to send live location data and content to a web server. So far i've managed to capture a total of over 6,000 coordinates using your modified software. 

I've just completed a quick demo page to finally release some of these points from their mySQL prison and make them accesible to the general public:

http://stuartgleave.com/fyp/demo/admin/gmapstest_XML.php?file=Uxbridge_Haywards.xml 

In the system the user can see all their logged points and decide which they wish to publish for public access.  

My deadline is in two weeks so there's still time to do some tweaking and hopefully implement a live tracking option. 

I'm writing up the documentation for the project now and i'd really appreciate some feedback from you along the lines of:

- Whether you could see a useful service growing out of this prototype and the kind of people you think might be interested in using it.
- Ideas on how to improve it.
- How you feel about your code being used this way.
- Anything else you'd care to mention.

Thanks again :)</description>
		<content:encoded><![CDATA[<p>Hey, i&#8217;m a final year multimedia student in London, UK and I&#8217;d just like to thank you so much for making your software GPL. It meant i was able to modify and use it in my dissertation. Having never programmed a MIDlet in my life i had a rather ambitious plan to use a GPS enabled mobile device to send live location data and content to a web server. So far i&#8217;ve managed to capture a total of over 6,000 coordinates using your modified software. </p>
<p>I&#8217;ve just completed a quick demo page to finally release some of these points from their mySQL prison and make them accesible to the general public:</p>
<p><a href="http://stuartgleave.com/fyp/demo/admin/gmapstest_XML.php?file=Uxbridge_Haywards.xml" rel="nofollow">http://stuartgleave.com/fyp/demo/admin/gmapstest_XML.php?file=Uxbridge_Haywards.xml</a> </p>
<p>In the system the user can see all their logged points and decide which they wish to publish for public access.  </p>
<p>My deadline is in two weeks so there&#8217;s still time to do some tweaking and hopefully implement a live tracking option. </p>
<p>I&#8217;m writing up the documentation for the project now and i&#8217;d really appreciate some feedback from you along the lines of:</p>
<p>- Whether you could see a useful service growing out of this prototype and the kind of people you think might be interested in using it.<br />
- Ideas on how to improve it.<br />
- How you feel about your code being used this way.<br />
- Anything else you&#8217;d care to mention.</p>
<p>Thanks again :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dona</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9138</link>
		<dc:creator>Dona</dc:creator>
		<pubDate>Sat, 16 Feb 2008 19:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9138</guid>
		<description>So far it works on my phone (SE p990i) yay! Thanks for the cool app, it's just what I need. :)</description>
		<content:encoded><![CDATA[<p>So far it works on my phone (SE p990i) yay! Thanks for the cool app, it&#8217;s just what I need. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommi Laukkanen</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9077</link>
		<dc:creator>Tommi Laukkanen</dc:creator>
		<pubDate>Thu, 14 Feb 2008 20:20:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9077</guid>
		<description>@Jerome: Thanks for kind words. You will have to set the GPS device only once. After you have configured GPS device you can start using the software right after the start. Thanks for pointing out the GPStrack!</description>
		<content:encoded><![CDATA[<p>@Jerome: Thanks for kind words. You will have to set the GPS device only once. After you have configured GPS device you can start using the software right after the start. Thanks for pointing out the GPStrack!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerome</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9056</link>
		<dc:creator>Jerome</dc:creator>
		<pubDate>Thu, 14 Feb 2008 13:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-9056</guid>
		<description>Hi,
Your soft is wonderfull, and

V1.9 works on my Sony P990i !
(Holux M1000 gps)

THANKS for this last update !

I can now save the files in D:/document/
but if I create a special repertory as "MTEdoc"
it will not save.

obs:
connection with bluetooth gps very long:
not auto with opening, you have to search in options etc
and waiting time to recognise gps very long
(and too sensible as it proposes all the neighborhood or street gps)


It would be interesting if you could exchange with
Dana Peters and his GPStrack  
http://qcontinuum.org/index.htm

cause his soft does record not valid tracks with Sony
P990i, but it sends not valid files per mail 
and you maybe know now how to fix this.
His gps connection is very quick and auto at opening.
(Bluelet Bluetooth GUI by Ben Hui) 

Jerome (Paris, France)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Your soft is wonderfull, and</p>
<p>V1.9 works on my Sony P990i !<br />
(Holux M1000 gps)</p>
<p>THANKS for this last update !</p>
<p>I can now save the files in D:/document/<br />
but if I create a special repertory as &#8220;MTEdoc&#8221;<br />
it will not save.</p>
<p>obs:<br />
connection with bluetooth gps very long:<br />
not auto with opening, you have to search in options etc<br />
and waiting time to recognise gps very long<br />
(and too sensible as it proposes all the neighborhood or street gps)</p>
<p>It would be interesting if you could exchange with<br />
Dana Peters and his GPStrack<br />
<a href="http://qcontinuum.org/index.htm" rel="nofollow">http://qcontinuum.org/index.htm</a></p>
<p>cause his soft does record not valid tracks with Sony<br />
P990i, but it sends not valid files per mail<br />
and you maybe know now how to fix this.<br />
His gps connection is very quick and auto at opening.<br />
(Bluelet Bluetooth GUI by Ben Hui) </p>
<p>Jerome (Paris, France)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-8540</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 28 Jan 2008 12:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.substanceofcode.com/2008/01/09/fix-for-sony-ericsson-phones-mte-beta/#comment-8540</guid>
		<description>Hi,

I'am using a SE w800i and after a few seconds I still get the message: Last fix .... X seconds.

Martin</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;am using a SE w800i and after a few seconds I still get the message: Last fix &#8230;. X seconds.</p>
<p>Martin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
