ilscipio/scipio-erp

View on GitHub
applications/product/servicedef/services_shipment_fedex.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is subject to the terms and conditions defined in the
files 'LICENSE' and 'NOTICE', which are part of this source
code package.
-->

<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd">
  <description>Fedex Shipment Interface Services, based on Ship Manager Direct XML API</description>

  <!-- FDXSubscriptionRequest/FDXSubscriptionReply -->
  <service name="fedexSubscriptionRequest" engine="java" location="org.ofbiz.shipment.thirdparty.fedex.FedexServices" invoke="fedexSubscriptionRequest" auth="false">
    <description>Sends a subscription request to FedEx to get the meter number, which is required for Fedex Ship Manager Direct as shipping credential.
        You must supply a contact name and a partyId (usually your company's with a valid address and phone number per Fedex requirements.</description>
    <attribute name="contactPartyName" type="String" mode="IN" optional="false"/>
    <attribute name="companyPartyId" type="String" mode="IN" optional="false"/>
    <attribute name="replaceMeterNumber" type="Boolean" mode="IN" optional="false"/>
    <attribute name="shipmentGatewayConfigId" type="String" mode="IN" optional="false"/>
    <attribute name="configProps" type="String" mode="IN" optional="false"/>
    <attribute name="meterNumber" type="String" mode="OUT" optional="false"/>
  </service>

  <!-- FDXShipRequest/FDXShipReply -->
  <service name="fedexShipRequest" engine="java" location="org.ofbiz.shipment.thirdparty.fedex.FedexServices" invoke="fedexShipRequest" auth="false">
    <description>Schedule a shipment route segment with FedEx.  You will get back a label image and tracking number which are stored for you in the same
        ShipmentRouteSegment.</description>
    <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
    <attribute name="shipmentRouteSegmentId" type="String" mode="IN" optional="false"/>
  </service>
</services>