svn commit: r755831 [3/4] - /ofbiz/trunk/applications/product/servicedef/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r755831 [3/4] - /ofbiz/trunk/applications/product/servicedef/

ashish-18
Modified: ofbiz/trunk/applications/product/servicedef/services_maint.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_maint.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_maint.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_maint.xml Thu Mar 19 04:27:30 2009
@@ -26,7 +26,7 @@
 
     <!-- Product Category Maintenance Services -->
     <service name="copyCategoryProductMembers" engine="simple" transaction-timeout="600"
-            location="org/ofbiz/product/category/CategoryServices.xml" invoke="copyCategoryProductMembers" auth="true">
+            location="component://product/script/org/ofbiz/product/category/CategoryServices.xml" invoke="copyCategoryProductMembers" auth="true">
         <description>Copy Product Members from one Category to Another, optionally filtering by the given valid date (otherwise no date filtering done), and optionally recursing (if recurse=Y) down the from category</description>
         <attribute name="productCategoryId" type="String" mode="IN" optional="false"/>
         <attribute name="productCategoryIdTo" type="String" mode="IN" optional="false"/>
@@ -34,13 +34,13 @@
         <attribute name="recurse" type="String" mode="IN" optional="true"/>
     </service>
     <service name="expireAllCategoryProductMembers" engine="simple"
-            location="org/ofbiz/product/category/CategoryServices.xml" invoke="expireAllCategoryProductMembers" auth="true">
+            location="component://product/script/org/ofbiz/product/category/CategoryServices.xml" invoke="expireAllCategoryProductMembers" auth="true">
         <description>Expire All Product Members in a Category optionally using the thruDate specified as the expire date (now timestamp used by default)</description>
         <attribute name="productCategoryId" type="String" mode="IN" optional="false"/>
         <attribute name="thruDate" type="Timestamp" mode="IN" optional="true"/>
     </service>
     <service name="removeExpiredCategoryProductMembers" engine="simple"
-            location="org/ofbiz/product/category/CategoryServices.xml" invoke="removeExpiredCategoryProductMembers" auth="true">
+            location="component://product/script/org/ofbiz/product/category/CategoryServices.xml" invoke="removeExpiredCategoryProductMembers" auth="true">
         <description>Remove All Expired Product Members in a Category, optionally uses the valid date instead of now to determine if the member has expired</description>
         <attribute name="productCategoryId" type="String" mode="IN" optional="false"/>
         <attribute name="validDate" type="Timestamp" mode="IN" optional="true"/>
@@ -94,7 +94,7 @@
 
     <!-- Check Urls exists or not related services -->
     <service name="checkImageUrlForAllCategories" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForAllCategories" transaction-timeout="36000000">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForAllCategories" transaction-timeout="36000000">
         <description>check For Image Urls exists or not for all categories</description>
         <attribute name="topCategory" type="String" mode="IN" optional="true"/>
         <attribute name="excludeEmpty" type="Boolean" mode="IN" optional="true"/>                
@@ -102,41 +102,41 @@
     </service>
     
     <service name="getAllCategories" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="getAllCategories">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="getAllCategories">
         <description>Get all categories of a category </description>
         <attribute name="topCategory" type="String" mode="IN" optional="true"/>  
         <attribute name="categories" type="java.util.List" mode="OUT" optional="true"/>
     </service>
     
     <service name="getRelatedCategories" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="getRelatedCategories">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="getRelatedCategories">
         <description>Get all related categories of a category </description>
         <attribute name="parentProductCategoryId" type="String" mode="IN" optional="false"/>
         <attribute name="categories" type="java.util.List" mode="INOUT" optional="true" />
     </service>
 
     <service name="checkImageUrlForCategoryAndProduct" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForCategoryAndProduct">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForCategoryAndProduct">
         <description>check For Image Urls exists or not for category</description>
         <attribute name="categoryId" type="String" mode="IN" optional="false"/>
         <attribute name="fileNotExists" type="java.util.List" mode="OUT" optional="true"/>        
         <attribute name="fileExists" type="java.util.List" mode="OUT" optional="true"/>
     </service>
     <service name="checkImageUrlForCategory" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForCategory">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForCategory">
         <description>check For Image Urls exists or not For Product</description>
         <attribute name="categoryId" type="String" mode="IN" optional="false"/>        
         <attribute name="filesImageMap" type="java.util.Map" mode="OUT" optional="true"/>        
     </service>
     <service name="checkImageUrlForProduct" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForProduct">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrlForProduct">
         <description>check For Image Urls exists or not For Product</description>
         <attribute name="productId" type="String" mode="IN" optional="false"/>        
         <attribute name="filesImageMap" type="java.util.Map" mode="OUT" optional="true"/>        
     </service>
     
     <service name="checkImageUrl" engine="simple"
-      location="org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrl">
+      location="component://product/script/org/ofbiz/product/catalog/CatalogServices.xml" invoke="checkImageUrl">
         <description>check For Image Urls exists or not</description>
         <attribute name="imageUrl" type="String" mode="IN" optional="false"/>
         <attribute name="isExists" type="String" mode="OUT" optional="true"/>        
