예제 #1
0
파일: DLS.cs 프로젝트: alefurman40/api_2
        // Imported from WS
        private string getResponseFromDLS(string data)
        {
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;


            #region Variables

            string          url = "", referrer, contentType, accept, method, doc = "";
            CookieContainer container = new CookieContainer();

            url         = "https://dlsworldwideproxy.rrd.com/services/api/v1/RateShop/RateRequest";
            referrer    = "";
            contentType = "application/xml";
            method      = "POST";
            accept      = "text/xml";

            #endregion

            try
            {
                #region Post Data

                DB.Log("getRateFromDLS Alex2015 data", data);

                #endregion

                #region Authentication Headers

                string[] headerNames  = new string[2];
                string[] headerValues = new string[2];

                headerNames[0] = "UserName";
                headerNames[1] = "APIKey";

                headerValues[0] = UserName;
                headerValues[1] = APIKey;

                #endregion

                doc = (string)HelperFuncs.generic_http_request_addHeaders("string", container, url, referrer, contentType, accept, method,
                                                                          data, false, headerNames, headerValues);

                return(doc);

                #region Not used
                //url = "https://dlsworldwideproxy-stage.rrd.com/services/api/v1/RateShop/RateRequest";
                //url = "https://dlsworldwideproxy-stage.rrd.com/services";
                #endregion
            }
            catch (Exception e)
            {
                DB.Log("getRateFromDLS", e.ToString());
                return("error");
            }
        }
