Mastering Ext.Direct, Part 1

This is an archived post from the ExtJS era — the code may be obsolete, but the principles often still apply.

Code in this post can be obsolete, however, principles and theory may still apply.

Preface

My first idea how to the name this article was "Ext.Direct for Dummies" just because I feel as a one as long as Ext.Direct is concerned. I've first heard about it during Ext Conference in April and I think that it is one of the brightest ideas of Ext 3.x release. Nevertheless, I had no time do dig into into it and to understand the concepts fully. Now I've decided to take a journey of discovering what is under hood, how to setup client and server side and how to use Ext.Direct effectively in applications. If you want, I invite you to travel with me.

Who is this article for

It is for developers who are familiar (at least) with basic javascript and Ext object oriented programming, who are able to setup a web page and have it running from a http server and who can code in a server-side programming language. (I will use PHP in this article so PHP developers will have a slight advantage.)

What is Ext.Direct anyway

Rich Internet Applications (RIA) consist of two parts: client side and server side. Client cannot call server functions directly but sends requests, server processes them calling the appropriate functions and returns results back to client. Let's say we have a server side class Car that has methods start, go and stop. From the client viewpoint, we need to ask server: Please, start the Car, then go with it and then stop it. Now, imagine that we could directly call

and these would call server side methods of server side class Car. Nice, isn't it? You need to remember only one set of class names and their methods, code is neat and less bug prone. And that is what Ext.Direct does. You export list of server side classes and their methods that should be made available for client to call and Ext.Direct takes care of the rest so that you can really use Car.start() in your code.

What we need

  1. a working http server we have an access to. It can be installed on the local computer but it must be present. file:///something links will not work
  2. a server side (scripting) language enabled in the above server. If you will use PHP, you need 5+ version to take advantage of ReflectionClass
  3. Ext JS 3.0.0 library or latest Ext version built from SVN, if you have purchased Ext Premium Membership
  4. Ext.Direct Pack
  5. Firefox with Firebug installed
  6. If you use PHP, FirePHP is strongly recommended

Initial setup

  1. create directory direct under your http server document root. Name does not matter in fact but I will use direct as the root for testing in this article.
  2. extract ExtJS into ext subdirectory under direct
  3. extract content of php subdirectory from Ext.Direct Pack under direct
  4. extract content of FirePHPCore-x.x.x into firephp subdirectory under direct

At this point, your direct directory listing should read the following:

The first test

We still need to do some work before we can see it running. First, create config.php file with the following content:We also need index.php so we have something to run:

Ext.Direct Pack comes with example PHP classes (Echo, Exception, File and Time) and with api.php file. You can leave classes untouched for the moment but edit api.php to read the following:

So far, so good... Now you can navigate to http://yourserver/direct/index.php and if everything went right you will see the blank page and no errors in Firebug. Open Firebug console and type the following:

You can see that request is sent to server:

and that response comes back:

You can try other classes and methods:

and you can also put fb($someVariable) statement in various places of php code if you want to know what's going on here and there.

Conclusion

We have set up very minimum of Ext.Direct server and client side. The main purpose of this part is to get acquainted with basic components of this technology.

Mastering Ext.Direct, Part 2 >>>