@@ -155,11 +155,11 @@
     <!-- Inventory Maintenance Services -->
     <!-- ============================== -->
     <service name="updateOldInventoryToDetailAll" engine="simple"
-            location="org/ofbiz/product/inventory/InventoryServices.xml" invoke="updateOldInventoryToDetailAll" auth="true">
+            location="component://product/script/org/ofbiz/product/inventory/InventoryServices.xml" invoke="updateOldInventoryToDetailAll" auth="true">
         <description>Update Old Inventory To Detail</description>
     </service>
     <service name="updateOldInventoryToDetailSingle" engine="simple" require-new-transaction="true"
-            location="org/ofbiz/product/inventory/InventoryServices.xml" invoke="updateOldInventoryToDetailSingle" auth="true">
+            location="component://product/script/org/ofbiz/product/inventory/InventoryServices.xml" invoke="updateOldInventoryToDetailSingle" auth="true">
         <description>Update Old Inventory To Detail</description>
         <attribute name="inventoryItem" type="GenericValue" mode="IN" optional="false"/>
     </service>

Modified: ofbiz/trunk/applications/product/servicedef/services_olap.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_olap.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_olap.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_olap.xml Thu Mar 19 04:27:30 2009
@@ -23,31 +23,31 @@
 
     <!-- ProductDimension -->
     <service name="prepareProductDimensionData" auth="true" engine="simple"
-        location="org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="prepareProductDimensionData">
+        location="component://product/script/org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="prepareProductDimensionData">
         <description>Pulls information from the Product* entities (oltp entities) and prepares data for the ProductDimension entity (olap entity)</description>
         <attribute name="productId" type="String" mode="IN" optional="false"/>
         <attribute name="productDimension" type="GenericEntity" mode="OUT" optional="false"/>
     </service>
     <service name="loadProductInProductDimension" auth="true" engine="simple"
-        location="org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
+        location="component://product/script/org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
         <description>Pulls information from the Product* entities and stores them in the ProductDimension entity (olap entity)</description>
         <attribute name="productId" type="String" mode="IN" optional="false"/>
         <attribute name="updateMode" type="String" mode="IN" optional="false"/> <!-- TYPE1, TYPE2, TYPE3 -->
     </service>
     <service name="loadType1ProductInProductDimension" auth="true" engine="simple"
-        location="org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
+        location="component://product/script/org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
         <description>Same as loadProductInProductDimension; the update strategy is 'type 1': overwrite the values of the attributes</description>
         <attribute name="productId" type="String" mode="IN" optional="false"/>
         <attribute name="updateMode" type="String" mode="IN" optional="true" default-value="TYPE1"/>
     </service>
     <service name="loadType2ProductInProductDimension" auth="true" engine="simple"
-        location="org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
+        location="component://product/script/org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadProductInProductDimension">
         <description>Same as loadProductInProductDimension; the update strategy is 'type 2': add a dimension row</description>
         <attribute name="productId" type="String" mode="IN" optional="false"/>
         <attribute name="updateMode" type="String" mode="IN" optional="true" default-value="TYPE2"/>
     </service>
     <service name="loadAllProductsInProductDimension" auth="true" engine="simple"
-        location="org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadAllProductsInProductDimension">
+        location="component://product/script/org/ofbiz/product/olap/ProductDimensionServices.xml" invoke="loadAllProductsInProductDimension">
         <description>Calls the loadProductInProductDimension service for all the products.</description>
         <attribute name="updateMode" type="String" mode="IN" optional="true" default-value="TYPE1"/>
     </service>

Modified: ofbiz/trunk/applications/product/servicedef/services_picklist.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_picklist.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_picklist.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_picklist.xml Thu Mar 19 04:27:30 2009
@@ -33,7 +33,7 @@
     </service>
 
     <service name="findOrdersToPickMove" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="findOrdersToPickMove">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="findOrdersToPickMove">
         <description>Gets Picklist Data</description>
         <attribute name="facilityId" type="String" mode="IN" optional="false"/>
         <attribute name="shipmentMethodTypeId" type="String" mode="IN" optional="true"/>
@@ -46,7 +46,7 @@
 
     <!-- Persisted Picklist Services -->
     <service name="createPicklistFromOrders" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistFromOrders" transaction-timeout="600">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistFromOrders" transaction-timeout="600">
         <description>Create Picklist From Orders</description>
         <attribute name="facilityId" type="String" mode="IN" optional="false"/>
         <attribute name="shipmentMethodTypeId" type="String" mode="IN" optional="true"/>
@@ -58,14 +58,14 @@
     </service>
 
     <service name="getPicklistDisplayInfo" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="getPicklistDisplayInfo">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="getPicklistDisplayInfo">
         <description>Create Picklist From Orders</description>
         <attribute name="facilityId" type="String" mode="IN" optional="false"/>
         <attribute name="picklistInfoList" type="List" mode="OUT" optional="true"/>
     </service>
 
     <service name="getPickAndPackReportInfo" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="getPickAndPackReportInfo">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="getPickAndPackReportInfo">
         <description>Get Pick And Pack Report Info</description>
         <attribute name="picklistId" type="String" mode="IN" optional="false"/>
         <attribute name="picklistInfo" type="Map" mode="OUT" optional="false"/>
