You need not use Struts2-JSON plugin unless you are not returning json result.
What happens is you copy http://localhost:7001/3pd/adminProcess.action' 
directly in the browser? Is your action called?


-----Original Message-----
From: Rout, Biswajit [mailto:biswajit.r...@hp.com] 
Sent: 18 April 2012 12:12
To: Struts Users Mailing List
Subject: RE: Request is not coming into my action method from the Extjs

Hi,
Per my understanding why do I need a Struts2-JSON plugin?
In my js file I am invoking using Ext.data.Store. I am not at all using 
Ext.data.JsonStore
Please correct me if I am wrong.


Best regards,
Biswajit
Planned Vacation : From 2-July-2012 to 6-July-2012

-----Original Message-----
From: maurizio.cucchi...@gmail.com [mailto:maurizio.cucchi...@gmail.com] On 
Behalf Of Maurizio Cucchiara
Sent: Wednesday, April 18, 2012 12:04 PM
To: Struts Users Mailing List
Subject: Re: Request is not coming into my action method from the Extjs

Also be aware that there is already a json plugin to produce/consume json data.

Sent from my mobile device, so please excuse typos and brevity.

Maurizio Cucchiara
Il giorno 18/apr/2012 08.00, "Rout, Biswajit" <biswajit.r...@hp.com> ha
scritto:

> Hello All,
> We are doing one development activity based on Struts 2 + Spring 3 + 
> Spring JDBC Template + Extjs 4.1 I want my Combo box to be getting 
> populated with dynamic data fetched from the DB. However when I am 
> running, I can see it is not at all entering into my action method 
> (Not even printing the SOP in the WLS console).
> I am assuming something wrong in my struts.xml or in the js file.
>
>
>
> Please find the list of files
>
> admin.js that is Extjs 4.1 technology (only combo box part code)
>        Ext.define('MyNamespace.StoreModel', {
>                extend: 'Ext.data.Model',
>                fields: [
>                         {name:'tablename'},
>                         {name:'displayName'}]
>        });
>
>        var crudComboStore = Ext.create('Ext.data.Store', {
>                model: 'MyNamespace.StoreModel',
>                proxy : {
>                        type :'ajax',
>                        url  : '
> http://localhost:7001/3pd/adminProcess.action',
>                        reader : {
>                        type : 'json',
>                        root : 'crudData'
>                    }
>                }
>        });
>        crudComboStore.load();
>
> Struts.xml
> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC
>    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
>    "http://struts.apache.org/dtds/struts-2.0.dtd";>
> <struts>
>        <constant name="struts.enable.DynamicMethodInvocation"
> value="false" />
>        <constant name="struts.devMode" value="false" />
>
>        <package name="default" namespace="/" extends="struts-default">
>
>                <action name="adminForm">
>                        <result>admin/admin.jsp</result>
>                </action>
>
>                <action name="adminProcess" method="getMasterTableList"
>                        class="com.xx.xxx.admin.action.AdminAction">
>
>                        <result name="input">admin/admin.jsp</result>
>                        <result name="error">admin/admin.jsp</result>
>                        <result name="success">admin/success.jsp</result>
>                </action>
>        </package>
> </struts>
>
> Action method
>        public String getMasterTableList() {
>                System.out.println("AdminAction.getMasterTableList 
> @@@@@");
>
>                List<CRUDSVO> objCRUDTableList = null;
>                Iterator<CRUDSVO> objItr = null;
>                CRUDSVO objCRUDSVO = null;
>                Map<String, String> interfaceObject = null;
>                List<Map<String, String>> interfaceArray = new 
> ArrayList<Map<String, String>>();
>                Map<String, List<Map<String, String>>> 
> finalInterfaceObject = new HashMap<String, List<Map<String, 
> String>>>();
>
>                try {
>                        HttpServletResponse response = 
> ServletActionContext.getResponse();
>                        objCRUDTableList = adminBo.getCRUDTableList();
>                        objItr = objCRUDTableList.iterator();
>                        while (objItr.hasNext()) {
>                                objCRUDSVO = null;
>                                objCRUDSVO = objItr.next();
>                                interfaceObject = new HashMap<String,
> String>();
>
>  interfaceObject.put(AdminConstants.TABLE_NAME, 
> objCRUDSVO.getTableName());
>
>  interfaceObject.put(AdminConstants.DISPLAY_NAME,
> objCRUDSVO.gettableDisplayName());
>                                interfaceArray.add(interfaceObject);
>                        }
>                        
> finalInterfaceObject.put(AdminConstants.CRUD_DATA,
> interfaceArray);
>
>  response.getWriter().write(finalInterfaceObject.toString());
>                } catch (IOException e) {
>                        e.printStackTrace();
>                }
>                return SUCCESS;
>        }
>
> Thanks in advance for guiding me.
>
>
>
> Best regards,
> Biswajit
> Planned Vacation : From 2-July-2012 to 6-July-2012
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to