Author: norman.richards(a)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"));
}
}
}
Show replies by date