@@ -75,7 +75,7 @@
 
     <!-- Picklist -->
     <service name="createPicklist" default-entity-name="Picklist" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklist" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklist" auth="true">
         <description>Create Picklist</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -85,7 +85,7 @@
         </auto-attributes>
     </service>
     <service name="updatePicklist" default-entity-name="Picklist" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklist" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklist" auth="true">
         <description>Update Picklist</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -96,57 +96,57 @@
         <attribute name="oldStatusId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="deletePicklist" default-entity-name="Picklist" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklist" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklist" auth="true">
         <description>Delete Picklist</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- PicklistBin -->
     <service name="createPicklistBin" default-entity-name="PicklistBin" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistBin" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistBin" auth="true">
         <description>Create PicklistBin</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
     </service>
     <service name="updatePicklistBin" default-entity-name="PicklistBin" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistBin" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistBin" auth="true">
         <description>Update PicklistBin</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deletePicklistBin" default-entity-name="PicklistBin" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistBin" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistBin" auth="true">
         <description>Delete PicklistBin</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <service name="checkPicklistBinItemStatuses" default-entity-name="PicklistBin" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="checkPicklistBinItemStatuses" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="checkPicklistBinItemStatuses" auth="true">
         <description>Update Picklist based on Item Status</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- PicklistItem -->
     <service name="createPicklistItem" default-entity-name="PicklistItem" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistItem" auth="true">
         <description>Create PicklistItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
         <override name="itemStatusId" optional="true"/>
     </service>
     <service name="updatePicklistItem" default-entity-name="PicklistItem" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistItem" auth="true">
         <description>Update PicklistItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <attribute name="oldItemStatusId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="deletePicklistItem" default-entity-name="PicklistItem" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistItem" auth="true">
         <description>Delete PicklistItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <service name="setPicklistItemToComplete" default-entity-name="PicklistItem" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="setPicklistItemToComplete" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="setPicklistItemToComplete" auth="true">
         <description>Update PicklistItem's Status to COMPLETE</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
@@ -154,7 +154,7 @@
 
     <!-- PicklistRole -->
     <service name="createPicklistRole" default-entity-name="PicklistRole" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="createPicklistRole" auth="true">
         <description>Create PicklistRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -164,7 +164,7 @@
         <override name="fromDate" optional="true"/>
     </service>
     <service name="updatePicklistRole" default-entity-name="PicklistRole" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="updatePicklistRole" auth="true">
         <description>Update PicklistRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -173,7 +173,7 @@
         </auto-attributes>
     </service>
     <service name="deletePicklistRole" default-entity-name="PicklistRole" engine="simple"
-            location="org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/picklist/PicklistServices.xml" invoke="deletePicklistRole" auth="true">
         <description>Delete PicklistRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>

Modified: ofbiz/trunk/applications/product/servicedef/services_pricepromo.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_pricepromo.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_pricepromo.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_pricepromo.xml Thu Mar 19 04:27:30 2009
@@ -66,65 +66,65 @@
     </service>
 
     <service name="createProductPriceRule" default-entity-name="ProductPriceRule" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceRule" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceRule" auth="true">
         <description>Create an ProductPriceRule</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="ruleName" optional="false"/>
     </service>
     <service name="updateProductPriceRule" default-entity-name="ProductPriceRule" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceRule" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceRule" auth="true">
         <description>Update an ProductPriceRule</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPriceRule" default-entity-name="ProductPriceRule" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceRule" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceRule" auth="true">
         <description>Delete an ProductPriceRule</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPriceCond" default-entity-name="ProductPriceCond" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceCond" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceCond" auth="true">
         <description>Create an ProductPriceCond</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="productPriceCondSeqId" mode="OUT"/>
     </service>
     <service name="updateProductPriceCond" default-entity-name="ProductPriceCond" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceCond" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceCond" auth="true">
         <description>Update an ProductPriceCond</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPriceCond" default-entity-name="ProductPriceCond" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceCond" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceCond" auth="true">
         <description>Delete an ProductPriceCond</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPriceAction" default-entity-name="ProductPriceAction" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceAction" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="createProductPriceAction" auth="true">
         <description>Create an ProductPriceAction</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="productPriceActionSeqId" mode="OUT"/>
     </service>
     <service name="updateProductPriceAction" default-entity-name="ProductPriceAction" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceAction" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="updateProductPriceAction" auth="true">
         <description>Update an ProductPriceAction</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPriceAction" default-entity-name="ProductPriceAction" engine="simple"
