Hi,

We're working on JS library that replaces RI's AJAX JS. Here's an example of the XML format they use to transport their partial responses. We'll make our JS compatible with this:

<?xml version="1.0" encoding="utf-8"?>
<partial-response>
   <changes>
       <update id="out1">
           <![CDATA[<span id="out1">6</span>]]>
       </update>
       <update id="javax.faces.ViewState">
           <![CDATA[j_id5:j_id7]]>
       </update>
   </changes>
</partial-response>

When building an AJAX example with JSF 2.0 RI I had to use Javascript that differed slightly from what is defined in the spec. I've documented the differences here: http://forums.sun.com/thread.jspa?threadID=5376889

Best Regards,
Ganesh

Reply via email to