Index: framework/minilang/src/org/ofbiz/minilang/method/callops/CallService.java
===================================================================
--- framework/minilang/src/org/ofbiz/minilang/method/callops/CallService.java
(revision 679466)
+++ framework/minilang/src/org/ofbiz/minilang/method/callops/CallService.java
(working copy)
@@ -225,7 +225,7 @@
try {
if (UtilValidate.isEmpty(this.requireNewTransactionStr) &&
this.transactionTimeout < 0) {
- result =
methodContext.getDispatcher().runSync(this.serviceName, inMap);
+ result = methodContext.getDispatcher().runSync(serviceName,
inMap);
} else {
ModelService modelService =
methodContext.getDispatcher().getDispatchContext().getModelService(serviceName);
boolean requireNewTransaction =
modelService.requireNewTransaction;
@@ -236,7 +236,7 @@
if (this.transactionTimeout >= 0) {
timeout = this.transactionTimeout;
}
- result =
methodContext.getDispatcher().runSync(this.serviceName, inMap, timeout,
requireNewTransaction);
+ result = methodContext.getDispatcher().runSync(serviceName,
inMap, timeout, requireNewTransaction);
}
} catch (GenericServiceException e) {
Debug.logError(e, module);