-                location="org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceAction" auth="true">
+                location="component://product/script/org/ofbiz/product/price/PriceServices.xml" invoke="deleteProductPriceAction" auth="true">
         <description>Delete an ProductPriceAction</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- Product Promotion Services -->
     <service name="createProductPromo" default-entity-name="ProductPromo" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromo" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromo" auth="true">
         <description>Create a ProductPromo</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -137,7 +137,7 @@
         <override name="promoText" allow-html="safe"/>
     </service>
     <service name="updateProductPromo" default-entity-name="ProductPromo" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromo" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromo" auth="true">
         <description>Update a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -149,13 +149,13 @@
         <override name="promoText" allow-html="safe"/>
     </service>
     <service name="deleteProductPromo" default-entity-name="ProductPromo" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromo" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromo" auth="true">
         <description>Delete a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPromoAction" default-entity-name="ProductPromoAction" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoAction" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoAction" auth="true">
         <description>Create a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -163,37 +163,37 @@
         <override name="productPromoActionEnumId" optional="false"/>
     </service>
     <service name="updateProductPromoAction" default-entity-name="ProductPromoAction" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoAction" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoAction" auth="true">
         <description>Update a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoAction" default-entity-name="ProductPromoAction" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoAction" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoAction" auth="true">
         <description>Delete a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPromoCategory" default-entity-name="ProductPromoCategory" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCategory" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCategory" auth="true">
         <description>Create a ProductPromoCategory</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateProductPromoCategory" default-entity-name="ProductPromoCategory" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCategory" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCategory" auth="true">
         <description>Update a ProductPromoCategory</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoCategory" default-entity-name="ProductPromoCategory" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCategory" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCategory" auth="true">
         <description>Delete a ProductPromoCategory</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPromoCode" default-entity-name="ProductPromoCode" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCode" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCode" auth="true">
         <description>Create a ProductPromoCode</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -204,7 +204,7 @@
         </auto-attributes>
     </service>
     <service name="updateProductPromoCode" default-entity-name="ProductPromoCode" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCode" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCode" auth="true">
         <description>Update a ProductPromoCode</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -215,7 +215,7 @@
         </auto-attributes>
     </service>
     <service name="deleteProductPromoCode" default-entity-name="ProductPromoCode" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCode" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCode" auth="true">
         <description>Delete a ProductPromoCode</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
@@ -227,13 +227,13 @@
     </service>
 
     <service name="createProductPromoCodeEmail" default-entity-name="ProductPromoCodeEmail" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCodeEmail" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCodeEmail" auth="true">
         <description>Create a ProductPromoCodeEmail</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoCodeEmail" default-entity-name="ProductPromoCodeEmail" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCodeEmail" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCodeEmail" auth="true">
         <description>Delete a ProductPromoCodeEmail</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
@@ -245,13 +245,13 @@
     </service>
 
     <service name="createProductPromoCodeParty" default-entity-name="ProductPromoCodeParty" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCodeParty" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCodeParty" auth="true">
         <description>Create a ProductPromoCodeParty</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoCodeParty" default-entity-name="ProductPromoCodeParty" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCodeParty" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCodeParty" auth="true">
         <description>Delete a ProductPromoCodeParty</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
@@ -269,57 +269,57 @@
     </service>
 
     <service name="createProductPromoCond" default-entity-name="ProductPromoCond" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCond" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoCond" auth="true">
         <description>Create a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="productPromoCondSeqId" mode="OUT"/>
     </service>
     <service name="updateProductPromoCond" default-entity-name="ProductPromoCond" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCond" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoCond" auth="true">
         <description>Update a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoCond" default-entity-name="ProductPromoCond" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCond" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoCond" auth="true">
         <description>Delete a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPromoProduct" default-entity-name="ProductPromoProduct" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoProduct" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoProduct" auth="true">
         <description>Create a ProductPromoProduct</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateProductPromoProduct" default-entity-name="ProductPromoProduct" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoProduct" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoProduct" auth="true">
         <description>Update a ProductPromoProduct</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteProductPromoProduct" default-entity-name="ProductPromoProduct" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoProduct" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoProduct" auth="true">
         <description>Delete a ProductPromoProduct</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createProductPromoRule" default-entity-name="ProductPromoRule" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoRule" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="createProductPromoRule" auth="true">
         <description>Create a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
         <override name="productPromoRuleId" mode="OUT"/>
     </service>
     <service name="updateProductPromoRule" default-entity-name="ProductPromoRule" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoRule" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="updateProductPromoRule" auth="true">
         <description>Update a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
     </service>
     <service name="deleteProductPromoRule" default-entity-name="ProductPromoRule" engine="simple"
-                location="org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoRule" auth="true">
+                location="component://product/script/org/ofbiz/product/promo/PromoServices.xml" invoke="deleteProductPromoRule" auth="true">
         <description>Delete a ProductPromo</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>

Modified: ofbiz/trunk/applications/product/servicedef/services_rental.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_rental.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_rental.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_rental.xml Thu Mar 19 04:27:30 2009
@@ -23,7 +23,7 @@
     <description>Product Component Services</description>
 
     <service name="createFixedAssetAndLinkToProduct" default-entity-name="FixedAsset" engine="simple"
-                location="org/ofbiz/product/rental/RentalServices.xml" invoke="createFixedAssetAndLinkToProduct" auth="true">
+                location="component://product/script/org/ofbiz/product/rental/RentalServices.xml" invoke="createFixedAssetAndLinkToProduct" auth="true">
         <description>Create an FixedAsset and link to an existing product to ease rental products creation</description>
         <attribute name="productId" mode="IN" type="String"/>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
