[esb-java-dev] svn commit r10833 -
trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/mediators
svn at wso2.org
svn at wso2.org
Mon Dec 10 03:28:10 PST 2007
Author: ruwan
Date: Mon Dec 10 03:28:04 2007
New Revision: 10833
Log:
Fixing the issue ESBJAVA-379
Modified:
trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/mediators/send_mediator.js
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/mediators/send_mediator.js
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/mediators/send_mediator.js (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/mediators/send_mediator.js Mon Dec 10 03:28:04 2007
@@ -50,7 +50,7 @@
sendmediator.setAttribute("a_ep", epstring);
}
-collectdata["send"] = function collectlogdata(mediator) {
+collectdata["send"] = function collectsenddata(mediator) {
if (mediator.childNodes.length > 0) {
if (currentepobj != undefined && currentepobj != null) {
mediator.removeChild(mediator.childNodes[0]);
@@ -118,7 +118,7 @@
if (mediator.childNodes.length > 0) {
for (var k=0; k<mediator.childNodes.length; k++) {
previous_ep_value = mediator.childNodes[k];
- if (previous_ep_value != null && previous_ep_value != undefined && previous_ep_value.localName == "endpoint") {
+ if (previous_ep_value != null && previous_ep_value != undefined && previous_ep_value.nodeName == "syn:endpoint") {
mediator.removeChild(previous_ep_value);
}
}
More information about the Esb-java-dev
mailing list