You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by si...@apache.org on 2007/01/10 19:04:57 UTC

svn commit: r494910 - /ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml

Author: sichen
Date: Wed Jan 10 10:04:56 2007
New Revision: 494910

URL: http://svn.apache.org/viewvc?view=rev&rev=494910
Log:
Turned off transactions for the getBOMTree because it does not store any data, and wrapping it in transactions caused timeouts when doing a large BOM

Modified:
    ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml

Modified: ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml?view=diff&rev=494910&r1=494909&r2=494910
==============================================================================
--- ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml (original)
+++ ofbiz/trunk/applications/manufacturing/servicedef/services_bom.xml Wed Jan 10 10:04:56 2007
@@ -102,7 +102,7 @@
     </service>
 
     <service name="getBOMTree" default-entity-name="ProductAssoc" engine="java"
-            location="org.ofbiz.manufacturing.bom.BOMServices" invoke="getBOMTree">
+            location="org.ofbiz.manufacturing.bom.BOMServices" invoke="getBOMTree" use-transaction="false">
         <description>Returns a BOMTree (an object that represents a configured bill of material tree in memory). Useful for tree traversal (breakdown, explosion, implosion).</description>
         <attribute mode="IN" name="productId" optional="false" type="String"/>
         <attribute mode="IN" name="type" optional="true" type="Integer"/>