@@ -31,7 +31,7 @@
     </service>
 
     <service name="getProductFirstRelatedFixedAsset" engine="simple"
-                location="org/ofbiz/product/rental/RentalServices.xml" invoke="getProductFirstRelatedFixedAsset" auth="true">
+                location="component://product/script/org/ofbiz/product/rental/RentalServices.xml" invoke="getProductFirstRelatedFixedAsset" auth="true">
         <description>Most rental products are associated with one fixed asset only, this service will return the first genericValue fixedAsset</description>
         <attribute name="productId" mode="INOUT" type="String"/>
         <attribute name="fixedAssetId" mode="OUT" type="String" optional="true"/>

Modified: ofbiz/trunk/applications/product/servicedef/services_shipment.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_shipment.xml?rev=755831&r1=755830&r2=755831&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_shipment.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_shipment.xml Thu Mar 19 04:27:30 2009
@@ -26,49 +26,49 @@
 
     <!-- Shipment Services -->
     <service name="createCarrierShipmentMethod" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createCarrierShipmentMethod" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createCarrierShipmentMethod" auth="true">
         <description>Creates A CarrierShipmentMethod</description>
         <auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="CarrierShipmentMethod" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateCarrierShipmentMethod" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateCarrierShipmentMethod" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateCarrierShipmentMethod" auth="true">
         <description>Updates A CarrierShipmentMethod</description>
         <auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="CarrierShipmentMethod" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteCarrierShipmentMethod" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteCarrierShipmentMethod" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteCarrierShipmentMethod" auth="true">
         <description>Deletes A CarrierShipmentMethod</description>
         <auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
     </service>
     <service name="createShipmentMethodType" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentMethodType" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentMethodType" auth="true">
         <description>Creates A ShipmentMethodType</description>
         <auto-attributes entity-name="ShipmentMethodType" mode="IN" optional="false"/>
         <override name="sequenceNum" optional="true"/>
     </service>
     <service name="updateShipmentMethodType" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentMethodType" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentMethodType" auth="true">
         <description>Updates A ShipmentMethodType</description>
         <auto-attributes entity-name="ShipmentMethodType" mode="IN" optional="false"/>
         <override name="sequenceNum" optional="true"/>
     </service>
     <service name="deleteShipmentMethodType" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentMethodType" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentMethodType" auth="true">
         <description>Deletes A ShipmentMethodType</description>
         <auto-attributes entity-name="ShipmentMethodType" include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="createOrderShipmentPlan" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createOrderShipmentPlan" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createOrderShipmentPlan" auth="true">
         <description>Create Shipment, ShipmentItems and OrderShipment</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="shipmentId" type="String" mode="OUT" optional="true"/>
     </service>
 
     <service name="quickShipEntireOrder" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipEntireOrder" auth="true" transaction-timeout="600">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipEntireOrder" auth="true" transaction-timeout="600">
         <description>Quick Ships An Entire Order Creating One Shipment Per Facility and Ship Group.  All approved order items are
           automatically issued in full and put into one package.  The shipment is created in the INPUT status and then updated to
           PACKED and SHIPPED.
@@ -80,7 +80,7 @@
         <attribute name="shipmentShipGroupFacilityList" type="List" mode="OUT" optional="false"/>
     </service>
     <service name="quickShipOrderByItem" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipOrderByItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipOrderByItem" auth="true">
         <description>Quick Ships An Order By Item</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="shipGroupSeqId" type="String" mode="IN" optional="false"/>
@@ -90,7 +90,7 @@
         <attribute name="shipmentId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="quickShipPurchaseOrder" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipPurchaseOrder" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickShipPurchaseOrder" auth="true">
         <description>The mirror of quickShipEntireOrder, this service automatically creates shipments for an entire purchase order.  
           All order items on each ship group is created as a Shipment.  All items on a Shipment are automatically issued to a Package.
           The shipment's status is first set to CREATED and then set as SHIPPED.  The facilityId is used to set the destinationFacilityId
@@ -100,7 +100,7 @@
         <attribute name="facilityId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="createShipmentForReturn" default-entity-name="ReturnHeader" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentForReturn">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentForReturn">
         <description>Create a Return Shipment with information from ReturnHeader fields</description>
         <required-permissions join-type="AND">
             <check-permission permission="FACILITY" action="_CREATE"/>
@@ -109,7 +109,7 @@
         <attribute name="shipmentId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createShipmentAndItemsForReturn" default-entity-name="ReturnHeader" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentAndItemsForReturn">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentAndItemsForReturn">
         <description>Create a Return Shipment and ShipmentItems with information from ReturnHeader and ReturnItems</description>
         <required-permissions join-type="AND">
             <check-permission permission="FACILITY" action="_CREATE"/>
@@ -119,7 +119,7 @@
     </service>
 
     <service name="createShipmentAndItemsForVendorReturn" default-entity-name="Shipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentAndItemsForVendorReturn">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentAndItemsForVendorReturn">
         <description>Create a Return Shipment and ShipmentItems with primaryReturnId</description>
         <required-permissions join-type="AND">
             <check-permission permission="FACILITY" action="_CREATE"/>
