!!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version. Publication Date 1.0 5/20/2015 Chakravarthy Sayani

Size: px
Start display at page:

Download "!!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version. Publication Date 1.0 5/20/2015 Chakravarthy Sayani"

Transcription

1 !!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version Publication Date Author 1.0 5/20/2015 Chakravarthy Sayani Record Description First Draft Page 1 of 17

2 ! Contents' Westcon Web Services... 1! Developer s Guide SAP Order Status... 1! Introduction... 3! Anatomy of the Web Service... 5! Security... 6! 1.1! Configure the Client for Security (for.net clients)... 7! 1.2! Configuring Security for non.net clients... 9! 2.! Order Status... 10! 2.0! Order Status SAMPLE REQUEST and RESPONSE (HTTP Soap Request and Response Platform Agnostic)... 11! 2.1! Order Status REQUEST SCHEMA... 15! 2.2! Order Status RESPONSE SCHEMA... 16!!! Page 2 of 17

3 Introduction! At Westcon Group, we help ease the flow of your own business process by providing you with the information you need on your transactions when you need it. The use of Web Services is an efficient method to exchange information directly between systems. These efficiencies are realized through the amount and frequency of distributor information which can be automatically entered directly into your system. The direct entry eliminates the manual keying of information as well as the time and cost of mailing and/or tracking documents. This document provides detailed instructions for using Westcon Web Services. These services will help you obtain pricing/availability/catalog related details as well as submitting a Purchase Order. At the end of the day, we would like you to run the Catalog Web Service and receive your custom catalog, search products and run Availability and Pricing transactions (Web Services) to get latest data. Depending on the response, form a Purchase Order document and submit it using the Purchase Order Web Service. Later, using the Order Tracking Web Service, check the status of your order; once shipped, track the status of the shipment using the Shipment Tracking Web Service. Finally, if there is a return of merchandise, use the RMA Web Service to execute it. Our end goal is to provide all of our sales-business-functions seamlessly and in a service-oriented way to you. Here are some topics covered in this guide:!!!! Guidelines Security (authentication and authorization) Web Service Methods and implementations Case Scenarios In our implementation, we chose to expose singular web services from which you would create a proxy class instance and call available web methods. At this point, these methods are expecting valid schemas that will be made available in this guide. We are trying to make sure that we provide detailed and clear exceptions and errors to ease your handling of calls. We are compliant to SOAP 1.1 and 1.2 and hosting our web services offerings via IIS 6.0. We use the WSE 3.0 security standards. We are hoping that you will be able to implement these services with no hassle. Below is a detailed look at our architecture: Page 3 of 17

4 Customer Partner... Go&to&eAcom& and&get&your& ws&key Authentication And&Logging 1"#SOAP#Calls: Inbound#calls#to#a# specific#web#method# under#proxy#web#services 4A&WS&Response: Web&Service&will&strip&down& the&incoming&xml&and&relay&the& necessary&information&to&the& customer 2 Proxy&Web&Services Availability Pricing PO Order&Status WEB&SERVER 2"#XML#Request: Your#request#will#go#through#a# series#of#validation#and# enrichment#phases#before# getting#submitted#to#sap Validation&and& Enrichment 3"#XML#Response: You#will#receive#SOAP#Fault# messages#in#case#the# validation#steps#fail.#upon# successful#submission#you# will#receive#a#confirmation# number Westcon SAP&Services Page 4 of 17

