Jason Delport Home

Blog Feed Blog Feed

Paxmodept Website Paxmodept Website

Contact Information


Jason Delport

+44(0)7931445721

jason@paxmodept.com

Download vCard


Mobile Portal


~mobile.paxmodept.com~
QR Code

Blog Archive & Stats


MonthPosts
June 2010(2)
May 2010(1)
April 2010(4)
February 2010(1)
January 2010(2)
December 2009(1)
November 2009(3)
October 2009(3)
September 2009(7)
August 2009(1)
July 2009(2)
June 2009(4)
May 2009(7)
April 2009(5)
March 2009(10)
February 2009(10)
January 2009(19)
December 2008(11)
November 2008(16)
October 2008(28)
September 2008(7)
August 2008(19)
July 2008(17)
June 2008(13)
May 2008(11)
April 2008(11)
March 2008(18)
February 2008(17)
January 2008(19)
December 2007(8)
November 2007(29)
October 2007(38)
September 2007(30)
August 2007(50)
July 2007(46)
June 2007(38)
May 2007(20)
April 2007(16)
March 2007(35)
February 2007(28)
January 2007(36)
December 2006(26)
November 2006(42)
October 2006(39)
September 2006(26)
August 2006(16)
July 2006(4)
Total796


© 2010 Jason Delport

The Future of the Mobile Internet

Wednesday's post (along with Enrique's comment) got me doing even more thinking about the future of the mobile internet. What we need is a courageous browser manufacturer to take a leap into the brave unknown like MS did with the XMLHttpRequest object and create a DeviceRequest object. This object should allow you to query local device features/functions via a standardized JavaScript API which returns either a XML document or a JSON object array by default. Something like the below code example. Now that would be *very* cool and it doesn't even sound that difficult!

var user_contacts;
var device_request = new DeviceRequest();
device_request.get("CONTACTS", "") = function () {
user_contacts = eval("(" + device_request.response + ")")
}
};



~Comments~

Peter Cranstone declares...

It's already been done... www.5o9inc.com We have a set of Open API's which can link your program and any OS API and then become part of the browser httprequest headers. It wasn't that difficult, the hard part was the contextual menus which are added to the browser menu via web services.

Date Fri, 27 Jul 2007 at 19:07:04

Jason declares...

Hi Peter,

I am advocating an open, non-proprietary, standards based approach to accessing device information through known and accepted web development technologies like HTML, DOM and JavaScript. While your solution is certainly interesting it doesn't meet those criteria. I want someone like WebKit or Opera to do this and then bring it to the W3C for standardisation. In order to be truly effective it must be universally and consistently implemented. If not, we just face more annoying and detrimental fragmentation.

Date Fri, 27 Jul 2007 at 20:58:07

Steven Wang declares...

HMM...sounds to me , that is at least 3 years after, that what you hope is finally adopted and implemented, Jason

Date Sun, 12 Aug 2007 at 04:17:46

deeks declares...

Pls.. tell me about notes on future of mobile internet

Date Tue, 31 Mar 2009 at 12:18:03

~Add Comment~

Name
Email
Website
Website
Website
Comment (No HTML)
Human? Human?