Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

Section8
This post was updated on .
In my current Spring/JSF project I need integrate a method to push server side updates (Preferably as they happen) to the web based GUI to be displayed to the clients.

So to get started with things, I am working on this small application to get a feel of how DWR works.Basically, I've developed two variations to implement the server side push.

In the first approach, when the "find button" is pressed the back end updates are properly displayed.This makes a calls the findInstrumentSymbols() method in the InstrumentManager and returns the output as a List<Instrument> Objects throught DWR.

In the second approach I attempted to implement the reverse ajax approach suggested in the DWR webs site.(http://directwebremoting.org/dwr-demo/reverseajax/peopleTable.html)

How can make this functionality available as the default functionality every time a page loads without having to specifically activate it through a button?

In this implementation I was unable to return the output as a List<Instrument> Objects through DWR as in the first approach and had to be sent as a string array.I see that the new results are not populated properly as in the first approach and it tends to looses the new data when the "Disable button" is pressed.How can this required reverse server push functionality be properly achived using DWR?
 
I have listed the code fragments below.I Would really appreciate any pointers on getting the revers Ajax functionality to operational.

I have used polling as as described in earlier DWR releases.What method would be most ideal to implement reverse Ajax functionality if switching to DWR3 is the way forward ?

**Web.xml**
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
        xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

        <display-name>AdminConsole</display-name>
        <context-param>
                <param-name>contextConfigLocation</param-name>
                <param-value>/WEB-INF/application-context.xml
        /WEB-INF/application-security-context.xml</param-value>
        </context-param>
        <context-param>
                <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
                <param-value>.xhtml</param-value>
        </context-param>
        <context-param>
                <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
                <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
                <param-value>server</param-value>
        </context-param>
        <context-param>
                <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
                <param-value>resources.application</param-value>
        </context-param>
        <filter>
                <filter-name>springSecurityFilterChain</filter-name>
                <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
        </filter>
        <filter-mapping>
                <filter-name>springSecurityFilterChain</filter-name>
                <url-pattern>/*</url-pattern>
                <dispatcher>FORWARD</dispatcher>
                <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <listener>
                <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
        </listener>
        <listener>
                <listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class>
        </listener>
        <listener>
                <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
        </listener>
        <listener>
                <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
        <listener>
                <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
        </listener>
        <servlet>
                <servlet-name>Faces Servlet</servlet-name>
                <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
                <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
                <servlet-name>Faces Servlet</servlet-name>
                <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet>
                <display-name>DWR Servlet</display-name>
                <servlet-name>dwr-invoker</servlet-name>
                <servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
                <init-param>
                        <param-name>debug</param-name>
                        <param-value>true</param-value>
                </init-param>
                <init-param>
                        <param-name>activeReverseAjaxEnabled</param-name>
                        <param-value>true</param-value>
                </init-param>
                <init-param>
                        <param-name>org.directwebremoting.extend.ServerLoadMonitor</param-name>
                        <param-value>org.directwebremoting.impl.PollingServerLoadMonitor</param-value>
                </init-param>
                <init-param>
                        <param-name>timeToNextPoll</param-name>
                        <param-value>5000</param-value>
                </init-param>
                <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
                <servlet-name>dwr-invoker</servlet-name>
                <url-pattern>/dwr/*</url-pattern>
        </servlet-mapping>
        <session-config>
                <session-timeout>30</session-timeout>
        </session-config>
        <welcome-file-list>
                <welcome-file>faces/index.xhtml</welcome-file>
        </welcome-file-list>
        <error-page>
                <exception-type>javax.faces.application.ViewExpiredException</exception-type>
                <location>/login.xhtml</location>
        </error-page>
        .......
</web-app>

**DWR.XML**

    <?xml version="1.0" encoding="UTF-8"?>
    <DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 3.0//EN" "http://directwebremoting.org/schema/dwr30.dtd">
   
    <dwr>
      <allow>
        <convert converter="bean" match="com.stocktrade.admin.entity.*"/>
        <create creator="spring" javascript="InstrumentManager">
         
        </create>   
      </allow>
    </dwr>

**application-context.xml**

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jee="http://www.springframework.org/schema/jee" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring- context.xsd                      
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
           http://www.springframework.org/schema/jee
           http://www.springframework.org/schema/jee/spring-jee.xsd
           http://www.springframework.org/schema/aop 
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
           http://www.directwebremoting.org/schema/spring-dwr
           http://www.directwebremoting.org/schema/spring-dwr-3.0.xsd">
   
           .....
   
   
    <bean id="instrumentManager"  class="com.stocktrade.admin.instrument.InstrumentManagerImpl">
    <property name="instrumentDAO" ref="instrumentDAO"></property>
    <property name="userManager" ref="userManager"></property>
    <property name="accountManager" ref="accountManager"></property>
    <property name="portfolioManager" ref="portfolioManager"></property>
    </bean>
     
          ......
    </beans>

**Instrument Class**

    package com.xxxxx.admin.entity;
   
    import java.io.Serializable;
    import java.math.BigDecimal;
    import java.util.List;
   
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.OneToMany;
    import javax.persistence.Table;
   
    @Entity
    @Table(name = "instrument")
    public class Instrument implements Serializable {
   
    private static final long serialVersionUID = 1L;
   
    @Id
    @Column(name="symbolName")
    private String SymbolName;
   
    @Column(name="name")
    private String Name;
   
    @Column(name="quantity")
    private long Quantity;
   
    @Column(name="price")
    private BigDecimal Price;
   
    @Column(name="Limit")
    private int Limit;
   
    public String getSymbolName() {
    return SymbolName;
    }
    public void setSymbolName(String symbolName) {
    SymbolName = symbolName;
    }
    public String getName() {
    return Name;
    }
    public void setName(String name) {
    Name = name;
    }
    public long getQuantity() {
    return Quantity;
    }
    public void setQuantity(long quantity) {
    Quantity = quantity;
    }
    public BigDecimal getPrice() {
    return Price;
    }
    public void setPrice(BigDecimal price) {
    Price = price;
    }
    public int getLimit() {
    return Limit;
    }
    public void setLimit(int Limit) {
    Limit = Limit;
    }
    }

**InstrumentManager Class**
 

    package com.xxxxx.admin.instrument;
   
    import java.math.BigDecimal;
    import java.util.List;
    import com. xxxxx.admin.entity.Instrument;
    import com. xxxxx.admin.entity.Portfolio;
    import com. xxxxx.admin.entity.Account;
    import com. xxxxx.admin.entity.Users;
   
    public interface InstrumentManager {
            ………
            /*used to implement the find() functionality*/
    public List<Instrument> findInstrumentSymbols();
            /*used to implement the reverse ajax functionality*/
    public void SendInstrumentSymbols();
    public void addAttributeToScriptSession();
    public void removeAttributeToScriptSession();
    public void run();
    }

