O serviço ExtJS RESTful falha ao manipular dados json

Eu implemento um serviço RESTful simples. Estes são o URL de solicitação de repouso e os dados json de resposta.

http: // localhost: 8080 / RESTfulTestWeb / rest / services / getJson / aupres

{"id":"aupres","passwd":"aaa","age":45,"name":"joseph"}

O problema é que o cliente de objeto ExtJS Store não pode manipular os dados json acima. Estes são códigos de cliente ExtJS

Ext.define('extjs.model.Member', {
    extend: 'Ext.data.Model',

    fields : [{
        name : 'id',
        type : 'string'
    }, {
        name : 'passwd',
        type : 'string'
    }, {
        name : 'age',
        type : 'int'
    }, {
        name : 'name',
        type : 'string'
    }]  
});

Ext.onReady(function () {

    var members = Ext.create('Ext.data.Store', {

        model : 'extjs.model.Member',
        //autoLoad : true,
        proxy: {
            type: 'rest',
            url : 'http://localhost:8080/RESTfulTestWeb/rest/services/getJson/aupres',
            reader: {
                type: 'json',
                root: 'id',
            },
            writer: {
                type: 'json'
            },
            listeners: {
                exception: function(proxy, response, operation){
                    Ext.MessageBox.show({
                        title: 'REMOTE EXCEPTION',
                        msg: operation.getError(),
                        icon: Ext.MessageBox.ERROR,
                        buttons: Ext.Msg.OK
                    })
                }
            }

        },
        listeners: {
            load: function(members, operation, success) {
                if(success) {
                    alert('response : ' + members.model.length)
                } else {
                    alert('it failed')
                }
            }
        }
    })

    var onButtonClick = function() {
        members.load()
    }

O respose é mostrado como abaixo

"response : 0"

Parece que meus códigos ExtJS falham em conter os dados json.

questionAnswers(2)

yourAnswerToTheQuestion