[seam-commits] Seam SVN: r10042 - trunk/src/remoting/org/jboss/seam/remoting.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Feb 13 15:33:26 EST 2009


Author: norman.richards at jboss.com
Date: 2009-02-13 15:33:26 -0500 (Fri, 13 Feb 2009)
New Revision: 10042

Modified:
   trunk/src/remoting/org/jboss/seam/remoting/remote.js
Log:
JBSEAM-3944

Modified: trunk/src/remoting/org/jboss/seam/remoting/remote.js
===================================================================
--- trunk/src/remoting/org/jboss/seam/remoting/remote.js	2009-02-13 09:07:18 UTC (rev 10041)
+++ trunk/src/remoting/org/jboss/seam/remoting/remote.js	2009-02-13 20:33:26 UTC (rev 10042)
@@ -670,7 +670,8 @@
           try
           {         
             asyncReq.responseXML.documentElement;
-            Seam.Remoting.processResponse(asyncReq.responseXML);
+            //Seam.Remoting.processResponse(asyncReq.responseXML);
+	    callback(asyncReq.responseXML);
           }
           catch (ex)
           {
@@ -686,7 +687,8 @@
              {
                // If that fails, use standards
                var parser = new DOMParser();
-               Seam.Remoting.processResponse(parser.parseFromString(asyncReq.responseText, "text/xml"));
+               //Seam.Remoting.processResponse(parser.parseFromString(asyncReq.responseText, "text/xml"));
+	       callback(parser.parseFromString(asyncReq.responseText, "text/xml")); 
              }
           } 
         }




More information about the seam-commits mailing list