**InstrumentManagerImpl Class** 

    package com.xxxxx.admin.instrument;
   
    import java.math.BigDecimal;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Collection;
   
    import com.xxxxx.admin.account.AccountManager;
    import com.xxxxx.admin.dao.InstrumentDAO;
    import com.xxxxx.admin.entity.Instrument;
    import com.xxxxx.admin.entity.Account;
    import com.xxxxx.admin.entity.Portfolio;
    import com.xxxxx.admin.entity.Users;
    import com.xxxxx.admin.portfolio.PortfolioManager;
    import com.xxxxx.admin.user.UserManager;
   
    import org.directwebremoting.WebContext;
    import org.directwebremoting.WebContextFactory;
    import org.directwebremoting.util.Logger;
    import org.directwebremoting.ScriptSession;
    import org.directwebremoting.ScriptSessionFilter;
    import org.directwebremoting.Browser;
    import org.directwebremoting.ServerContextFactory;
    import org.directwebremoting.impl.DaemonThreadFactory;
    import org.directwebremoting.ui.dwr.Util;
   
    import java.util.concurrent.ScheduledThreadPoolExecutor;
    import java.util.concurrent.TimeUnit;
   
    public class InstrumentManagerImpl implements InstrumentManager,Runnable {
   
    private final static String SCRIPT_SESSION_ATTR = "SCRIPT_SESSION_ATTR";
    public static String getScriptSessionAttr() {
    return SCRIPT_SESSION_ATTR;
    }
   
    private UserManager userManager;
    public UserManager getUserManager() {
    return userManager;
    }
    public void setUserManager(UserManager userManager) {
    this.userManager = userManager;
    }
   
    private InstrumentDAO instrumentDAO;
    public InstrumentDAO getInstrumentDAO() {
    return instrumentDAO;
    }
    public void setInstrumentDAO(InstrumentDAO instrumentDAO) {
    this.instrumentDAO = instrumentDAO;
    }
   
    public InstrumentManagerImpl() {
    ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(1, new DaemonThreadFactory());
            executor.scheduleAtFixedRate(this, 1, 10, TimeUnit.SECONDS);
    }
   
    /* (non-Javadoc)
         * @see java.lang.Runnable#run()
         */
        @Override
        public void run()
        {
        SendInstrumentSymbols();
        }
            /*used to implement the find() functionality*/
    @Override
    public List<Instrument> findInstrumentSymbols() {
    return instrumentDAO.findInstrumentSymbols();
    }
    /*used to implement the reverse ajax functionality*/
    public void SendInstrumentSymbols() {
    // Get the current page.
            String page = ServerContextFactory.get().getContextPath() + "/faces/gehan.xhtml";
            // Create a new AttributeScriptSessionFilter which will look for an attribute on the ScriptSession
            ScriptSessionFilter attributeFilter = new AttributeScriptSessionFilter(SCRIPT_SESSION_ATTR);
            // Update the page, filters ScriptSessions using attributeFilter.  If the SCRIPT_SESSION_ATTR
            // has not been set on the ScriptSession the page in question will not receive updates.
            Browser.withPageFiltered(page, attributeFilter, new Runnable()
            {
                @Override
                public void run()
                {
                List<Instrument> InstrumentList = new ArrayList<Instrument>();
                InstrumentList = findInstrumentSymbols() ;
                //Creates a multi-dimensional array, containing a row and the rows column data.
                //Added the First Element of the List returned - values are converted to String
                    String[][] data = {
                        {InstrumentList.get(0).getSymbolName().toString(), InstrumentList.get(0).getName().toString(), String.valueOf(InstrumentList.get(0).getQuantity()), InstrumentList.get(0).getPrice().toString(), String.valueOf(InstrumentList.get(0).getMarketMakingLimit())}};
   
       // Call DWR's util which adds rows into a table.peopleTable is the id of the tbody and
          data contains the row/column data.  
                    Util.addRows("MMTable", data);
                }
            });
    }
   
    /**
    * Called from the client to add an attribute on the ScriptSession.  This
    * attribute will be used so that only pages (ScriptSessions) that have
    * set this attribute will be updated.
    */
        public void addAttributeToScriptSession() {
            ScriptSession scriptSession = WebContextFactory.get().getScriptSession();
            scriptSession.setAttribute(SCRIPT_SESSION_ATTR, true);
        }
       
    /**
    * Called from the client to remove an attribute from the ScriptSession.  
    * When called from a client that client will no longer receive updates
             * (unless addAttributeToScriptSession)
    * is called again.
    */
        public void removeAttributeToScriptSession() {
            ScriptSession scriptSession = WebContextFactory.get().getScriptSession();
            scriptSession.removeAttribute(SCRIPT_SESSION_ATTR);
        }
       
       /**
         * This is the ScriptSessionFilter that will be used to filter out all ScriptSessions
         * unless they contain the SCRIPT_SESSION_ATTR attribute.
         */
        protected class AttributeScriptSessionFilter implements ScriptSessionFilter
        {
        private final String attributeName;
       
        public AttributeScriptSessionFilter(String attributeName)
            {
                this.attributeName = attributeName;
            }
   
            @Override
            public boolean match(ScriptSession session)
            {
                Object check = session.getAttribute(attributeName);
                return (check != null && check.equals(Boolean.TRUE));
            }
        }
       
    }