5 Anatomy!of!the!Web!Service! 1-! Customer makes a SOAP Call: before performing this call, the customer must obtain the WS-key (which with the account number will become the authentication username and password. 2-! Call is received by the Proxy Web Services, which authenticates the user. In case of an error, the connection is terminated with a SOAP Fault (login failed) 3-! After a successful login, user s web service method call executes another web service call to the SAP ERP environment: a.! SAP Web Service Call (Order Status) 4-! Response is forwarded back to the pending proxy web service method which forwards the request back to the customer. At this point, the transaction is terminated, however certain values are cached. Page 5 of 17

6 Security!! An important aspect for the consumption of the web services is Security. Although transactions such as pricing or availability are not very content sensitive; they are, fact, caller-sensitive; that is, we need make sure that the caller group is a limited, authenticated set of users that can use the site. One way of making sure that this is the case is to give them an authentication key; a randomly generated key that the user needs to include in the Web Services WSE proxy request. One of the ideal places that this key can be obtained is the e-commerce website!! The customer, when they login, would see a link that says please obtain your web services key here which would take them to a web page where the key would appear as well as instructions on how to integrate certain web services to their e-commerce architecture. This key would be an assignment to the account. This value resides in the web services database. This key can be changed only on an request at this point. In the future, this functionality will be embedded to our e-commerce sites. Currently, our implementation is using WSE 3.0 Web Services Extensions offered by Microsoft. The security mechanism used underneath is WS-Security 1.1 compliant. You can find more about WSE 3.0 at the following site: Page 6 of 17

7 1.1! Configure!the!Client!for!Security!(for!.NET!clients)! Add Service Reference 1.1.1! Binding!Configuration! Add the bindings in the client application s config file as below: <binding'name="saporderstatussoapbinding"'' ''''''''''closetimeout="00:30:00"'opentimeout="00:30:00"'' ''''''''''receivetimeout="00:30:00"'sendtimeout="00:30:00">' ''<security'authenticationmode="usernameovertransport"'' ''''''''''''allowinsecuretransport="true"'messageprotectionorder="signbeforeencrypt"'/>' ''<textmessageencoding'messageversion="soap11wsaddressingaugust2004"'/>' ''<httptransport'maxreceivedmessagesize=" "'/>' </binding>! 1.1.1! Endpoint!Configuration! <endpoint'address=" ''binding="custombinding"'bindingconfiguration="saporderstatussoapbinding"' ''contract="westconwssaporderstatus.saporderstatussoap"'name="saporderstatussoap"'/>! 1.1.2! Sample!Client!Code! //Assuming'you'named'the'service'reference'as'WestconWsSapOrderStatus' using'westconwebservicesclient.westconwssaporderstatus;'...' public'void'saporderstatustest()' {' ''''var'orderstatusproxy'='new'saporderstatussoapclient' ''''{' ''''''''ClientCredentials'=' ''''''''{' ''''''''''''UserName'='{'UserName'='CustomerNumber,'Password'='Password'}' ''''''''}' ''''};' ' ''''var'header'='new'westconwssaporderstatus.authenticationheader' ''''{' ''''''''username'='customernumber,' ''''''''password'='password' ''''};' ' ''''var'request'='new'westconwssaporderstatus.dt_westconorderstatusrequest' ''''{' ''''''''WestconOrderStatus'='new'WestconWsSapOrderStatus.DT_WestconOrderStatusRequestWestconOrderStatus' ''''''''{' ''''''''''''CustomerAccountNumber'='CustomerNumber,' ''''''''''''OrderNumberType'='"W",' ''''''''''''Orders'='new[]' ''''''''''''{' ''''''''''''''''new'arrayofdt_westconorderstatusrequestwestconorderstatusorderorder' ''''''''''''''''{' ''''''''''''''''''''OrderNumber'='" "' ''''''''''''''''}' ''''''''''''},' ''''''''''''ReturnSerialNumberAndMACAddress'='true,' ''''''''''''WestconMetadata'='new'WestconWsSapOrderStatus.WestconMetadata' ''''''''''''{' ''''''''''''''''Culture'='"E",' ''''''''''''''''OperationType'='"Get",' ''''''''''''''''SourceSystem'='"B2B",' ''''''''''''''''TimeStamp'='DateTime.Now,' ''''''''''''''''TransactionID'='"Westcon'Order'Status'1.0"' Page 7 of 17

8 ''''''''''''}' ' ''''''''}' ''''};' ' ''''try' ''''{' ''''''''var'response'='orderstatusproxy.orderstatus(header,'request);' ''''}' ''''catch'(exception'e)' ''''{' ''''''''HandleException(e);' ''''}' }! Page 8 of 17

9 1.2! Configuring!Security!for!non.NET!clients! You can use the following header section added to your SOAP Header. Please keep in mind that all Element IDs can be static (not changing). Timestamps would have to be updated and wsuexpires needs to be greater than the time of the call <soap:envelope!! xmlns:soap=" xmlns:xsi=" xmlns:xsd=" xmlns:wsa=" xmlns:wsse=" xmlns:web=" xmlns:wsu=" <soap:header>! <wsa:action> <wsa:messageid>urn:uuid:4a66732ebc9ceb4e6db95e6bcf598399a2c7</wsa:messageid>! <wsa:replyto>! <wsa:address> </wsa:replyto>! <wsa:to> <wsse:security!soap:mustunderstand="1">! <wsu:timestamp!wsu:id="timestampbbce68cebb656db4403b8fbfbfc386a51b787">! <wsu:created>2014b05b01t21:08:33z</wsu:created>! <wsu:expires>2021b05b01t21:08:33z</wsu:expires>! </wsu:timestamp>! <wsse:usernametoken!! xmlns:wsu=" 0cfed848Bf6e6B4549B80d0B2dfe22761bdc">! <wsse:username>{your!username!from!subscriber!details}</wsse:username>! <wsse:password!type=" 1.0#PasswordText">{your!PASSWORD!from!Subscriber!Details}</wsse:Password>! <wsse:nonce>q/hne+v6lz77at5nulsllg==</wsse:nonce>! <wsu:created>2014b05b01t21:08:33z</wsu:created></wsse:usernametoken>! </wsse:security>! </soap:header>!!!!!!!!!!<soap:body>!.!.! You can find a sample request below in SAP Order Status Sample Code section. Page 9 of 17

10 2.!Order!Status! For items found in the catalog, you can call the purchase order function to transmit a purchase order. Below are the objects required for the purchase order call: (if you called your web reference IPURProxy) Proxy! Request! ORDSTATProxy.purchaseOrderWse proxywse = new ORDSTATProxy.purchaseOrderWse(); ORDSTATProxy.POInboundRequest po = new ORDSTATProxy.POInboundRequest();! Response! ORDSTATProxy.POInboundResponse res = proxywse.westconpurchaseorder(po);! Where westconorderstatus is the web method executed. Please find the Order Status Request and Response fields below with examples. Required fields must be filled in, in order to get proper data. There are 4 main sections that you need to populate for a successful order request:! OrderNumberType: W or C for Westcon or Customer Order Number to be queried (respectively). If you will use your own value use C ; if you will use the Westcon Order Number to query use W in this field! ReturnSerialNumberAndMACAddress: provide true or false to instruct the service to return the Serial Number and MAC Address information in the call.! CustomerAccountNumber: Provide your username as it appears in the Subscriber s Details Document. (This value has to match the Username under UsernameToken in the Soap Header section)! OrderNumber: please include one or more Order Numbers in the Orders block. You cannot mix and match Customer and Westcon Order Numbers. Page 10 of 17

11 2.0!Order! Status! SAMPLE! REQUEST! and! RESPONSE!(HTTP! Soap! Request! and!response!!platform!agnostic)! For more details about the values, please refer to the Order Status Request and Response Schemas below. Caution: -! Please make sure to set your Content-Type to text/xml -! Please make sure to use the same date/time format as suggested SAMPLE!ORDER!STATUS! <soap:envelope!! xmlns:soap=" xmlns:xsi=" xmlns:xsd=" xmlns:wsa=" xmlns:wsse=" xmlns:web=" xmlns:wsu=" <soap:header>! <wsa:action> <wsa:messageid>urn:uuid:4a66732ebc9ceb4e6db95e6bcf598399a2c7</wsa:messageid>! <wsa:replyto>! <wsa:address> >! </wsa:replyto>! <wsa:to> <wsse:security!soap:mustunderstand="1">! <wsu:timestamp!wsu:id="timestampbbce68cebb656db4403b8fbfbfc386a51b787">! <wsu:created>2014b05b01t21:08:33z</wsu:created>! <wsu:expires>2021b05b01t21:08:33z</wsu:expires>! </wsu:timestamp>! <wsse:usernametoken!! xmlns:wsu=" wsu:id="securitytokenb0cfed848bf6e6b4549b80d0b2dfe22761bdc">! <wsse:username>use!your!username!from!subscriber s!details!document</wsse:username>! <wsse:password!type=" tokenbprofileb1.0#passwordtext">!use!your!password!(admin!key)!from!subscriber s!details! Document!</wsse:Password>! <wsse:nonce>q/hne+v6lz77at5nulsllg==</wsse:nonce>! <wsu:created>2014b05b01t21:08:33z</wsu:created></wsse:usernametoken>! </wsse:security>! </soap:header>!!!!<soap:body>!!!!!!!<web:orderstatus>! Page 11 of 17

12 !!!!!!!!!!!!!!!<web:request>!!! <WestconOrderStatus>!!!!!!!!!!!!!<OrderNumberType>W</OrderNumberType>!!! <ReturnSerialNumberAndMACAddress>true</ReturnSerialNumberAndMACAddress>!!!!!!!!!!!!!<CustomerAccountNumber>xxxxxxxxx</CustomerAccountNumber>!!!!!!!!!!!!!<Orders>!!!!!!!!!!!!!!!!<Order>!!!!!!!!!!!!!!!!!!!<OrderNumber>xxxxxxxxxxx</OrderNumber>!!!!!!!!!!!!!!!!</Order>!!!!!!!!!!!!!</Orders>!!!!!!!!!!</WestconOrderStatus>!!!!!!!!!!</web:request>!!!!!!!</web:orderStatus>!!!!</soap:Body>! </soap:envelope>! SAMPLE!ORDER!STATUS!RESPONSE! <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" xmlns:wsa=" xmlns:wsse=" xmlns:wsu=" 1.0.xsd"> <soap:header> <wsa:action> <wsa:messageid>urn:uuid:da99da57-f44a-4105-b57c-c37aef35c2c7</wsa:messageid> <wsa:relatesto>urn:uuid:4a66732e-c9ce-4e6d-95e6-cf598399a2c7</wsa:relatesto> <wsa:to> <wsse:security> <wsu:timestamp wsu:id="timestamp-c2df5a27-2b1f c-b2d30c517ece"> <wsu:created> t22:06:38z</wsu:created> <wsu:expires> t22:11:38z</wsu:expires> </wsu:timestamp> </wsse:security> </soap:header> <soap:body> <orderstatusresponse xmlns=" <orderstatusresult> <WestconMetadata xmlns=""> <SourceSystem>B2B</SourceSystem> <TimeStamp> T22:06:36Z</TimeStamp> <OperationType>GET</OperationType> <Culture>E</Culture> <TransactionID>Westcon Order Status 1.0</TransactionID> Page 12 of 17

13 </WestconMetadata> <Orders xmlns=""> <Order> <ERPOrderNumber>xxxxxxxxxxxx</ERPOrderNumber> <CustomerOrderNumber>XXXXXX</CustomerOrderNumber> <OrderType>ZOR</OrderType> <HeaderStatusCode>74</HeaderStatusCode> <HeaderStatusDescription>Invoiced</HeaderStatusDescription> <OrderLines> <OrderLine> <ERPOrderLineNumber>000010</ERPOrderLineNumber> <ERPProductNumber>215180</ERPProductNumber> <LineQuantity>10.000</LineQuantity> <UnitOfMeasure>EA</UnitOfMeasure> <LineStatusCode>74</LineStatusCode> <LineStatusDescription>Invoiced</LineStatusDescription> <Tracking_Info> <Tracking_Number>XXXXXXXXXXXX</Tracking_Number> <Carrier_Name>US FDX 2-Day</Carrier_Name> </Tracking_Info> <ScheduleLines> <ScheduleLine> <PromisedDeliveryDate> </PromisedDeliveryDate> <PromisedQuantity>5.000</PromisedQuantity> <ScheduleLineStatusCode>74</ScheduleLineStatusCode> <ScheduleLineStatusDescription>Invoiced</ScheduleLineStatusDescription> </ScheduleLine> </ScheduleLines> <SerialNumbersandMACAddresses> <SerialNumberandMACAddress> <ProductSerialNumber/> <ProductMACAddress/> </SerialNumberandMACAddress> </SerialNumbersandMACAddresses> </OrderLine> <OrderLine> <ERPOrderLineNumber>000020</ERPOrderLineNumber> <ERPProductNumber>xxxxxxxxxx</ERPProductNumber> <LineQuantity>10.000</LineQuantity> <UnitOfMeasure>EA</UnitOfMeasure> <LineStatusCode>51</LineStatusCode> <LineStatusDescription>PO Sent</LineStatusDescription> <Tracking_Info> <Tracking_Number>xxxxxxxxxxxxx</Tracking_Number> <Carrier_Name>US FDX 2-Day</Carrier_Name> Page 13 of 17

14 </Tracking_Info> <ScheduleLines> <ScheduleLine> <PromisedDeliveryDate> </PromisedDeliveryDate> <PromisedQuantity>5.000</PromisedQuantity> <ScheduleLineStatusCode>51</ScheduleLineStatusCode> <ScheduleLineStatusDescription>PO Sent</ScheduleLineStatusDescription> </ScheduleLine> </ScheduleLines> <SerialNumbersandMACAddresses/> </OrderLine> </OrderLines> </Order> </Orders> </orderstatusresult> </orderstatusresponse> </soap:body> </soap:envelope> Page 14 of 17

15 2.1$Order$Status$REQUESTSCHEMA$ Merged$Schema$Name$ Required$ Repetitions$$ (0+,$1,$1+)$ Field$ Type/$ Length$ Example$ Comments$ WestconOrderStatus$!! 1!!!!! <WestconOrderStatus>$ CustomerAccountNumber! Required! 1! string(10)! !!! <CustomerAccountNumber> </CustomerAccountNumber>! OrderNumberType! Required! 1! string(1)! W! C!for!Customer!PO!Number,!W!for!Westcon!PO!Number!(W$is$ default)! ReturnSerialNumberAndMACAd determines!whether!serial!numbers!and!mac!addresses!are! Required! 1! boolean! TRUE! dress! returned! Orders$!! 1!!!!! <Orders>$ Order$!! 1!!!!! <Order>$!Repeat!for!multiple!orders! OrderNumber! Required!!! string(35)! ! Queried<OrderNumber>xxxx</OrderNumber>! Order$!! 1!!!!! <Order>$ Orders$!! 1!!!!! <Orders>$ WestconOrderStatus$!! 1!!!!! <WestconOrderStatus>$ Page 15 of 17

16 2.2$Order$Status$RESPONSE$SCHEMA$ Repetitio ns$$$(0+,$ 1,$1+)$ Merged$Schema$Name$ Field$Type/$ Length$ Example$ WestconOrderStatus$ 1!!!!! $$ Details$!!CustomerAccountNumber!!1! string(10)! ! Your!customer!account!number!returned! $$Errors$ 0+!!!!!!!!!ErrorNo!!!!! 1! Error!Number!!!!!ErrorDetail!!! text! System!Error.! Please!try! again! $$Errors$ 0+!!!!! $$ $$Orders$ 1!!!!! $$ This$block$will$be$populated$only$in$case$of$ system$errors$ Error!Details! $$$$Order$ 1+!!!!! $$!!!!!!ERPOrderNumber! 1! string(10)! 8500! Westcon!Order!Number!!!!!!!CustomerOrderNumber! 1!! String(40)! ! Customer!Order!Number!!!!!!!OrderType! 1! String(04)! ZOR,!ZRE! Order!Type!ZRE:!return!order,!ZOR:!regular!order!!!!!!!HeaderStatusCode! 1! String(02)! 71! Two!digit!number!!!!!!!HeaderStatusDescription! 1! String(40)! Invoiced! Description!for!the!HeaderStatusCode! $$$$$$OrderLines$ 1!!!!! $$ $$$$$$$$OrderLine$ 1+!!!!! $$!!!!!!!!!!ERPOrderLineNumber! 1! I(06)! 10! Order!Line!Number!!!!!!!!!!!ERPProductNumber! 1! String(18)! CP^7975G=! Item/Product/SKU!Number! LineQuantity! 1!!! 10! Quantity!! UnitOfMeasure! 1! String(02)! EA! Measurement!units!for!LineQuantity!!!!!!!!!!!LineStatusCode! 1! String(02)! IA! Internal!Order!Line!Status!Code!!!!!!!!!!!LineStatusDescription! 1! String(40)! Not!yet! Order!Line!Status!for!ZOR$Regular$Orders:!! Page 16 of 17

17 processed! Tracking_Info$ $$ $$ $$ $$ Tracking_Number!!!!!!!!! Carrier_Name!!!!!!!!! Tracking_Info$ $$ $$ $$ $$!!!!!!!!!!!!ScheduleLines! 1!!!!! $$ ScheduleLine$ 1+!!!!! $$!!!!!!!!!!!!!!ScheduleLineNumber! 1! I(06)! 1! Schedule!Line!Number!!!!!!!!!!!!!!!PromisedDeliveryDate! 1! DATS(08)! ! Promised!Delivery!Date!!!!!!!!!!!!!!!PromisedQuantity! 1! I(15)! 235! Promised!Quantity!!!!!!!!!!!!!!!ScheduleLineStatusCode! 1! String(02)! 71! Schedule!Line!Status!Code:!same!as!Line! Statuses,!not!all!Schedules!will!return!Status!!!!!!!!!!!!!!!ScheduleLineStatusDescription! 1!!! Invoiced! Description!for!ScheduleLineStatusCode! ScheduleLine$!!!!!! $$ ScheduleLines$!!!!!! $$ SerialNumbersandMACAddresses$ 0+!!!!! $$ SerialNumbersandMACAddress$ 0+!!!!! $$ ProductSerialNumber! 0+! String(20)! ! Serial!Number!for!given!Item!in!Schedule!Line! ProductMACAddress! 0+! String(20)! FF:AC:BB:22:3 3:44! MAC!Address!for!given!Item!in!Schedule!Line! SerialNumbersandMACAddress$ 0+!!!!! $$ SerialNumbersandMACAddresses$ 0+!!!!! $$ OrderLine$!!!!!! $$ OrderLines$!!!!!! $$ Order$!!!!!! $$ Orders$!!!!!! $$ WestconOrderStatus$!!!!!! $$ Page 17 of 17

!!!!! AVAILABILITY( Westcon!Web!Services! Developer s!guide! Revision History Document Version. Publication Date

!!!!! AVAILABILITY( Westcon!Web!Services! Developer s!guide! Revision History Document Version. Publication Date WestconWebServices Developer sguide AVAILABILITY( Revision History Document Version Publication Date Author Record Description 1.0 2/2/2008 Sedat Behar Start 1.1 7/10/2008 Sedat Behar Update with Production

More information

Oracle Hospitality OPERA Electronic Distribution Systems (OEDS) Activity Extension Web Service Specifications Version 5.1

Oracle Hospitality OPERA Electronic Distribution Systems (OEDS) Activity Extension Web Service Specifications Version 5.1 Oracle Hospitality OPERA Electronic Distribution Systems (OEDS) Activity Extension Web Service Specifications Version 5.1 January 2018 Copyright 2009, 2018, Oracle and/or its affiliates. All rights reserved.

More information

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM)

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM) IUID Registry Application Programming Interface (API) Version 5.11 Software User s Manual (SUM) Document Version 5.11 January 04, 2016 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared

More information

Secured ecollege Web Services Working with Web Services Security

Secured ecollege Web Services Working with Web Services Security ECOLLEGE Secured ecollege Web Services Working with Web Services Security VERSION 1.0 Revision History... 3 Introduction... 4 Definition... 4 Overview... 4 Authenticating SOAP Requests... 5 Securing the

More information

Oracle Hospitality OPERA Web Self- Service Housekeeping Web Service Specifications Version 5.1. September 2017

Oracle Hospitality OPERA Web Self- Service Housekeeping Web Service Specifications Version 5.1. September 2017 Oracle Hospitality OPERA Web Self- Service Housekeeping Web Service Specifications Version 5.1 September 2017 Copyright 2015, 2017, Oracle and/or its affiliates. All rights reserved. This software and

More information

The BritNed Explicit Auction Management System. Kingdom Web Services Interfaces

The BritNed Explicit Auction Management System. Kingdom Web Services Interfaces The BritNed Explicit Auction Management System Kingdom Web Services Interfaces Version 5.2 February 2015 Page 2 of 141 Contents 1. PREFACE... 7 1.1. Purpose of the Document... 7 1.2. Document Organization...

More information

SOA-Tag Koblenz 28. September Dr.-Ing. Christian Geuer-Pollmann European Microsoft Innovation Center Aachen, Germany

SOA-Tag Koblenz 28. September Dr.-Ing. Christian Geuer-Pollmann European Microsoft Innovation Center Aachen, Germany SOA-Tag Koblenz 28. September 2007 Dr.-Ing. Christian Geuer-Pollmann European Microsoft Innovation Center Aachen, Germany WS-FooBar Buchstabensuppe WS-BusinessActivity MTOM XPath InfoSet XML WS-Management

More information

Web Services and Services on the Web

Web Services and Services on the Web Web Services and Services on the Web Paul Downey BT W3C Workshop on the Web of Services for Enterprise Computing 27-28th February 2007 80s telcoms ICT ` EoI federation mobile outsourcing open ubiquitous

More information

Lookup Roles Application Programming Interface (API) Version Software User s Manual (SUM)

Lookup Roles Application Programming Interface (API) Version Software User s Manual (SUM) Lookup Roles Application Programming Interface (API) Version 5.11 Software User s Manual (SUM) Document Version 5.11 June 29, 2014 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared for:

More information

Provenance Situations: Use Cases for Provenance on Web Architecture

Provenance Situations: Use Cases for Provenance on Web Architecture Provenance Situations: Use Cases for Provenance on Web Architecture W3C Provenance XG http://www.w3.org/2005/incubator/prov/wiki October 28, 2010 1 Provenance and Web Architecture: Consider Five Diverse

More information

DocuSign Information Guide. Send On Behalf Of Functionality. Overview. Table of Contents

DocuSign Information Guide. Send On Behalf Of Functionality. Overview. Table of Contents DocuSign Information Guide Send On Behalf Of Functionality Overview The DocuSign Send On Behalf Of functionality permits automated sending through the DocuSign API by an integrated sender on behalf of

More information

SPARROW Gateway. Developer API. Version (Build 7373)

SPARROW Gateway. Developer API. Version (Build 7373) SPARROW Gateway Developer API Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2016 02 26 2.0 Initial document created Alexandra Blinova 2 Table of Contents

More information

Web Services Security: SAML Interop 1 Scenarios

Web Services Security: SAML Interop 1 Scenarios 1 2 3 4 Web Services Security: SAML Interop 1 Scenarios Working Draft 04, Jan 29, 2004 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 Document identifier: Location: http://www.oasis-open.org/committees/wss/

More information

IEEE Key Management Summit 2008

IEEE Key Management Summit 2008 OASIS Enterprise Key Management Infrastructure (EKMI) Version 1.3 Arshad Noor StrongAuth, Inc. Background OASIS EKMI TC Technical Committee with 4 goals: 1. Standardize Symmetric Key Services Markup Language

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

Real-Time Connectivity Specifications For. 270/271 and 276/277 Inquiry Transactions

Real-Time Connectivity Specifications For. 270/271 and 276/277 Inquiry Transactions Real-Time Connectivity Specifications For 270/271 and 276/277 Inquiry Transactions United Concordia Dental (UCD) March 22, 2018 1 Contents 1. Overview 2. Trading Partner Requirements 3. Model SOAP Messages

More information

Web Services Security SOAP Messages with Attachments (SwA) Profile 1.0 Interop 1 Scenarios

Web Services Security SOAP Messages with Attachments (SwA) Profile 1.0 Interop 1 Scenarios 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Web Services Security SOAP Messages with Attachments (SwA) Profile 1.0 Interop 1 Scenarios Working Draft 04, 21 Oct 2004 Document identifier:

More information

Fax Broadcast Web Services

Fax Broadcast Web Services Fax Broadcast Web Services Table of Contents WEB SERVICES PRIMER... 1 WEB SERVICES... 1 WEB METHODS... 1 SOAP ENCAPSULATION... 1 DOCUMENT/LITERAL FORMAT... 1 URL ENCODING... 1 SECURE POSTING... 1 FAX BROADCAST

More information

IEC Overview CIM University UCAIug Summit Austin, TX. 18 November 2011

IEC Overview CIM University UCAIug Summit Austin, TX. 18 November 2011 IEC 61968-100 Overview CIM University UCAIug Summit Austin, TX 18 November 2011 Agenda Introduction A look at the purpose, scope and key terms and definitions. Use Cases and Messaging Patterns What are

More information

Encryption, Signing and Compression in Financial Web Services

Encryption, Signing and Compression in Financial Web Services Danske Bank Encryption, Signing and Compression in Financial Web Services Details of how to call the Danske Bank financial web service Version 2.4.8 Encryption, Signing and Compression in Financial Web

More information

Implementing WS-Security on TPF

Implementing WS-Security on TPF z/tpf EE V1.1 z/tpfdf V1.1 TPF Toolkit for WebSphere Studio V3 TPF Operations Server V1.2 IBM Software Group TPF Users Group Autumn 2006 Implementing WS-Security on TPF Name: Bill Cousins Venue: Distributed

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 Roadmap Dave Bain PeopleSoft Product Management 2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

ECT Business Interface System Instructions

ECT Business Interface System Instructions 1.) STARTING SCREEN From this Screen select Customer Interface System to access Souriau s new web based customer interface. Souriau.com Links to Souriau s Corporate web site. Other Options: News Will keep

More information

Security Aspects Analysis in Mobile Web Service Provisioning

Security Aspects Analysis in Mobile Web Service Provisioning Rheinisch-Westfälische Technische Hochschule Aachen Lehrstuhl für Informatik V Prof. Dr. Matthias Jarke Security Aspects Analysis in Mobile Web Service Provisioning Master Thesis Kiran Kumar Pendyala Matriculation

More information

SafetyNet Web Services

SafetyNet Web Services SafetyNet Web Services Application Program Interface (API) Reference Document November 11, 2017 Copyright 2014-2017 Predictive Solutions, Inc. All rights reserved. Table of Contents Revision History...

More information

IUID Registry Application Programming Interface (API) Version 5.6. Software User s Manual (SUM)

IUID Registry Application Programming Interface (API) Version 5.6. Software User s Manual (SUM) IUID Registry Application Programming Interface (API) Version 5.6 Software User s Manual (SUM) Document Version 1.0 May 28, 2014 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared for:

More information

TungSpot User Manual Last Update 5/20/2013

TungSpot User Manual Last Update 5/20/2013 TungSpot User Manual Last Update 5/20/2013 TungSpot User Manual 1. Introduction... 2 1.1 Overview... 2 1.2 Login... 2 1.3 Navigation Tools... 3 2. Homepage... 4 2.1 Overview of Home Page... 4 2.2 My Purchases...

More information

Oracle SOA Tips & Tricks. Ahmed Aboulnaga Technical Director Raastech

Oracle SOA Tips & Tricks. Ahmed Aboulnaga Technical Director Raastech Oracle SOA Tips & Tricks Ahmed Aboulnaga Technical Director Raastech About Raastech Systems integrator founded in 2009 Headquartered in the Washington DC area Specializes in Oracle Fusion Middleware Oracle

More information

DAVE. SOAP Web Services

DAVE. SOAP Web Services DAVE SOAP Web Services Introduction This document provides information about the Dave Web Services API and serves as a basic explanation for people with technicals skills who are making a connection to

More information

Table of Contents Account Registration... 2 Extended Registration... 3 Password Reset... 4 Updating Profile Information...

Table of Contents Account Registration... 2 Extended Registration... 3 Password Reset... 4 Updating Profile Information... MYHU R R H Quick information on capitalizing the capabilities of MyHubbell.com with Hubbell Power Systems, Chance Civil Construction and Hubbell Lenoir City INTRO TO MYHUBBELL MyHubbell is our customer

More information

2. From the BennyBuy home page, click on the Documents tab on the left side panel. Select Search Documents under Document Search.

2. From the BennyBuy home page, click on the Documents tab on the left side panel. Select Search Documents under Document Search. Change Orders Processing Types of Change Order Requests include: Starting Change order Change Index and FOAPAL Elements Revise an Existing PO Line Add a New PO Line Note: Enable Supplier Activity (punch-out

More information

Viking Service Extranet

Viking Service Extranet VIKING RANGE CORPORATION Viking Service Extranet Training Manual 1/1/2013 Table of Contents Login to the Service Extranet Pg. 2 Access Roles Pg. 2 Home Page Overview Pg. 3-5 Quick Order Pg. 5 11 Order

More information

myinsight for Documentum myinsight Web Services User Guide

myinsight for Documentum myinsight Web Services User Guide myinsight for Documentum myinsight Web Services User Guide Contents 1. Version History... 3 2. Product... 4 3. Webservice Introduction... 6 3.1. REST End Points... 6 3.2. SOAP End Points...6 4. Authorization...

More information

COP 4814 Florida International University Kip Irvine. Inside WCF. Updated: 11/21/2013

COP 4814 Florida International University Kip Irvine. Inside WCF. Updated: 11/21/2013 COP 4814 Florida International University Kip Irvine Inside WCF Updated: 11/21/2013 Inside Windows Communication Foundation, by Justin Smith, Microsoft Press, 2007 History and Motivations HTTP and XML

More information

Developer s Guide. Trimble SOAP Web Services

Developer s Guide. Trimble SOAP Web Services Developer s Guide Trimble SOAP Web Services SOAPWebSrvDG-Oct17-2.0 October 2017 www.trimble.com/fsm Copyright 2017, Trimble Inc. All rights reserved. Trimble and the Globe & Triangle logo are trademarks

More information

Intermatic, Inc. Partner Portal User Guide

Intermatic, Inc. Partner Portal User Guide Intermatic, Inc. Partner Portal User Guide Index Introduction.......................... 2 Requesting Access.................... 3 Updating Profile....................... 8 Order Status.........................

More information

CRM On Demand. Siebel Web Services On Demand Guide

CRM On Demand. Siebel Web Services On Demand Guide CRM On Demand Siebel Web Services On Demand Guide Version 3.1 (CRM On Demand Release October 2008 Copyright 2005, 2008, Oracle. All rights reserved. The Programs (which include both the software and documentation)

More information

INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION

INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION TABLE OF CONTENTS 1 Document Metadata... 4 1.1 Authors... 4 1.2 Intended Audience... 4 1.3 Glossary of Terms and Acronyms... 4 1.4 Document

More information

Unacknowledged/Late Delivery Web Tool

Unacknowledged/Late Delivery Web Tool Table of Contents Register:... 2 Log on to Web Site:... 2 Logoff Web Site:... 3 List PO s Page:... 4 To Acknowledge PO or Change PO date.... 5 To Mark a PO Shipped.... 6 To Change the Price.... 6 Send

More information

XML Elements - Headers BeginSession Element (XMLA) EndSession Element (XMLA) ProtocolCapabilities Element (XMLA) Session Element (XMLA)

XML Elements - Headers BeginSession Element (XMLA) EndSession Element (XMLA) ProtocolCapabilities Element (XMLA) Session Element (XMLA) Table of Contents XML Elements - Headers BeginSession Element (XMLA) EndSession Element (XMLA) ProtocolCapabilities Element (XMLA) Session Element (XMLA) XML Elements - Headers 1/8/2018 1 min to read Edit

More information

Web. Web. Java. Java. web. WebService. Apache Axis. Java web service. Applet Servlet JSP SOAP WebService XML J2EE. Web (browser)

Web. Web. Java. Java. web. WebService. Apache Axis. Java web service. Applet Servlet JSP SOAP WebService XML J2EE. Web (browser) Java Web Java web Applet Servlet JSP SOAP WebService XML J2EE WebService Web (browser) WSDL (Web Service Description Language) RPC) SOAP 80 () Apache Axis Apache AxisJavaSOAP (SOAPWeb XML.NET Java) tomcat

More information

WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS. Office Supplies & Business Print

WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS. Office Supplies & Business Print WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS Office Supplies & Business Print Table of Contents Log In... 2 Updating My User Information... 4 Creating Favorites List... 6 Viewing Saved Carts... 9 Creating

More information

IBM Research Report. XML Signature Element Wrapping Attacks and Countermeasures

IBM Research Report. XML Signature Element Wrapping Attacks and Countermeasures RC23691 (W0508-064) August 9, 2005 Computer Science IBM Research Report XML Signature Element Wrapping Attacks and Countermeasures Michael McIntosh, Paula Austel IBM Research Division Thomas J. Watson

More information

REVENUE ONLINE SERVICE

REVENUE ONLINE SERVICE REVENUE ONLINE SERVICE Page 1 of 8 DOCUMENT CONTROL Document Holder Brian Jones Change History Version Date Change 1.0 13/11/01 Document Created 1.1 26/06/2012 Updated the following fields to allow them

More information

Testbed-12 OWS SOAP User Guide

Testbed-12 OWS SOAP User Guide Testbed-12 OWS SOAP User Guide Table of Contents 1. Introduction............................................................................. 3 1.1. SOAP Primer.........................................................................

More information

[Document subtitle] Mladen Mandrapa [Date] [Course title]

[Document subtitle] Mladen Mandrapa [Date] [Course title] 1 [Document subtitle] Mladen Mandrapa [Date] [Course title] Instructions for Order Tracking and Online Store Table of Contents LOGGING IN... 2 DISTRIBUTOR LOGIN... 2 ENTERING SITE... 3 ORDER TRACKING...

More information

Quick Start: irondns in 3 Minutes

Quick Start: irondns in 3 Minutes Quick Start: irondns in 3 Minutes Version 1.3.3 2016-06-13 Dr. Michael Bauland, Knipp Medien und Kommunikation GmbH Table of Contents 1. Introduction...3 2. Prerequisites...3 2.1. soapui...3 2.2. Credentials...3

More information

A guide to supporting PRESTO

A guide to supporting PRESTO Version 1.0 Working Draft Date: 2006/06/27 Abstract The PRotocole d Echanges Standard et Ouvert 1.0 (aka PRESTO) specification consists of a set a Web services specifications, along with clarifications,

More information

FIRE (3473) Dallas Los Angeles Sydney New York London

FIRE (3473) Dallas Los Angeles Sydney New York London Traditional project life cycles lasting 12+ months are increasingly putting organizations at a disadvantage to more nimble startups that can innovate and change direction at a faster pace. New Agile development

More information

Partner estore. User Guide 24/7 Partnering Solutions

Partner estore. User Guide 24/7 Partnering Solutions Partner estore User Guide 24/7 Partnering Solutions General Introduction 4 Accessing the Partner estore 5 Searching for Products 6 Product Browsing, Quick and Advanced Search Placing an Order 12 Search

More information

Perceptive TransForm Web Services Autowrite

Perceptive TransForm Web Services Autowrite Perceptive TransForm Web Services Autowrite Getting Started Guide Version 8.10.x Overview The 8.10.0 release of TransForm provides the ability to transmit form data using a web service as the destination

More information

CRM On Demand. Siebel Web Services On Demand Guide

CRM On Demand. Siebel Web Services On Demand Guide CRM On Demand Siebel Web Services On Demand Guide Version 8 (CRM On Demand Release 15) February 2008 Copyright 2005, 2008, Oracle. All rights reserved. The Programs (which include both the software and

More information

Web Services Reliable Messaging TC WS-Reliability

Web Services Reliable Messaging TC WS-Reliability 1 2 3 4 Web Services Reliable Messaging TC WS-Reliability Working Draft 0.992, 10 March 2004 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 Document identifier: wd-web services reliable

More information

Affordable Care Act (ACA) Information Returns (AIR) AIR Submission Composition and Reference Guide

Affordable Care Act (ACA) Information Returns (AIR) AIR Submission Composition and Reference Guide Affordable Care Act (ACA) Information Returns () Submission Composition and Reference Guide Version 2.0 July 2015 Composition & Reference Guide Table of Contents 1 Introduction... 1 1.1. Identification...

More information

Oracle Insurance Policy Administration Web Services

Oracle Insurance Policy Administration Web Services Oracle Insurance Policy Administration Web Services Version 9.7.0.0 Documentation Part Number: E39062_01 May, 2013 Copyright 2009, 2013, Oracle and/or its affiliates. All rights reserved. Trademark Notice

More information

Bare SOAP-UI for WS-Security

Bare SOAP-UI for WS-Security Draft Draft Bare SOAP-UI for WS-Security Paul Glezen, IBM Abstract This document is a member of the Bare Series of WAS topics distributed in both stand-alone and in collection form. The latest renderings

More information

Communication Foundation

Communication Foundation Microsoft Windows Communication Foundation 4.0 Cookbook for Developing SOA Applications Over 85 easy recipes for managing communication between applications Steven Cheng [ PUBLISHING 1 enterprise I prok^iiork.i

More information

EMC Documentum Content Management Interoperability Services

EMC Documentum Content Management Interoperability Services EMC Documentum Content Management Interoperability Services Version 6.7 Reference Guide EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com EMC believes the information

More information

Visma Nova Webservice Version 1.1 /

Visma Nova Webservice Version 1.1 / Visma Nova Webservice Version 1.1 / 31.10.2018 reserves all rights to possible improvements and/or changes in this manual and/or program without a separate notice. Copying of this manual and other material

More information

Agiloft Developer Guide

Agiloft Developer Guide Agiloft Developer Guide HELP-19Dec2018 CONTENTS 1. Developer Guide....................................................... 4 1.1 SOAP and REST API Web Services..................................... 5 1.1.1

More information

Itron RMA Process Update

Itron RMA Process Update Date: 18 April 2016 PIL #: EL-P16-957 Product Line: General Distribution: Itron Internal Distributors / Manufacturer Reps Customers Itron RMA Process Update Process Overview This PIL supersedes PIL EL-12-813

More information

SAFILONET MANUAL REVISION SAFILONET Sàfilo Group s e-business system

SAFILONET MANUAL REVISION SAFILONET Sàfilo Group s e-business system SAFILONET Sàfilo Group s e-business system Revision 2014 1 INDEX 1. INTRODUCTION TO SAFILONET 1.1 Hardware and Software 1.2 Username and Password 1.3 Advice on using the site 1.4 Content visibility 1.5

More information

XML Security Gateway Evaluation Criteria Project Update. 6 th OWASP AppSec Conference. The OWASP Foundation

XML Security Gateway Evaluation Criteria Project Update. 6 th OWASP AppSec Conference. The OWASP Foundation XML Security Gateway Evaluation Criteria Project Update 6 th OWASP AppSec Conference Milan - May 2007 Gunnar Peterson, OWASP XSGEC Project Lead Managing Principal, Arctec Group gunnar@arctecgroup.net Copyright

More information

Shopping Basket and Order Requirements

Shopping Basket and Order Requirements Page 1 of 41 Page 2 of 41 1. The user can browse the site and select the product items to be added to the Shopping basket. Use the Catalog link to search and add products to the shopping basket or click

More information

Website Ordering User Guide (New customer) https://www.finelinetech.com/fasttrak_ userguide/

Website Ordering User Guide (New customer) https://www.finelinetech.com/fasttrak_ userguide/ Website Ordering User Guide (New customer) https://www.finelinetech.com/fasttrak_ userguide/ Contact Information: US: support@finelinetech.com Asia: support@finelinetech.com.hk Customer Service: USA: 1-800-500-8687

More information

External Interface Specification (30) Fingrid Datahub Oy

External Interface Specification (30) Fingrid Datahub Oy 1 (30) External Interface Specification 2 (30) Sisällysluettelo 1 Introduction... 6 1.1 Purpose... 6 1.2 Scope... 6 1.3 Target Audience... 6 1.4 Document Structure... 6 1.5 Document References... 7 1.6

More information

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

Technical Specifications for Electronic Business Services (EBS)

Technical Specifications for Electronic Business Services (EBS) Technical Specifications for Electronic Business Services (EBS) Ministry of Health and Long-Term Care EBS - Generic Security Specification Version 2.19 Table of Contents Chapter 1 Electronic Business Services

More information

Web Services Security

Web Services Security Web Services Security Strategies for Securing Your SOA Aaron Mulder CTO Chariot Solutions Agenda Define Web Services Security DIY Security HTTPS WS-Security WS-I Basic Security Profile Conclusion Q&A 2

More information

Introduzione ai Web Services

Introduzione ai Web Services Introduzione ai Web s Claudio Bettini Web Computing Programming with distributed components on the Web: Heterogeneous Distributed Multi-language 1 Web : Definitions Component for Web Programming Self-contained,

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

IEC Implementation Profiles for IEC 61968

IEC Implementation Profiles for IEC 61968 IEC 61968-100 Implementation Profiles for IEC 61968 Overview CIM University UCAIug Summit New Orleans, LA 22 October 2012 Agenda Introduction A look at the purpose, scope and key terms and definitions.

More information

FULFILLMENT. Worldwide Golf Shops. WebForms Reference Guide. Volume 1

FULFILLMENT. Worldwide Golf Shops. WebForms Reference Guide. Volume 1 Worldwide Golf Shops FULFILLMENT WebForms Reference Guide Volume 1 April 2016 TABLE OF CONTENTS Introduction What is EDI? WebForms Navigation Inbox/Sent/Drafts Purchase Order Acknowledgement Advance Ship

More information

Perceptive Connector for Microsoft Dynamics AX

Perceptive Connector for Microsoft Dynamics AX Perceptive Connector for Microsoft Dynamics AX API Implementation Guide Version: 2.4.x Written by: Product Knowledge, R&D Date: August 2016 2015 Lexmark International Technology, S.A. All rights reserved.

More information

The shortcut to e-commerce

The shortcut to e-commerce The shortcut to e-commerce The table below provides the list of standard Microsoft Dynamics NAV objects that are modified by Sana Commerce. The standard Microsoft Dynamics NAV objects modified by Sana

More information

Oracle Insurance Policy Administration Web Services

Oracle Insurance Policy Administration Web Services Oracle Insurance Policy Administration Web Services Version 10.2.0.0 Document Part Number: E62439-01 August, 2015 Copyright 2009, 2015, Oracle and/or its affiliates. All rights reserved. Trademark Notice

More information

Reliable Messaging between SAP XI 3.0 and Microsoft BizTalk Server 2004 Using SOAP-Compliant Communication

Reliable Messaging between SAP XI 3.0 and Microsoft BizTalk Server 2004 Using SOAP-Compliant Communication Collaboration Technology Support Center Microsoft Collaboration Brief October 2005 Reliable Messaging between SAP XI 3.0 and Microsoft BizTalk Server 2004 Using SOAP-Compliant Communication André Fischer,

More information

REST/SOAP Harmonization proposal for Identity-based Web-Services

REST/SOAP Harmonization proposal for Identity-based Web-Services 1 2 3 4 5 6 7 8 9 REST/SOAP Harmonization proposal for Identity-based Web-Services Version: 0.4 Date: 2012-10-16 10 11 Editor: Contributors: Gaël Gourmelen, Orange 12 13 14 15 16 17 18 19 20 21 22 23 24

More information

Data Pump User Guide

Data Pump User Guide Data Pump User Guide CalAmp Corporation 13645 Dulles Technology Drive, Herndon, VA 20171 Document: MBUD-0189v6 Phone : (703) 262-0500 August 2015 FAX: (703) 262-0380 www.calamp.com FleetOutlook Data Pump

More information

CRM On Demand. Oracle CRM On Demand CTI Developer s Guide

CRM On Demand. Oracle CRM On Demand CTI Developer s Guide CRM On Demand Oracle CRM On Demand CTI Developer s Guide Release 37 August 2018 Copyright 2005, 2018 Oracle. All rights reserved. This software and related documentation are provided under a license agreement

More information

Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification

Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification Issue date 29.09.2016 Replaces version 25 or previous Valid

More information

PATRON PORTAL LOG-IN GUIDE

PATRON PORTAL LOG-IN GUIDE PATRON PORTAL LOG-IN GUIDE BASIC LOG-IN...2 RETRIEVING PATRON PORTAL USERNAME...6 RETRIEVING PATRON PORTAL PASSWORD...9 ACCESSING SUBSCRIBER PRE-SALE TICKETS...12 FOR ADDITIONAL QUESTIONS OR ASSISTANCE:

More information

CheckNet Users Manual

CheckNet Users Manual CheckNet Users Manual Table of Contents Chapter 1: Logging In Logging In... 3 Forgot Password... 4 Remembering Password Using Hint... 4 Forgot Password Using E-Mail... 4 Initial Log In - Updating User

More information

SelectSite/HigherMarkets. Requisitioner Handbook

SelectSite/HigherMarkets. Requisitioner Handbook SelectSite/HigherMarkets Requisitioner Handbook SELECTSITE / HIGHERMARKETS R E Q U I S I T I O N E R H A N D B O O K M A R C H 2 0 0 9 P R O D U C T V E R S I O N : S E L E C T S I T E 9. 1 H A N D B O

More information

Distributor On-Line User Manual. Terex Construction Americas 8800 Rostin Road Southaven, MS ( TEREX)

Distributor On-Line User Manual. Terex Construction Americas 8800 Rostin Road Southaven, MS ( TEREX) Distributor On-Line User Manual Terex Construction Americas 8800 Rostin Road Southaven, MS 38671 888-908-3739 (888-90-TEREX) Version 01.12 January 2012 Getting Started: Login and Passwords To begin, access

More information

What are Non-Catalog Orders?

What are Non-Catalog Orders? What are Non-Catalog Orders? Non-Catalog Orders are intended to address purchasing needs that fall outside of typical requests within a punch-out site, catalog or form. Prior to beginning a Purchase Request,

More information

The shortcut to e-commerce

The shortcut to e-commerce The shortcut to e-commerce The table below provides the list of standard Microsoft Dynamics NAV 2017 2018 objects that are modified by Sana Commerce. The standard Microsoft Dynamics NAV objects modified

More information

EMARSYS FOR MAGENTO 2

EMARSYS FOR MAGENTO 2 EMARSYS FOR MAGENTO 2 Integration Manual July 2017 Important Note: This PDF was uploaded in July, 2017 and will not be maintained. For the latest version of this manual, please visit our online help portal:

More information

Welcome to Shopfront. Your distributor will supply your user name, password, and the website address for your login page.

Welcome to Shopfront. Your distributor will supply your user name, password, and the website address for your login page. User Guide Table of Contents Login... 3 Choose a Location... 4 Home Page... 5 Header Bar... 6 My Catalog... 6 Menu Bar... 7 My Profile... 8 Contact Us... 9 Change Location... 10 Shopping Lists... 11 Quick

More information

LowesLink Spend Management (SM)

LowesLink Spend Management (SM) LowesLink Spend Management (SM) Review Purchase Orders Effective Date: June 26, 2017 Lowe s Logo and LowesLink are registered trademarks of LF, LLC. All Rights Reserved. 1 Agenda Slides Expectations 3

More information

VALO Commerce. Energizer User Guide

VALO Commerce. Energizer User Guide VALO Commerce Energizer User Guide Using VALO Commerce Step One: Access the Commerce Site In the Powerline section of the intranet site, open the Visibility menu and select VALO (Perm MDSG). If this is

More information

Real-Time Connectivity Specifications

Real-Time Connectivity Specifications Real-Time Connectivity Specifications United Concordia Companies, Inc. (UCCI) 2006 Contents 1. Real-Time Overview 2. Requirements 3. SOAP Messages 4. SOAP Faults 5. UCCI EDI WebServices Certificate 1.

More information

INTERFACE SPECIFICATION NEXT VISUAL TAG ENQUIRY VERSION 1.3 JUNE 2015

INTERFACE SPECIFICATION NEXT VISUAL TAG ENQUIRY VERSION 1.3 JUNE 2015 INTERFACE SPECIFICATION NEXT VISUAL TAG ENQUIRY VERSION 1.3 JUNE 2015 CONTENTS VERSION CONTROL... 1 INTRODUCTION... 2 Interface Method... 2 Support... 2 INTERFACE RULES AND PROCESSES... 3 Business Rules...

More information

H&H Purchasing Services WebForms Reference Guide. Volume 1 FULFILLMENT

H&H Purchasing Services WebForms Reference Guide. Volume 1 FULFILLMENT H&H Purchasing Services WebForms Reference Guide Volume 1 FULFILLMENT April 2016 TABLE OF CONTENTS Introduction What is EDI? 3 4 WebForms Navigation Inbox/Sent/Drafts Purchase Order Acknowledgement Advance

More information

SOAP and Its Extensions. Matt Van Gundy CS 595G

SOAP and Its Extensions. Matt Van Gundy CS 595G SOAP and Its Extensions Matt Van Gundy CS 595G 2006.02.07 What is SOAP? Formerly Simple Object Access Protocol Abstract Stateless Messaging Protocol Another XML-based Meta-Standard SOAP Processing Model

More information

Notes. Any feedback/suggestions? IS 651: Distributed Systems

Notes. Any feedback/suggestions? IS 651: Distributed Systems Notes Grading statistics Midterm1: average 10.60 out of 15 with stdev 2.22 Total: average 15.46 out of 21 with stdev 2.80 A range: [18.26, 23] B range: [12.66, 18.26) C or worse range: [0, 12.66) The curve

More information

The New B2B Portal User Guide. B2B Contacts

The New B2B Portal User Guide. B2B Contacts The New B2B Portal User Guide Access to your Sprecher + Schuh orders around the clock 1 B2B Contacts Claudia Sears, Marketing Communications b2bhelp@sprecherschuh.com User access, questions & training

More information

Web Services Security Policy Language (WS-SecurityPolicy)

Web Services Security Policy Language (WS-SecurityPolicy) Web Services Security Policy Language (WS-SecurityPolicy) July 2005 Version 1.1 Authors Giovanni Della-Libera, Microsoft Martin Gudgin, Microsoft Phillip Hallam-Baker, VeriSign Maryann Hondo, IBM Hans

More information

Berner Fachhochschule. Technik und Informatik. Web Services. An Introduction. Prof. Dr. Eric Dubuis Berner Fachhochschule Biel

Berner Fachhochschule. Technik und Informatik. Web Services. An Introduction. Prof. Dr. Eric Dubuis Berner Fachhochschule Biel Berner Fachhochschule Technik und Informatik Web Services An Introduction Prof. Dr. Eric Dubuis Berner Fachhochschule Biel Overview Web Service versus Web Application A Definition for the Term Web Service

More information

2. Any VIP screen, click on the VIP Cart button located in the top right corner of the screen.

2. Any VIP screen, click on the VIP Cart button located in the top right corner of the screen. Access VIP Cart VIP Order Entry The VIP Cart is only accessible after parts have been added to the cart from either the Single Line Price screen or the Multi Line Price screen. For more information on

More information