Sample code for 30+ languages & platforms
PowerBuilder

Peoplevox WMS Export Data

See more HTTP Examples

Demonstrates 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.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_SbSoapXml
oleobject loo_Req
oleobject loo_Http
oleobject loo_Resp
oleobject loo_XmlResponse
string ls_Detail
oleobject loo_Csv
integer i
integer li_NumRows

li_Success = 0

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------

// 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".
//     
loo_SbSoapXml = create oleobject
li_rc = loo_SbSoapXml.ConnectToNewObject("Chilkat.StringBuilder")
if li_rc < 0 then
    destroy loo_SbSoapXml
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_SbSoapXml.Append("<?xml version=~"1.0~" encoding=~"utf-8~"?>~r~n")
loo_SbSoapXml.Append("<soap:Envelope xmlns:soap=~"http://www.w3.org/2003/05/soap-envelope~" xmlns:peop=~"http://www.peoplevox.net/~">~r~n")
loo_SbSoapXml.Append("   <soap:Header>~r~n")
loo_SbSoapXml.Append("      <peop:UserSessionCredentials>~r~n")
loo_SbSoapXml.Append("         <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>~r~n")
loo_SbSoapXml.Append("         <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>~r~n")
loo_SbSoapXml.Append("         <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>~r~n")
loo_SbSoapXml.Append("      </peop:UserSessionCredentials>~r~n")
loo_SbSoapXml.Append("   </soap:Header>~r~n")
loo_SbSoapXml.Append("   <soap:Body>~r~n")
loo_SbSoapXml.Append("      <peop:GetData>~r~n")
loo_SbSoapXml.Append("         <peop:getRequest>~r~n")
loo_SbSoapXml.Append("            <peop:TemplateName>Item Types</peop:TemplateName>~r~n")
loo_SbSoapXml.Append("            <peop:PageNo>1</peop:PageNo>~r~n")
loo_SbSoapXml.Append("            <peop:ItemsPerPage>10</peop:ItemsPerPage>~r~n")
loo_SbSoapXml.Append("            <peop:SearchClause>Name.Contains(~"T~")</peop:SearchClause>~r~n")
loo_SbSoapXml.Append("         </peop:getRequest>~r~n")
loo_SbSoapXml.Append("      </peop:GetData>~r~n")
loo_SbSoapXml.Append("   </soap:Body>~r~n")
loo_SbSoapXml.Append("</soap:Envelope>")

loo_Req = create oleobject
li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest")

loo_Req.HttpVerb = "POST"
loo_Req.SendCharset = 1
loo_Req.Charset = "utf-8"
loo_Req.AddHeader("Content-Type","text/xml")
loo_Req.AddHeader("SOAPAction","http://www.peoplevox.net/GetData")
loo_Req.Path = "/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx"
li_Success = loo_Req.LoadBodyFromString(loo_SbSoapXml.GetAsString(),"utf-8")

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")

loo_Http.FollowRedirects = 1

loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpSReq("qac.peoplevox.net",443,1,loo_Req,loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_SbSoapXml
    destroy loo_Req
    destroy loo_Http
    destroy loo_Resp
    return
end if

// We should expect a 200 response if successful.
if loo_Resp.StatusCode <> 200 then
    Write-Debug "Response StatusCode = " + string(loo_Resp.StatusCode)
    Write-Debug "Response StatusLine: " + loo_Resp.StatusLine
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug loo_Resp.BodyStr
    destroy loo_SbSoapXml
    destroy loo_Req
    destroy loo_Http
    destroy loo_Resp
    return
end if

loo_XmlResponse = create oleobject
li_rc = loo_XmlResponse.ConnectToNewObject("Chilkat.Xml")

li_Success = loo_XmlResponse.LoadXml(loo_Resp.BodyStr)
Write-Debug loo_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.
ls_Detail = loo_XmlResponse.ChilkatPath("soap:Body|GetDataResponse|GetDataResult|Detail|*")

loo_Csv = create oleobject
li_rc = loo_Csv.ConnectToNewObject("Chilkat.Csv")

loo_Csv.HasColumnNames = 1
loo_Csv.LoadFromString(ls_Detail)

Write-Debug "NumRows = " + string(loo_Csv.NumRows)
Write-Debug "NumColumns = " + string(loo_Csv.NumColumns)

// Iterate over the rows, getting the ItemCode, Name, and Barcode
i = 0
li_NumRows = loo_Csv.NumRows
do while i < li_NumRows
    Write-Debug "ItemCode: " + loo_Csv.GetCellByName(i,"ItemCode")
    Write-Debug "Name: " + loo_Csv.GetCellByName(i,"Name")
    Write-Debug "Barcode: " + loo_Csv.GetCellByName(i,"Barcode")
    Write-Debug "-"
    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>


destroy loo_SbSoapXml
destroy loo_Req
destroy loo_Http
destroy loo_Resp
destroy loo_XmlResponse
destroy loo_Csv