Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Peoplevox WMS Export DataDemonstrates how to export data from a Peoplevox Warehouse Management System (WMS) using the GetData. It can return up to 1000 records for each call. The page number and number of items per page parameters are used to repeat the same method to return pages of information.
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' Sends a POST that looks like this: ' POST /PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx HTTP/1.1 ' Content-Type: text/xml;charset=UTF-8 ' SOAPAction: http://www.peoplevox.net/GetData ' Content-Length: (automatically computed and added by Chilkat) ' Host: qac.peoplevox.net ' ' <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:peop="http://www.peoplevox.net/"> ' <soap:Header> ' <peop:UserSessionCredentials> ' <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId> ' <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId> ' <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId> ' </peop:UserSessionCredentials> ' </soap:Header> ' <soap:Body> ' <peop:GetData> ' <peop:getRequest> ' <peop:TemplateName>Item Types</peop:TemplateName> ' <peop:PageNo>1</peop:PageNo> ' <peop:ItemsPerPage>10</peop:ItemsPerPage> ' <peop:SearchClause>Name.Contains("T")</peop:SearchClause> ' </peop:getRequest> ' </peop:GetData> ' </soap:Body> ' </soap:Envelope> ' ' A few helpful notes about this request: ' 1) Notice that a UserId is needed here. This is different than the username required for Peoplevox authentication. ' The UserId for the admin account is 1. ' 2) The sample data contains a TEST product with SKU/Code= "TEST". Search key is set to "T". ' Dim sbSoapXml As Chilkat.StringBuilder Set sbSoapXml = Chilkat.NewStringBuilder success = sbSoapXml.Append("<?xml version=""1.0"" encoding=""utf-8""?>" & vbCrLf) success = sbSoapXml.Append("<soap:Envelope xmlns:soap=""http://www.w3.org/2003/05/soap-envelope"" xmlns:peop=""http://www.peoplevox.net/"">" & vbCrLf) success = sbSoapXml.Append(" <soap:Header>" & vbCrLf) success = sbSoapXml.Append(" <peop:UserSessionCredentials>" & vbCrLf) success = sbSoapXml.Append(" <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>" & vbCrLf) success = sbSoapXml.Append(" <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>" & vbCrLf) success = sbSoapXml.Append(" <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>" & vbCrLf) success = sbSoapXml.Append(" </peop:UserSessionCredentials>" & vbCrLf) success = sbSoapXml.Append(" </soap:Header>" & vbCrLf) success = sbSoapXml.Append(" <soap:Body>" & vbCrLf) success = sbSoapXml.Append(" <peop:GetData>" & vbCrLf) success = sbSoapXml.Append(" <peop:getRequest>" & vbCrLf) success = sbSoapXml.Append(" <peop:TemplateName>Item Types</peop:TemplateName>" & vbCrLf) success = sbSoapXml.Append(" <peop:PageNo>1</peop:PageNo>" & vbCrLf) success = sbSoapXml.Append(" <peop:ItemsPerPage>10</peop:ItemsPerPage>" & vbCrLf) success = sbSoapXml.Append(" <peop:SearchClause>Name.Contains(""T"")</peop:SearchClause>" & vbCrLf) success = sbSoapXml.Append(" </peop:getRequest>" & vbCrLf) success = sbSoapXml.Append(" </peop:GetData>" & vbCrLf) success = sbSoapXml.Append(" </soap:Body>" & vbCrLf) success = sbSoapXml.Append("</soap:Envelope>") Dim req As Chilkat.HttpRequest Set req = Chilkat.NewHttpRequest req.HttpVerb = "POST" req.SendCharset = True req.Charset = "utf-8" req.AddHeader "Content-Type","text/xml" req.AddHeader "SOAPAction","http://www.peoplevox.net/GetData" req.Path = "/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx" success = req.LoadBodyFromString(sbSoapXml.GetAsString(),"utf-8") Dim http As Chilkat.Http Set http = Chilkat.NewHttp http.FollowRedirects = True Set resp = http.SynchronousRequest("qac.peoplevox.net",443,True,req) If (http.LastMethodSuccess <> True) Then Debug.Print http.LastErrorText Exit Sub End If ' We should expect a 200 response if successful. If (resp.StatusCode <> 200) Then Debug.Print "Response StatusCode = "; resp.StatusCode Debug.Print "Response StatusLine: "; resp.StatusLine Debug.Print "Response Header:" Debug.Print resp.Header Debug.Print resp.BodyStr Exit Sub End If Dim xmlResponse As Chilkat.Xml Set xmlResponse = Chilkat.NewXml success = xmlResponse.LoadXml(resp.BodyStr) Debug.Print xmlResponse.GetXml() ' A sample response is shown below. The following code loads the CSV into a Chilkat CSV object, and then demonstrates how to access the data from the CSV API. detail = xmlResponse.ChilkatPath("soap:Body|GetDataResponse|GetDataResult|Detail|*") Dim csv As Chilkat.Csv Set csv = Chilkat.NewCsv csv.HasColumnNames = True success = csv.LoadFromString(detail) Debug.Print "NumRows = "; csv.NumRows Debug.Print "NumColumns = "; csv.NumColumns ' Iterate over the rows, getting the ItemCode, Name, and Barcode i = 0 numRows = csv.NumRows Do While i < numRows Debug.Print "ItemCode: "; csv.GetCellByName(i,"ItemCode") Debug.Print "Name: "; csv.GetCellByName(i,"Name") Debug.Print "Barcode: "; csv.GetCellByName(i,"Barcode") Debug.Print "-" i = i + 1 Loop ' <?xml version="1.0" encoding="utf-8" ?> ' <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ' <soap:Body> ' <GetDataResponse xmlns="http://www.peoplevox.net/"> ' <GetDataResult> ' <ResponseId>0</ResponseId> ' <TotalCount>7</TotalCount> ' <Detail>"ItemCode","Name","Barcode","Description","ItemGroup","UnitOfMeasure","DefaultEconomicOrderQuantity","DefaultLeadTime","DefaultSuppliersPartNumber","HasSerialNumbers","UseManufacturersSerialNumber","ReorderPoint","PickPolicy","Traceability","ShelfLife","DefaultNumberItemsPerContainer","DefaultContainerType","DefaultNumberItemsPerOuterCase","DefaultNumberItemsPerInnerCase","BuyPrice","WholesalePrice","RetailPrice","Weight","WeightMeasure","Height","Width","Depth","DimensionMeasure","Tags","Attribute1","Attribute2","Attribute3","Attribute4","Attribute5","Attribute6","Attribute7","Attribute8","Attribute9","Attribute10","Attribute11","Attribute12","Attribute13","Attribute14","Attribute15","OnHand","Allocated","Available","POQuantityOutstanding","MinimumPickLocationQuantity","DefaultReplenishmentQuantity" ' "B246","48 PACK TENNIS BALLS","503147002876","","Item group","EA","","","","False","False","0","","False","","288","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","9995","520","9475","0","0","0" ' "BGG1411","Scan testing product","503147011937","","Group1","EA","","","","False","False","0","","False","","288","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","0","0","0","0","0","0" ' "OLOO15","TENT PEG REMOVER","503147006613","","Group1","EA","","","","False","False","0","","False","","80","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","15","9985","0","0","0" ' "TEST","testing product","123456789","testing product ' line 2","Group1","EA","","","","False","False","0","","False","","70","Pallet","20","10","0","0","0","10.00","kg","120.00","10.00","12.00","cm","","","","","","","","","","","","","","","","","0","0","0","0","0","0" ' "TY3120","PLASTIC COATED PLAYING CARDS","503147001942","","Item group","EA","","","","False","False","0","","False","","255","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","213","9787","0","0","0" ' "TY5263","WATER ARROWS","503147007813","","Item group","EA","","","","False","False","0","","False","","144","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","576","9424","0","0","0" ' "TY5281","QUOITS SET","503147007851","","Item group","EA","","","","False","False","0","","False","","48","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","0","10000","0","0","0"</Detail> ' <Statuses /> ' <ImportingQueueId>0</ImportingQueueId> ' <SalesOrdersToDespatchIds /> ' </GetDataResult> ' </GetDataResponse> ' </soap:Body> ' </soap:Envelope> |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.