**updateMMStatus.xhtml**

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" 
          xmlns:ui="http://java.sun.com/jsf/facelets" 
          xmlns:h="http://java.sun.com/jsf/html" 
          xmlns:f="http://java.sun.com/jsf/core">
          <h:head>
          <title>Reverse Ajax Table Update</title>
          <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
          <script type='text/javascript' src='/AdminConsole/dwr/engine.js'></script>          <script type='text/javascript' src='/AdminConsole/dwr/util.js'></script>          <script type='text/javascript' src='/AdminConsole/dwr/interface/InstrumentManager.js'></script>   
          <script type="text/javascript"> window.onload=function() { // Initiate reverse ajax polling dwr.engine.setActiveReverseAjax(true); // Called when a call and all retry attempts fail dwr.engine.setErrorHandler(errorHandler); // Optional function to call when the reverse ajax status changes (e.g. online to offline) dwr.engine.setPollStatusHandler(updatePollStatus); // Optional - We are online right now! Until DWR determines we are not! updatePollStatus(true); //Optional - When the page is unloaded, remove this ScriptSession. dwr.engine.setNotifyServerOnPageUnload(true); // Initialize the tabs for this display Tabs.init('tabList', 'tabContents'); // Make a call to the server to begin updating the table! InstrumentManager.SendInstrumentSymbols(); //Make a remote call to the server to add an attribute onto the ScriptSession //which will be used in determining what pages receive updates! addAttributeToScriptSession(); } function errorHandler(message, ex) { dwr.util.setValue("error", "Cannot connect to server. Initializing retry logic.", {escapeHtml:false}); setTimeout(function() { dwr.util.setValue("error", ""); }, 5000) } function updatePollStatus(pollStatus) { dwr.util.setValue("pollStatus", pollStatus ? "Online" : "Offline", {escapeHtml:false}); } // Make a remote call to add an attribute on the ScriptSession. // Only clients that have this attribute set will receive updates. function addAttributeToScriptSession() { InstrumentManager.addAttributeToScriptSession(); } // Make a remote call to remove an attribute from the ScriptSession. // Clients that call this will no longer receive updates (unless addAttributeToScriptSession is called again). function removeAttributeToScriptSession() { InstrumentManager.removeAttributeToScriptSession(); } </script>        /*Java script to updated instrument table related changes when the "find" Button is pressed */
        function find() {
          <script type="text/javascript"> function find() { InstrumentManager.findInstrumentSymbols(); } </script>        </h:head>
        <h:body onload="dwr.engine.setActiveReverseAjax(true);">
       
        <input type="button" value="Enable page updates" onclick="addAttributeToScriptSession();"/>
        <input type="button" value="Disable page updates" onclick="removeAttributeToScriptSession();"/>
         
    <h:messages styleClass="error" />
    <div class="data_header">Current Symbols in the System</div>
    <h:dataTable rowClasses="odd,even" id="MMTable"
    value="#{updateMMStausBean.instrumentsList}" var="insList"
    rendered="#{updateMMStausBean.instrumentsList != null}"
    headerClass="tableHeader" styleClass="table">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Symbol" />
    </f:facet>
    <div align="left">
    <h:outputText value="#{insList.symbolName}" />
    </div>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name" />
    </f:facet>
    <div align="left">
    <h:outputText value="#{insList.name}" />
    </div>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Quantity" />
    </f:facet>
    <div align="center">
    <h:outputText value="#{insList.quantity}" />
    </div>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Price($)" />
    </f:facet>
    <div align="right">
    <h:outputText value="#{insList.price}" />
    </div>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Limit" />
    </f:facet>
    <div align="right">
    <h:outputText value="#{insList.mMLimit}" />
    </div>
    </h:column>
    </h:dataTable>
   
    <div id="container">   
        <h:panelGrid columns="2" cellpadding="6">
    <h:form id="authenticate1">
    <h:commandButton action="#{updateMMStausBean.ActivateAllMMOrdrerOn()}" value="Activate all Orders">
    </h:commandButton>
    </h:form>
   
    <h:form id="authenticate2">
    <h:commandButton action="#{updateMMStausBean.DeactivateAllMMOrdrerOn()}" value="Deactivate all Orders">
    </h:commandButton>
    </h:form>
   
            /*  Java script to updated instrument table related changes when the "find" Button is pressed */
    <h:form id="authenticate3">
    <h:commandButton value="Find" onclick="find()">
    </h:commandButton>
    </h:form> 
        </h:panelGrid>
    </div>
   
          </h:body>
       
    </html>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

david@butterdev.com
"How can make this functionality available as the default functionality every time a page loads without having to specifically activate it through a button?"

It is as simple as calling the function that is called on link click when the page loads instead.

"In this implementation I was unable to return the output as a List<Instrument> Objects through DWR as in the first approach and had to be sent as a string array.I see that the new results are not populated properly as in the first approach and it tends to looses the new data when the "Disable button" is pressed.How can this required reverse server push functionality be properly achived using DWR?"

There should be no problem returning a List<Instrument>>.  I noticed you don't have a converter specified for your bean so maybe that is the problem.  Since you aren't telling us why you couldn't do this or what problems you encountered it is difficult to say.  
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

david@butterdev.com
Regarding returning the List<Instrument>.  I mispoke a bit (too early :)), forget what I said about the converter.  Take a look at the people table demo.  That should help you out and sounds similar to what you want to do.

http://directwebremoting.org/dwr-demo/reverseajax/peopleTable.html

On Mon, Jan 9, 2012 at 6:42 AM, [hidden email] <[hidden email]> wrote:
"How can make this functionality available as the default functionality every
time a page loads without having to specifically activate it through a
button?"

It is as simple as calling the function that is called on link click when
the page loads instead.

"In this implementation I was unable to return the output as a
List<Instrument> Objects through DWR as in the first approach and had to be
sent as a string array.I see that the new results are not populated properly
as in the first approach and it tends to looses the new data when the
"Disable button" is pressed.How can this required reverse server push
functionality be properly achived using DWR?"

There should be no problem returning a List<Instrument>>.  I noticed you
don't have a converter specified for your bean so maybe that is the problem.
Since you aren't telling us why you couldn't do this or what problems you
encountered it is difficult to say.

--
View this message in context: http://dwr.2114559.n2.nabble.com/Using-Spring-DWR-Revers-Ajax-functionality-to-display-dynamic-changes-to-table-data-tp7167542p7167855.html
Sent from the DWR - Users mailing list archive at Nabble.com.

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

Section8
Thank You for your reply.But I have had no luck withe the passing a java List<Instrument> using server side push as yet.

I have been studying the peopleTable demo application and similar applications based on the web to come up with a solution for my problem. Most of these applications pass String or String arrays. :(

>>>This makes a calls the findInstrumentSymbols() method in the InstrumentManager and returns the output as a Object through DWR.

One thing I noticed in DWR was that when a DWR java script is called linked to a GUI operation such as Onclick (E.g.find button), Object or collection type data can be passed smoothly.I believe a JSON object is returned on this instance.

findInstuments methods JSON output as displayed in the program and can be easily integrated into the web page.
https://picasaweb.google.com/111228036846988065850/DWRFindInstumentsMethod#5697056122078739810

>>>But when you try to pass data to the webpage using server push operation,I was unable to return the output as before through DWR as in the first approach.It had to be sent as a string array.

As suggested in this forum I based the server Push sample code on a variation of the peopleTable demo.  
But it seems DWR provides little facility to send Collection or Objects to the GUI though it is easily available when liked to a user operation where JSON abjects are passed.(It seems to offers support for String /String arrays and String based collections or that is what I gathered :|)

public void SendInstrumentSymbols() {
                // Get the current page.
        String page = ServerContextFactory.get().getContextPath() + "/faces/Instruments.xhtml";
        // Create a new AttributeScriptSessionFilter which will look for an attribute on the ScriptSession
        ScriptSessionFilter attributeFilter = new AttributeScriptSessionFilter(SCRIPT_SESSION_ATTR);
        // Update the page, filters ScriptSessions using attributeFilter.  If the SCRIPT_SESSION_ATTR
        // has not been set on the ScriptSession the page in question will not receive updates.
        Collection sessions = ServerContextFactory.get().getScriptSessionsByPage(page);
        Browser.withPageFiltered(page, attributeFilter, new Runnable()
        {
            @Override
            public void run()
            {
                // Creates a new Person bean.
            List<Instrument> InstrumentList = new ArrayList<Instrument>();
            InstrumentList = findInstrumentSymbols() ;

                /*This seems to be the trick y part - Sending the List<Instrument> to the server end.*/

                // Creates a multi-dimensional array, containing a row and the rows column data.
                String[][] data = {
                    {InstrumentList.get(0).getSymbolName().toString(), InstrumentList.get(0).getName().toString(), String.valueOf(InstrumentList.get(0).getQuantity()), InstrumentList.get(0).getPrice().toString(), String.valueOf(InstrumentList.get(0).getMarketMakingLimit()),String.valueOf(InstrumentList.get(0).isBuyOrderMarketMakingOn()),String.valueOf(InstrumentList.get(0).isSellOrderMarketMakingOn())}};
                // Call DWR's util which adds rows into a table.  instrumentTable is the id of the tbody and
                // data contains the row/column data.  
                Util.addRows("instrumentTable", data);
            }
        }
);
        }

When you try to alter this functionality to support other data types such List<Instrument> I couldn't find a Clean method as in the first instance -which was effortless.

Is there a better method that could be devised to transfer objects when using server push using this method ? (Resorting to String conversion :(  seemed to be the method suggested in most of the web examples.)

Can data be exchanged as JSON Objects when server side push is performed without a GUI trigger to meet the same requirements?

Is so what additional configuration changes and Updates would be required?
 
If a JSON based data transfer is possible for server side Push, could you please give some heads up on some document, site or sample code that may be of any assistance.Any such lead would be much appreciated for I have found nothing concrete on this topic :(

Thank You In Advance


------------------------------------------------------------------
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Using Spring / DWR Revers Ajax functionality to display dynamic changes to table data

Mike Wilson
Administrator
The reason everything is converted to strings in the example is
because the client-side addRows method expects strings (sort of)
as it just fills table cells with text. So string conversion is
completely logical in this particular example.

If you are sending data to another client-side function that
expects bean data then that is fine too. It goes something like
this:

Browser.withPageFiltered(page, attributeFilter, new Runnable() {
  public void run() {
    ScriptSessions.addFunctionCall("myfunc", arg1, arg2);
  }
});

where arg1, arg2, etc may be of any type convertable by DWR.

Best regards
Mike Wilson

Section8 wrote:

> [...]
>                 // Creates a multi-dimensional array,
> containing a row and
> the rows column data.
>                 String[][] data = {
>                     {InstrumentList.get(0).getSymbolName().toString(),
> InstrumentList.get(0).getName().toString(),
> String.valueOf(InstrumentList.get(0).getQuantity()),
> InstrumentList.get(0).getPrice().toString(),
> String.valueOf(InstrumentList.get(0).getMarketMakingLimit()),S
> tring.valueOf(InstrumentList.get(0).isBuyOrderMarketMakingOn()
> ),String.valueOf(InstrumentList.get(0).isSellOrderMarketMakingOn())}};
>                 // Call DWR's util which adds rows into a table.
> instrumentTable is the id of the tbody and
>                 // data contains the row/column data.  
>                 Util.addRows("instrumentTable", data);
>             }
>         }*);
> }
> [...]
> Is there a better method that could be devised to transfer
> objects when
> using server push using this method ? (Resorting to String
> conversion *:(*
> seemed to be the method suggested in most of the web examples.)

Loading...