예제 #2
0
        public void GetResultObjectFromOldDominion_XML(ref GCMRateQuote gcmRateQuote)
        {
            try
            {
                //DB.Log("GetResultObjectFromOldDominion zips, acct",
                //    string.Concat(quoteData.origZip, ", ", quoteData.destZip, ", ", acctInfo.acctNum));

                if (quoteData.AccessorialsObj.TRADEPU.Equals(true) || quoteData.AccessorialsObj.TRADEDEL.Equals(true))
                {
                    return;
                }

                #region Variables

                string url = "", referrer, contentType, accept, method, doc = "", data = "";

                url         = "https://www.odfl.com/wsRate_v4/RateService";
                referrer    = "";
                contentType = "text/xml; charset=utf-8";
                method      = "POST";
                accept      = "*/*";

                #endregion

                #region Build Freight Items

                //StringBuilder freightItems = new StringBuilder();
                string freightItems = string.Empty;
                string freightClass = string.Empty;
                for (byte i = 0; i < quoteData.m_lPiece.Length; i++)
                {
                    if (quoteData.m_lPiece[i].FreightClass.Equals("77.5"))
                    {
                        freightClass = "77";
                    }
                    else if (quoteData.m_lPiece[i].FreightClass.Equals("92.5"))
                    {
                        freightClass = "92";
                    }
                    else
                    {
                        freightClass = quoteData.m_lPiece[i].FreightClass;
                    }
                    freightItems += string.Concat(
                        "<freightItems><ratedClass>", freightClass,
                        "</ratedClass><weight>", quoteData.m_lPiece[i].Weight,
                        "</weight></freightItems>");
                }

                #endregion

                #region Accessorials

                /*
                 *
                 *  ARN Arrival Notification
                 *  HYD Lift Gate Service
                 * COD COD - requires COD amount
                 *  CA Appointment
                 * IND Insurance - requires insurance amount
                 *  IDC Inside Pickup/Delivery
                 *  OVL Overlength Article - 12' but less than 20'
                 *  RDC Residential/Non-Commercial Pickup/Delivery
                 *  CSD Construction Site Pickup/Delivery
                 * CDC Schools, Colleges, Churches Pickup/Delivery
                 * LDC Secured or Limited Access Pickup/Delivery
                 * SWD Self Storage Delivery
                 * PFF Protect From Freezing
                 *  HAZ Hazardous Material
                 *  OV2 Overlength Article - 20' to 28'
                 * DSM Delivery Service to Mines
                 * HSO – scale tickets per military move (Home Moves only)
                 * INH – home move insurance (Home Moves only)
                 *
                 */

                StringBuilder sbAccessorials = new StringBuilder();

                if (quoteData.AccessorialsObj.RESPU || quoteData.AccessorialsObj.RESDEL)
                {
                    sbAccessorials.Append("<accessorials>RDC</accessorials>");
                }

                if (quoteData.AccessorialsObj.CONPU || quoteData.AccessorialsObj.CONDEL)
                {
                    sbAccessorials.Append("<accessorials>CSD</accessorials>");
                }

                if (quoteData.AccessorialsObj.INSDEL)
                {
                    sbAccessorials.Append("<accessorials>IDC</accessorials>");
                }

                if (quoteData.AccessorialsObj.LGPU || quoteData.AccessorialsObj.LGDEL)
                {
                    sbAccessorials.Append("<accessorials>HYD</accessorials>");
                }

                if (quoteData.AccessorialsObj.APTDEL)
                {
                    sbAccessorials.Append("<accessorials>ARN</accessorials>");
                }

                if (quoteData.isHazmat.Equals(true))
                {
                    sbAccessorials.Append("<accessorials>HAZ</accessorials>");
                }

                double maxDim = 0;
                HelperFuncs.GetMaxDimension(ref quoteData.m_lPiece, ref maxDim);

                if (maxDim >= 240)
                {
                    sbAccessorials.Append("<accessorials>OVL</accessorials>");
                }
                else if (maxDim >= 144)
                {
                    sbAccessorials.Append("<accessorials>OV2</accessorials>");
                }
                else
                {
                    // Do nothing
                }

                #endregion

                #region Country

                string originCountry      = "usa";
                string destinationCountry = "usa";

                if (quoteData.origCountry.Equals("CANADA"))
                {
                    originCountry = "CAN";
                }

                if (quoteData.destCountry.Equals("CANADA"))
                {
                    destinationCountry = "CAN";
                }

                #endregion

                #region Post Data

                data = string.Concat("<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"><s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">",
                                     "<getLTLRateEstimate xmlns=\"http://myRate.ws.odfl.com/\"><arg0 xmlns=\"\">",

                                     sbAccessorials,
                                     "<destinationCountry>", destinationCountry, "</destinationCountry><destinationPostalCode>", quoteData.destZip, "</destinationPostalCode>",
                                     freightItems,
                                     //"<freightItems><ratedClass>55</ratedClass><weight>2012</weight></freightItems>",
                                     "<odfl4MePassword>", acctInfo.password, "</odfl4MePassword><odfl4MeUser>", acctInfo.username, "</odfl4MeUser>",
                                     "<odflCustomerAccount>", acctInfo.acctNum, "</odflCustomerAccount>",
                                     "<originCountry>", originCountry, "</originCountry><originPostalCode>", quoteData.origZip, "</originPostalCode>",
                                     "<requestReferenceNumber>false</requestReferenceNumber><shipType>LTL</shipType></arg0></getLTLRateEstimate></s:Body></s:Envelope>");

                //DB.Log("odfl request", data);

                #endregion

                #region Headers

                string[] headerNames  = new string[1];
                string[] headerValues = new string[1];

                headerNames[0] = "SOAPAction";

                headerValues[0] = "http://myRate.ws.odfl.com/RateDelegate/getLTLRateEstimateRequest";

                #endregion

                doc = (string)HelperFuncs.generic_http_request_addHeaders("string", null, url, referrer, contentType, accept, method,
                                                                          data, false, headerNames, headerValues);

                //DB.Log("odfl response", doc);

                #region Gather results into an object

                // Gather results into an object
                XmlDocument xmlDoc = new XmlDocument();
                xmlDoc.LoadXml(doc);

                XmlNodeList nodeList = xmlDoc.GetElementsByTagName("netFreightCharge");

                if (nodeList.Count > 0)
                {
                    string netFreightCharge = nodeList[0].InnerText.Trim();
                    //DB.Log("odfl", netFreightCharge);

                    nodeList = xmlDoc.GetElementsByTagName("serviceDays");

                    string serviceDays = string.Empty;
                    if (nodeList.Count > 0)
                    {
                        serviceDays = nodeList[0].InnerText.Trim();
                        //DB.Log("odfl serviceDays", serviceDays);
                    }

                    if (double.TryParse(netFreightCharge, out double TotalPrice))
                    {
                        //DB.Log("odfl parsed to double", TotalPrice.ToString());

                        #region Add manual Accessorial charges

                        if (quoteData.AccessorialsObj.RESPU && quoteData.AccessorialsObj.RESDEL)
                        {
                            TotalPrice += 70;
                        }

                        if (quoteData.AccessorialsObj.CONPU && quoteData.AccessorialsObj.CONDEL)
                        {
                            TotalPrice += 70;
                        }

                        if (quoteData.AccessorialsObj.LGPU && quoteData.AccessorialsObj.LGDEL)
                        {
                            TotalPrice += 70;
                        }

                        #endregion


                        gcmRateQuote = new GCMRateQuote
                        {
                            TotalPrice    = TotalPrice,
                            DisplayName   = acctInfo.displayName,
                            Documentation = "http://www.odfl.com/service/Expedited/ODFL_660.pdf",
                            BookingKey    = acctInfo.bookingKey,
                            CarrierKey    = acctInfo.carrierKey
                        };

                        if (int.TryParse(serviceDays, out int DeliveryDays))
                        {
                            gcmRateQuote.DeliveryDays = DeliveryDays;
                        }
                        //DB.Log("odfl ", "after service days");
                    }
                }

                #endregion
            }
            catch (Exception e)
            {
                DB.Log("odfl", e.ToString());
            }
        }