17 comments

  1. MiguelSeptember 7, 2009archive
    Thank you very much for this introduction to Ext.Direct. As a debug tool, maybe Formaldehyde is best suited. Taken from the google project page:
  2. Aaron ConranSeptember 7, 2009archive
    Saki - Thanks for the great walk through introducing people to Ext.Direct and how to get it setup. I look forward to seeing the additional parts of the series!
  3. Salih GedikSeptember 13, 2009archive
    Thanks for article. It's great... I have ideas about Ext.Direct now.
  4. LoreZyraSeptember 20, 2009archive
    Hmm, Seems to be a cool idea... But aside from removing some of the coding load off the client-side, I don't fully see how this will make my application any better or easier to code... I like the idea (as the name implies) that I can make direct server-side function calls from the client. But how does this speed the application up? Essentially, I'm looking for the value of this EXTjs 3.x feature. If it does indeed make coding easier or my application faster (for the client-side), then I will certainly look to update my apps...
  5. SakiSeptember 20, 2009archive
    I'm not sure if Ext.Direct speeds up a running application, however, it speeds up <i>development</i> of applications tremendously. Main points: - same API client and server side - less typing - overhead code is now in Ext - less typing also means less (typo) bugs - less typing also means shorter, simpler application
  6. prographicaOctober 16, 2009archive
    Hi, I found your article while I look for something I can explain Ext.Direct easily to my members of company. I want to translate this article and I want to put translated article with your credit on my blog and using it for lecture. Can I do it?
  7. CameronOctober 28, 2009archive
    Thank you for this sir!
  8. Mike BevzMarch 23, 2010archive
    Hey Saki, Thanks for very interesting and useful post. I've got a question in regards to Ext.direct. I'm trying to wire Ext.form with Ext.direct. Everything seems fine, except Ext does not like results returned by Ext.direct. Form looks as follows: var fp = new Ext.form.FormPanel({ api: { submit: NRemote.UserService.addPic }, fileUpload: true, width: 500, frame: true, .... buttons: [{ text: 'Save', handler: function(){ if(fp.getForm().isValid()){ fp.getForm().submit({ waitMsg: 'Uploading...', success: function(fp, o){ msg('Success', 'Processed file
  9. Mike BevzMarch 23, 2010archive
    "'+o.result.filename+'" on the server'); }, failure: function(fp, o){ msg('Error', 'Error:'+o.result.msg); } }); } } } ---- For backend I'm using standard PHP stack from Ext http://www.extjs.com/products/extjs/download.php?dl=extdirectpack --- When I'm trying to upload a file, I've got a failure response all the time. I crawled internet a bit, and some people write that Ext.form expects JSON response not in Ext.direct format: "result":{"success":true,"msg":"Some expection"}} When I return success=true - success handler work just fine, however, I don't like the idea of modification of the standard stack. Do you know what I'm doing wrong? Should I set results handlers differently? Thanks for reply,
  10. Asif RazaMay 30, 2011archive
    Hi, i have post my problem on this link http://www.sencha.com/forum/showthread.php?135180-Ext.Direct-Grid-for-ASP.net-response-not-parse&amp;p=607694#post607694 the issue is with the ext direct grid with ASP.net, if anyone have any idea please help thanks,
  11. SamaritanJuly 2, 2011archive
    This guy stole your post: http://jay.f2fsolutions.net/?mid=textyle&amp;page=6&amp;category=132&amp;document_srl=1978
  12. JitendraAugust 12, 2013archive
    Really its a great article about ExtDirect. its giving good idea about server side implementation of ExtDirect specification on PHP. I have also found a link where we can get a good idea about ExtDirect implementation on Java side. http://jksnu.blogspot.in/2013/08/extjs-extdirect-magic.html http://jksnu.blogspot.in/2013/08/extdirect-directgngine-example.html
  13. HoracioJanuary 13, 2014archive
    For the reason that the admin of this web page is working, no hesitation very soon it will be famous, due to its feature contents.
  14. LourdesJanuary 27, 2014archive
    wonderful submit, very informative. I wonder why the other experts of this sector do not understand this. You should continue your writing. I'm confident, you've a huge readers' base already!
  15. Greetings from Florida! I'm bored at work so I decided to check out your site on my iphone during lunch break. I really like the info you provide here and can't wait to take a look when I get home. I'm amazed at how fast your blog loaded on my cell phone .. I'm not even using WIFI, just 3G .. Anyhow, superb blog!
  16. how to improve memoryFebruary 7, 2014archive
    There is certainly a great deal to know about this issue. I really like all the points you've made.
  17. I would like to thank you for the efforts you have put in writing this website. I am hoping to see the same high-grade blog posts by you in the future as well. In truth, your creative writing abilities has inspired me to get my own, personal website now ;)

Comments are closed on archived posts.