@@ -130,7 +130,7 @@
     </service>
         
     <service name="createShipment" default-entity-name="Shipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipment" auth="true">
         <description>Create Shipment</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="pk" mode="IN" optional="true"/>
@@ -142,7 +142,7 @@
         </auto-attributes>
     </service>
     <service name="updateShipment" default-entity-name="Shipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipment" auth="true">
         <description>Update Shipment</description>
         <auto-attributes include="pk" mode="INOUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -159,27 +159,27 @@
         <attribute name="oldDestinationFacilityId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="deleteShipment" default-entity-name="Shipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipment" auth="true">
         <description>Delete Shipment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <service name="setShipmentSettingsFromPrimaryOrder" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentSettingsFromPrimaryOrder" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentSettingsFromPrimaryOrder" auth="true">
         <description>Set Shipment Settings From Primary Order</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="setShipmentSettingsFromFacilities" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentSettingsFromFacilities" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentSettingsFromFacilities" auth="true">
         <description>Set Shipment Settings From Facilities</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="sendShipmentScheduledNotification" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="sendShipmentScheduledNotification" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="sendShipmentScheduledNotification" auth="true">
         <description>Send Shipment Scheduled Notification</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="balanceItemIssuancesForShipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="balanceItemIssuancesForShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="balanceItemIssuancesForShipment" auth="true">
         <description>
             Release the purchase order's items assigned to the shipment but not
             actually received; it is invoked as a seca when the purchase shipment
@@ -188,12 +188,12 @@
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="checkCancelItemIssuanceAndOrderShipmentFromShipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="checkCancelItemIssuanceAndOrderShipmentFromShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="checkCancelItemIssuanceAndOrderShipmentFromShipment" auth="true">
         <description>Check Shipment Items and cancel Item Issuance and Order Shipment</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="quickDropShipOrder" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickDropShipOrder" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="quickDropShipOrder" auth="true">
         <description>Creates a drop shipment for a ship group and calls updateShipment twice in succession to set
             shipment status to PURCH_SHIP_SHIPPED and then to PURCH_SHIP_RECEIVED</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
@@ -203,26 +203,26 @@
 
     <!-- ShipmentItem Services -->
     <service name="createShipmentItem" default-entity-name="ShipmentItem" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentItem" auth="true">
         <description>Create ShipmentItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="shipmentItemSeqId" mode="INOUT" optional="true"/>
     </service>
     <service name="updateShipmentItem" default-entity-name="ShipmentItem" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentItem" auth="true">
         <description>Update ShipmentItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentItem" default-entity-name="ShipmentItem" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentItem" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentItem" auth="true">
         <description>Delete ShipmentItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     
     <service name="splitShipmentItemByQuantity" engine="simple"
-        location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="splitShipmentItemByQuantity">
+        location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="splitShipmentItemByQuantity">
         <description>Splits the specified ShipmentItem creating a new ShipmentItem with the given newItemQuantity.
             NOTE that this does manage OrderShipment records, but NOTHING else, so it is only to be used for Shipment
             Plan stuff BEFORE the items are issued, shipment packed, etc.</description>
@@ -233,7 +233,7 @@
 
     <!-- ShipmentPackage Services -->
     <service name="createShipmentPackage" default-entity-name="ShipmentPackage" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackage" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackage" auth="true">
         <description>Create ShipmentPackage</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -242,38 +242,38 @@
         <override name="shipmentPackageSeqId" mode="INOUT" optional="true"/>
     </service>
     <service name="updateShipmentPackage" default-entity-name="ShipmentPackage" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackage" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackage" auth="true">
         <description>Update ShipmentPackage</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentPackage" default-entity-name="ShipmentPackage" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackage" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackage" auth="true">
         <description>Delete ShipmentPackage</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- ShipmentPackageContent Services -->
     <service name="createShipmentPackageContent" default-entity-name="ShipmentPackageContent" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackageContent" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackageContent" auth="true">
         <description>Create ShipmentPackageContent</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="shipmentPackageSeqId" mode="INOUT" optional="false"/>
     </service>
     <service name="updateShipmentPackageContent" default-entity-name="ShipmentPackageContent" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackageContent" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackageContent" auth="true">
         <description>Update ShipmentPackageContent</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentPackageContent" default-entity-name="ShipmentPackageContent" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackageContent" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackageContent" auth="true">
         <description>Delete ShipmentPackageContent</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <service name="addShipmentContentToPackage" default-entity-name="ShipmentPackageContent" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="addShipmentContentToPackage" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="addShipmentContentToPackage" auth="true">
         <description>Add Shipment Content To Package</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -283,58 +283,58 @@
 
     <!-- ShipmentPackageRouteSeg Services -->
     <service name="createShipmentPackageRouteSeg" default-entity-name="ShipmentPackageRouteSeg" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackageRouteSeg" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentPackageRouteSeg" auth="true">
         <description>Create ShipmentPackageRouteSeg</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateShipmentPackageRouteSeg" default-entity-name="ShipmentPackageRouteSeg" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackageRouteSeg" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentPackageRouteSeg" auth="true">
         <description>Update ShipmentPackageRouteSeg</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentPackageRouteSeg" default-entity-name="ShipmentPackageRouteSeg" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackageRouteSeg" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentPackageRouteSeg" auth="true">
         <description>Delete ShipmentPackageRouteSeg</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- ShipmentContactMech Services -->
     <service name="createShipmentContactMech" default-entity-name="ShipmentContactMech" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentContactMech" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentContactMech" auth="true">
         <description>Create ShipmentContactMech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateShipmentContactMech" default-entity-name="ShipmentContactMech" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentContactMech" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentContactMech" auth="true">
         <description>Update ShipmentContactMech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentContactMech" default-entity-name="ShipmentContactMech" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentContactMech" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentContactMech" auth="true">
         <description>Delete ShipmentContactMech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- ShipmentRouteSegment Services -->
     <service name="createShipmentRouteSegment" default-entity-name="ShipmentRouteSegment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentRouteSegment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createShipmentRouteSegment" auth="true">
         <description>Create ShipmentRouteSegment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="shipmentRouteSegmentId" mode="INOUT" optional="true"/>
     </service>
     <service name="updateShipmentRouteSegment" default-entity-name="ShipmentRouteSegment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentRouteSegment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentRouteSegment" auth="true">
         <description>Update ShipmentRouteSegment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteShipmentRouteSegment" default-entity-name="ShipmentRouteSegment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentRouteSegment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteShipmentRouteSegment" auth="true">
         <description>Delete ShipmentRouteSegment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
