Jump to content

hamsgi

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

hamsgi's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi there I've put here a simple program I did to document an autoit program. It generates a text file with the variables/functions declared and function calls with the program line. For sure it can be enhanced (e.g. list variables not used). Hope it helps. Rgds HamSgi
  2. Hi there I did a simple module to generate a kind of documentation for a selected au3 program. It is not perfect (meaning anyone can improve it) but I found it very helpful. It generates a list with: - variables declared and the line numbers - Functions declared and the line numbers - Functions call and the line numbers Attached you will find the source + a rpt example. Rgds HamSgi Documenter.zip
  3. Hi there I'm struggling in calling a WEB SERVICE (SOAP) with AUTOIT. I tried many examples available in the internet but, unfortunately I could not make them work. I have a XML call which one works in XMLSPY (ALTOVA) but I don't know how to migrate it to AUTOIT (moreover get the results). Below the XML call <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SOAP-ENV:Header> <m:login xmlns:m="http://summary.webservice.inventory.abc.de/xsd"> <m:loginid>user_id</m:loginid> <m:password>pwd</m:password> </m:login> </SOAP-ENV:Header> <SOAP-ENV:Body> <m:summary xmlns:m="http://summary.webservice.inventory.abc.de/xsd"> <m:criteria> <m:client>CLICODE</m:client> <m:groupedByClient>true</m:groupedByClient> <m:groupedBySite>true</m:groupedBySite> <m:includeNonConformGoods>true</m:includeNonConformGoods> <m:includeOrderFulfillment>true</m:includeOrderFulfillment> <m:monitoringAlertStatusRed>true</m:monitoringAlertStatusRed> <m:monitoringAlertStatusYellow>true</m:monitoringAlertStatusYellow> <m:monitoringAlertStatusBlue>true</m:monitoringAlertStatusBlue> <m:monitoringAlertStatusGreen>true</m:monitoringAlertStatusGreen> <m:monitoringNonAlertStatus>true</m:monitoringNonAlertStatus> <m:ownStockOnly>true</m:ownStockOnly> <m:pageSize>10</m:pageSize> <m:site>My site</m:site> </m:criteria> </m:summary> </SOAP-ENV:Body> </SOAP-ENV:Envelope> After the call I would get the response as shown below: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> <soapenv:Body> <InventorySummaryResponse xmlns="http://summary.webservice.inventory.abc.de/xsd"> <moreResultsAvailable>false</moreResultsAvailable> <InventorySummaryLine> <client>CLICODE</client> <site>My Site</site> <article>50025555</article> <articleDescription>HUILE DOUCHE TRIPH MARACUJA 200ML</articleDescription> <available>474</available> <blocked>0</blocked> <inbound>0</inbound> <outbound>193</outbound> <openInbound>0</openInbound> <openOutbound>25</openOutbound> <openOutboundPartner>0</openOutboundPartner> <totalQty>667</totalQty> </InventorySummaryLine> </InventorySummaryResponse> </soapenv:Body> </soapenv:Envelope> Does somebody know how to make such SOAP call in AUTOIT? I need to prototype a project and this is the missing part to finish it. The WSDL file is attached. Thanks ahead for any input someone can provide. Ham Sgi Test-InventorySummaryWebService-20071204B.wsdl.txt
×
×
  • Create New...