@@ -357,7 +357,7 @@
     <!-- ============================================================== -->
     <!-- ItemIssuance Services -->
     <service name="createItemIssuance" default-entity-name="ItemIssuance" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="createItemIssuance" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="createItemIssuance" auth="true">
         <description>Create ItemIssuance</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -365,7 +365,7 @@
         </auto-attributes>
     </service>
     <service name="updateItemIssuance" default-entity-name="ItemIssuance" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="updateItemIssuance" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="updateItemIssuance" auth="true">
         <description>Update ItemIssuance</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -373,25 +373,25 @@
         </auto-attributes>
     </service>
     <service name="deleteItemIssuance" default-entity-name="ItemIssuance" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="deleteItemIssuance" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="deleteItemIssuance" auth="true">
         <description>Delete ItemIssuance</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- ItemIssuanceRole Services -->
     <service name="createItemIssuanceRole" default-entity-name="ItemIssuanceRole" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="createItemIssuanceRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="createItemIssuanceRole" auth="true">
         <description>Create ItemIssuanceRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <service name="deleteItemIssuanceRole" default-entity-name="ItemIssuanceRole" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="deleteItemIssuanceRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="deleteItemIssuanceRole" auth="true">
         <description>Delete ItemIssuanceRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="issueOrderItemToShipment" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueOrderItemToShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueOrderItemToShipment" auth="true">
         <description>Issue an OrderItem to a Shipment - only for non-sales orders</description>
         <auto-attributes entity-name="Shipment" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="OrderItemShipGroupAssoc" include="pk" mode="IN" optional="false"/>
@@ -400,7 +400,7 @@
         <attribute name="itemIssuanceId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="issueOrderItemShipGrpInvResToShipment" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueOrderItemShipGrpInvResToShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueOrderItemShipGrpInvResToShipment" auth="true">
         <description>Add an OrderItemShipGrpInvRes to a Shipment - only for sales orders</description>
         <auto-attributes entity-name="Shipment" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="OrderItemShipGrpInvRes" include="pk" mode="IN" optional="false"/>
@@ -409,7 +409,7 @@
         <attribute name="itemIssuanceId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="issueInventoryItemToFixedAssetMaint" engine="simple"
-        location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueInventoryItemToFixedAssetMaint" auth="true">
+        location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueInventoryItemToFixedAssetMaint" auth="true">
         <description>Issue an InventoryItem to a FixedAssetMaint - for conversion to use as supples/parts</description>
         <auto-attributes entity-name="InventoryItem" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="FixedAssetMaint" include="pk" mode="IN" optional="false"/>
@@ -417,12 +417,12 @@
         <attribute name="itemIssuanceId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="returnInventoryItemIssuedToFixedAssetMaint" engine="simple"
-        location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="returnInventoryItemIssuedToFixedAssetMaint" auth="true">
+        location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="returnInventoryItemIssuedToFixedAssetMaint" auth="true">
         <description>Return InventoryItem Issued to a FixedAssetMaint - for conversion to use as supples/parts</description>
         <attribute name="itemIssuanceId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="cancelOrderItemIssuanceFromSalesShipment" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="cancelOrderItemIssuanceFromSalesShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="cancelOrderItemIssuanceFromSalesShipment" auth="true">
         <description>Cancel an ItemIssuance from Sales Shipment</description>
         <attribute name="itemIssuanceId" type="String" mode="IN" optional="false"/>
         <attribute name="cancelQuantity" type="BigDecimal" mode="IN" optional="true"/>
@@ -430,7 +430,7 @@
     </service>
 
     <service name="issueInventoryItemToShipment" engine="simple"
-            location="org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueInventoryItemToShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml" invoke="issueInventoryItemToShipment" auth="true">
         <description>Issue an InventoryItem to a Shipment</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
         <attribute name="shipmentItemSeqId" type="String" mode="IN" optional="false"/>
@@ -531,19 +531,19 @@
 
     <!-- Shipment Plan Services -->
     <service name="addOrderShipmentToShipment" engine="simple" default-entity-name="OrderShipment"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="addOrderShipmentToShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="addOrderShipmentToShipment" auth="true">
         <description>Add an OrderShipment and a ShipmentItem - only for sales orders</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="false"/>
         <override name="shipmentItemSeqId" mode="IN" optional="true"/>
     </service>
     <service name="removeOrderShipmentFromShipment" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="removeOrderShipmentFromShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="removeOrderShipmentFromShipment" auth="true">
         <description>Delete an OrderShipment and updates the ShipmentItem</description>
         <auto-attributes entity-name="OrderShipment" include="pk" mode="IN" optional="false"/>
     </service>
     <service name="getQuantityForShipment" engine="simple" default-entity-name="OrderItem"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="getQuantityForShipment" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="getQuantityForShipment" auth="true">
         <description>get the order item quantity still not put in shipments</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <attribute name="remainingQuantity" type="BigDecimal" mode="OUT" optional="false"/>
@@ -560,7 +560,7 @@
         <override name="quantityRejected" optional="false"/>
     </service>
     <service name="createShipmentReceipt" engine="simple"
-            location="org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="createShipmentReceipt" auth="true">
+            location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="createShipmentReceipt" auth="true">
         <description>Creates a ShipmentReceipt Record</description>
         <implements service="interfaceShipmentReceipt"/>
         <attribute name="receiptId" type="String" mode="OUT" optional="false"/>
@@ -578,7 +578,7 @@
     </service>
 
     <service name="receiveInventoryProduct" engine="simple" transaction-timeout="600"
-            location="org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="receiveInventoryProduct" auth="true">
+            location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="receiveInventoryProduct" auth="true">
         <description>Receive Inventory In Warehouse</description>
         <auto-attributes entity-name="InventoryItem" include="nonpk" mode="IN" optional="true">
             <exclude field-name="availableToPromiseTotal"/>
@@ -607,7 +607,7 @@
     </service>
 
     <service name="quickReceiveReturn" engine="simple"
-            location="org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="quickReceiveReturn" auth="true">
+            location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="quickReceiveReturn" auth="true">
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
         <attribute name="inventoryItemTypeId" type="String" mode="IN" optional="true"/>
         <attribute name="statusId" type="String" mode="IN" optional="true"/>
@@ -620,12 +620,12 @@
         <attribute name="roleTypeId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="createShipmentReceiptRole" engine="simple"
-            location="org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="createShipmentReceiptRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="createShipmentReceiptRole" auth="true">
         <description>Create a ShipmentReceipt Role entry</description>
         <implements service="interfaceShipmentReceiptRole"/>
     </service>
     <service name="removeShipmentReceiptRole" engine="simple"
-            location="org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="removeShipmentReceiptRole" auth="true">
+            location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="removeShipmentReceiptRole" auth="true">
         <description>Remove a ShipmentReceipt Role entry</description>
         <implements service="interfaceShipmentReceiptRole"/>
     </service>
@@ -701,18 +701,18 @@
 
     <!-- QuantityBreak services -->
     <service name="createQuantityBreak" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createQuantityBreak" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="createQuantityBreak" auth="true">
         <description>Create a QuantityBreak</description>
         <auto-attributes entity-name="QuantityBreak" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateQuantityBreak" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateQuantityBreak" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateQuantityBreak" auth="true">
         <description>Update a QuantityBreak</description>
         <auto-attributes entity-name="QuantityBreak" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="QuantityBreak" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteQuantityBreak" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteQuantityBreak" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="deleteQuantityBreak" auth="true">
         <description>Delete a QuantityBreak</description>
         <auto-attributes entity-name="QuantityBreak" include="pk" mode="IN" optional="false"/>
     </service>
@@ -729,7 +729,7 @@
     </service>
     
     <service name="issueSerializedInvToShipmentPackageAndSetTracking" engine="simple"
-            location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="issueSerializedInvToShipmentPackageAndSetTracking" auth="true">
+            location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="issueSerializedInvToShipmentPackageAndSetTracking" auth="true">
         <description></description>
         <attribute name="inventoryItemId" type="String" mode="IN" optional="false"/>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
@@ -750,7 +750,7 @@
         <attribute name="shipmentPackageSeqId" type="String" mode="IN" optional="true"/>
     </service>    
     <service name="setShipmentStatusPackedAndShipped" engine="simple"
-        location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentStatusPackedAndShipped" auth="true">
+        location="component://product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentStatusPackedAndShipped" auth="true">
         <description>Move a shipment into Packed status and then to Shipped status</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>