CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2. Author: Foster Moore Date: 20 September 2011 Document Version: 1.7

Size: px
Start display at page:

Download "CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2. Author: Foster Moore Date: 20 September 2011 Document Version: 1.7"

Transcription

1 CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2 Author: Foster Moore Date: 20 September 2011 Document Version: 1.7 Level 6, Durham House, 22 Durham Street West PO Box , Auckland City Post Shop, Auckland 1143, New Zealand Tel: Fax:

2 CONTENTS BusinessData Authentication... 4 Introduction... 4 HMAC (Hashed Message Authentication Code)... 4 Signature Generation... 4 Request/Response Standards... 7 SOAP Request Structure... 7 Attachments... 7 Full WSDL... 7 Design Service Description XML Schema Definitions iponz_design_application_v1.07.xsd iponz_design_renewal_v1.07.xsd Service Operations submitdesign Operation Example Request XML Example Response XML renewdesign Operation Example Request XML Example Response XML Appendix 1: authgen Installation Windows Mac/Linux Usage Signature Verification Appendix 2: SOAPui Importing a WSDL Endpoints Attachments <Authenticator> Header Element Appendix 3: Attachments IPONZ Design Service Version 2 Page 2 of 38

3 MTOM (Mime Transmission Optimization Mechanism) IPONZ Design Service Version 2 Page 3 of 38

4 BUSINESSDATA AUTHENTICATION Introduction BusinessData is the authentication service layer through which all business services are exposed. Each business service transaction is first authenticated in BusinessData before forwarding the transaction to the appropriate business service for processing. HMAC (Hashed Message Authentication Code) HMAC is the authentication mechanism used by BusinessData. A shared Secret Authentication Key is used by the client to create a signature based upon predefined message properties. Upon receiving the signature with the request the service will recalculate the signature to authenticate the user s identity. Each request should provide the signature and the data required as part of the source. Two pieces of information are required to generate a signature. Authentication Key ID - This is your unique identifier to verify that you are a BusinessData user. This will not change. Secret Authentication Key - Used to generate a signature from the String to Sign. This Secret Authentication Key is never transmitted in a message and should never be passed to a client machine. Signature Generation The String to Sign is the final string which is signed using a SHA256 digest to create the signature. It is built up from the following attributes of an HTTP request. ATTRIBUTE DESCRIPTION REQUIRED/ OPTIONAL SUPPLIED AS HTTP Method HTTP method used for the request. Only the POST method is allowed for this service. (Note: All SOAP-based web services in BusinessData support only the POST method.) Required Host Standard HTTP header. Required Request URI URI of service being requested. Required Timestamp Time that the signature was generated. Required SOAP header in the format yyyymmddhhmmss z Authentication Key ID Identifies the BusinessData client. Required As part of the SOAP Authorization header. IPONZ Design Service Version 2 Page 4 of 38

5 Client The registered IPONZ user ID (i.e., the user ID used by the client to log in to the IPONZ website). Required SOAP header. Context A client identifier for the transaction. If supplied this must be unique to each service usage. (i.e., user and service combination). Optional SOAP header. The String to Sign is built up from these values separated by a new line character ( \n ). The construction of the String to Sign follows the template shown below: <HTTP Method>\n<Host>\n<Request URI>\n<Timestamp>\n<Authentication Key ID>\n<Client>\n<Context>\n Example Source String POST /data/app/ws/sws/designservice NZDT T4WZUVoufkaGfsrK CTX001 A Base64 encoded SHA256 hash is then applied to this string using your Secret Authentication Key (not the Authentication Key ID) to produce the signature. An example signature may look like the following: wftzpfddah9kul6zenlvvmrydwmvqjlxagnucpmygtm= This signature must be added to the request as a SOAP header in the form <Authentication Key ID>:<Signature> : <Authorization> T4WZUVoufkaGfsrK:wFtZpfdDAh9kul6ZEnlvvmRYdWmvqjLxagNUcpMYGTM=</Authorization> A SOAP envelope header would look as follows: <soapenv:header> <Authenticator> <ServiceName>I01</ServiceName> <Authorization> T4WZUVoufkaGfsrK:wFtZpfdDAh9kul6ZEnlvvmRYdWmvqjLxagNUcpMYGTM=</Authorization> <Timestamp> NZDT</Timestamp> <Client> </Client> IPONZ Design Service Version 2 Page 5 of 38

6 <Context>CTX001</Context> </Authenticator> </soapenv:header> If no context element is supplied the signature will only be valid for 60 seconds after its generation time. The timestamp used for generation on the server must match that to be supplied in the SOAP header. It is recommended that the server be synchronized with a NTP server. The service name element is required and must match the service operation that is being invoked. The Design Service has the following operations and matching service names: OPERATION submitdesign renewdesign SERVICE NAME I01 I02 IPONZ Design Service Version 2 Page 6 of 38

7 REQUEST/RESPONSE STANDARDS SOAP Request Structure This is a SOAP-based web service. Each transaction must contain the BusinessData client s authentication data and the input XML required by the business service. Authentication Data The client s authentication data must be supplied in the SOAP request Header element. Input XML The input XML required by the business service must be supplied in the SOAP request Body element. Attachments This service supports MTOM (Mime Transmission Optimization Mechanism) as the attachment mechanism. See Appendix 3. Full WSDL The following is the WSDL for the call to the IPONZ Design Service Version 2. It follows the required BusinessData standard: URL: <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions targetnamespace=" xmlns:app=" xmlns:renew=" xmlns:impl=" xmlns:wsdl=" xmlns:wsdlsoap=" xmlns:xsd=" <wsdl:types> <schema targetnamespace=" xmlns=" xmlns:app=" xmlns:renew=" <import namespace=" schemalocation="../iponz_design_renewal_v1.07.xsd"/> IPONZ Design Service Version 2 Page 7 of 38

8 <import namespace=" schemalocation="../iponz_design_application_v1.07.xsd"/> <element name="submitdesign"> <complextype> <sequence> <element ref="app:transaction"/> </sequence> </complextype> </element> <element name="submitdesignreturn"> <complextype> <sequence> <element ref="app:transactionresponse"/> </sequence> </complextype> </element> <element name="renewdesign"> <complextype> <sequence> <element ref="renew:transaction"/> </sequence> </complextype> </element> <element name="renewdesignreturn"> <complextype> <sequence> <element ref="renew:transactionresponse"/> </sequence> </complextype> </element> </schema> </wsdl:types> <wsdl:message name="submitdesignresponse"> <wsdl:part element="impl:submitdesignreturn" name="submitdesignreturn"/> </wsdl:message> <wsdl:message name="submitdesignrequest"> <wsdl:part element="impl:submitdesign" name="part"/> </wsdl:message> <wsdl:message name="renewdesignresponse"> IPONZ Design Service Version 2 Page 8 of 38

9 <wsdl:part element="impl:renewdesignreturn" name="renewdesignreturn"/> </wsdl:message> <wsdl:message name="renewdesignrequest"> <wsdl:part element="impl:renewdesign" name="part"/> </wsdl:message> <wsdl:porttype name="design"> <wsdl:operation name="submitdesign"> <wsdl:input message="impl:submitdesignrequest" name="submitdesignrequest"/> <wsdl:output message="impl:submitdesignresponse" name="submitdesignresponse"/> </wsdl:operation> <wsdl:operation name="renewdesign"> <wsdl:input message="impl:renewdesignrequest" name="renewdesignrequest"/> <wsdl:output message="impl:renewdesignresponse" name="renewdesignresponse"/> </wsdl:operation> </wsdl:porttype> <wsdl:binding name="designservicesoapbinding" type="impl:design"> <wsdlsoap:binding style="document" transport=" <wsdl:operation name="submitdesign"> <wsdlsoap:operation soapaction=""/> <wsdl:input name="submitdesignrequest"> <wsdlsoap:body use="literal"/> </wsdl:input> <wsdl:output name="submitdesignresponse"> <wsdlsoap:body use="literal"/> </wsdl:output> </wsdl:operation> <wsdl:operation name="renewdesign"> <wsdlsoap:operation soapaction=""/> <wsdl:input name="renewdesignrequest"> <wsdlsoap:body use="literal"/> </wsdl:input> <wsdl:output name="renewdesignresponse"> <wsdlsoap:body use="literal"/> </wsdl:output> </wsdl:operation> </wsdl:binding> IPONZ Design Service Version 2 Page 9 of 38

10 <wsdl:service name="designservice"> <wsdl:port binding="impl:designservicesoapbinding" name="designservice"> <wsdlsoap:address location=" </wsdl:port> </wsdl:service> </wsdl:definitions> The authentication data is sent as SOAP headers while the forwarding business service request is sent as the SOAP body. The specification for the IPONZ business service request body is described in subsequent sections of this document. A complete SOAP request for a design application request looks like the following: <?xml version="1.0" encoding="utf-8" standalone="no"?> <soapenv:envelope xmlns:soapenv=" xmlns:ipol=" xmlns:app=" xmlns:des=" <soapenv:header> <Authenticator> <ServiceName>I01</ServiceName> <Authorization>rAGXQfPS5NfPFKHB:l0fbDaPwee4QEqy/e+BfLvqxyBfAwa7c8eD4pv26uRo=< /Authorization> <Timestamp> NZST</Timestamp> <Client> </Client> <Context>CTX0059</Context> </Authenticator> </soapenv:header> <soapenv:body> <ipol:submitdesign> <app:transaction> <app:designtransactionbody> <app:transactioncontentdetails> <app:transactionidentifier>ctx0059 Transaction Identifier</app:TransactionIdentifier> <app:transactioncode>design E-Filing</app:TransactionCode> <app:transactiondata> <app:designapplicationdetails> <app:designapplication> <app:registrationofficecode>nz</app:registrationofficecode> <app:designapplicationreference>ctx0059 Des App IPONZ Design Service Version 2 Page 10 of 38

11 Ref</app:DesignApplicationReference> <app:applicationcontact>applicant</app:applicationcontact> <app:designdetails> <des:design> <des:designapplicationkind>set of Articles</des:DesignApplicationKind> <des:designtitle languagecode="en" sequencenumber="1">ctx0059 Des Title</des:DesignTitle> <des:designdescription languagecode="en" sequencenumber="1">ctx0059 Des Desc</des:DesignDescription> <des:designspecialcase>wallpaper</des:designspecialcase> <des:noveltystatement languagecode="en" sequencenumber="1">ctx0059 Nov State</des:NoveltyStatement> <des:designrepresentationsheetdetails> <des:designrepresentationsheet> <des:representationsheetfilename>upload_pdf_document_01.pdf</des:representati onsheetfilename> <des:attachment>cid:1</des:attachment> </des:designrepresentationsheet> </des:designrepresentationsheetdetails> <des:prioritydetails> <des:priority> <des:prioritycountrycode>au</des:prioritycountrycode> <des:prioritynumber> </des:prioritynumber> <des:prioritydate> </des:prioritydate> <des:prioritydocument> <des:documentfilename>upload_pdf_document_02.pdf</des:documentfilename> <des:attachment>cid:2</des:attachment> </des:prioritydocument> <des:designapplicantpriorityrelationshipdetails> <des:designapplicantpriorityrelationship>assignee</des:designapplicantpriorit yrelationship> <des:assigneebyvirtueof languagecode="en" sequencenumber="1">ctx0048 ByVirtue</des:AssigneeByVirtueOf> </des:designapplicantpriorityrelationshipdetails> </des:priority> </des:prioritydetails> <des:applicantdetails> <des:designapplicant contact="true"> <des:newapplicant> <des:applicantlegalentity>company</des:applicantlegalentity> <des:applicantincorporationcountrycode>nz</des:applicantincorporationcountryc IPONZ Design Service Version 2 Page 11 of 38

12 ode> <des:applicantaddressbook> <des:formattednameaddress> <des:name> <des:formattedname> <des:organizationname>opendata1 Limited</des:OrganizationName> </des:formattedname> </des:name> <des:address> <des:addresscountrycode>nz</des:addresscountrycode> <des:formattedaddress> <des:addressline languagecode="en" sequencenumber="1">ctx0059 Addr1</des:AddressLine> <des:addressline languagecode="en" sequencenumber="2">ctx0059 Addr2</des:AddressLine> <des:addressline languagecode="en" sequencenumber="3">ctx0059 Addr3</des:AddressLine> <des:addressline languagecode="en" sequencenumber="4">ctx0059 Addr4</des:AddressLine> <des:addressline languagecode="en" sequencenumber="5">ctx0059 Addr5</des:AddressLine> <des:addresssuburb>ctx0059 Suburb</des:AddressSuburb> <des:addresscity>ctx0059 City</des:AddressCity> <des:addressstate>ctx0059 State</des:AddressState> <des:addresspostcode>1234</des:addresspostcode> </des:formattedaddress> </des:address> </des:formattednameaddress> <des:postaladdress> <des:addresscountrycode>nz</des:addresscountrycode> <des:formattedaddress> <des:addressline languagecode="en" sequencenumber="1">ctx0059 Addr1</des:AddressLine> <des:addressline languagecode="en" sequencenumber="2">ctx0059 Addr2</des:AddressLine> <des:addressline languagecode="en" sequencenumber="3">ctx0059 Addr3</des:AddressLine> <des:addressline languagecode="en" sequencenumber="4">ctx0059 Addr4</des:AddressLine> <des:addressline languagecode="en" sequencenumber="5">ctx0059 Addr5</des:AddressLine> IPONZ Design Service Version 2 Page 12 of 38

13 <des:addresssuburb>ctx0059 Suburb</des:AddressSuburb> <des:addresscity>ctx0059 City</des:AddressCity> <des:addressstate>ctx0059 State</des:AddressState> <des:addresspostcode>1234</des:addresspostcode> </des:formattedaddress> </des:postaladdress> </des:applicantaddressbook> </des:newapplicant> </des:designapplicant> </des:applicantdetails> </des:design> </app:designdetails> <app:authorization> <des:authorizationkind>specific Authorization</des:AuthorizationKind> <des:authorizationdocument> <des:documentfilename>upload_pdf_document_03.pdf</des:documentfilename> <des:attachment>cid:3</des:attachment> </des:authorizationdocument> </app:authorization> </app:designapplication> </app:designapplicationdetails> </app:transactiondata> </app:transactioncontentdetails> </app:designtransactionbody> </app:transaction> </ipol:submitdesign> </soapenv:body> </soapenv:envelope> IPONZ Design Service Version 2 Page 13 of 38

14 DESIGN SERVICE DESCRIPTION The IPONZ service facilitates the application and renewal of designs. The service must meet the BusinessData authentication standards. SERVICE PROPERTY VALUE Name Version 2.0 Application/Registry Service URL WSDL URL DesignService IPONZ wsdl XML Schema Definitions The following XSD files contain the schema definitions that form the basis of the request and response for this service. These schema definitions conform to the WIPO standards. Note: These XSD files will be published on the BusinessData production website. iponz_design_application_v1.07.xsd URL: <?xml version="1.0" encoding="utf-8"?> <xs:schema xmlns:xs=" xmlns=" xmlns:iponz=" targetnamespace=" elementformdefault="qualified" attributeformdefault="unqualified" version="1.07"> <!--<![CDATA[ ********************************************************************** * * * IPONZ Design Application Schema * * * * Filename : iponz_design_application_v1.07.xsd * * Author : IPONZ * * Version : 1.07 * * Last Update : * IPONZ Design Service Version 2 Page 14 of 38

15 * Contact : * * * ********************************************************************** ]]>--> <xs:annotation> <xs:documentation>iponz Design Application Schema </xs:documentation> </xs:annotation> <!--<![CDATA[ ====================================================================== Import IPONZ Design Common Types Library ====================================================================== ]]>--> <xs:import namespace=" schemalocation="common/iponz_design_common_types_v1.07.xsd" /> <!--<![CDATA[ ====================================================================== Design Application Transaction Request Root Element ====================================================================== ]]>--> <xs:element name="transaction" type="transactiontype"/> <!--<![CDATA[ ====================================================================== Design Application Transaction Response Root Element ====================================================================== ]]>--> <xs:element name="transactionresponse" type="transactionresponsetype"/> <!--<![CDATA[ ********************************************************************** * TRANSACTION/MESSAGE TYPES (in alphabetical order by name) * ********************************************************************** ]]>--> <xs:simpletype name="delayofregistrationinmonthstype"> IPONZ Design Service Version 2 Page 15 of 38

16 <xs:restriction base="xs:integer"> <xs:mininclusive value="1"/> <xs:maxinclusive value="15"/> </xs:restriction> </xs:simpletype> <xs:complextype name="designapplicationsummaryreporttype"> <xs:element name="designapplicationreference" type="xs:token" /> <xs:element name="applicationcontact" type="iponz:nz_applicationcontacttype"/> <xs:element name="designapplicationdetails" type="iponz:nz_designapplicationdetailstype"/> <xs:element name="delayofregistrationinmonths" type="delayofregistrationinmonthstype" minoccurs="0" /> <xs:complextype name="designapplicationtype"> <xs:element name="registrationofficecode" type="iponz:wipost3codetype" fixed="nz" /> <xs:element name="designapplicationreference" type="xs:token" /> <xs:element name="applicationcontact" type="iponz:nz_applicationcontacttype" /> <xs:element name="designdetails" type="iponz:nz_designdetailstype"/> <xs:element name="authorization" type="iponz:authorizationtype" minoccurs="0"/> <xs:element name="delayofregistrationinmonths" type="delayofregistrationinmonthstype" minoccurs="0" /> <xs:complextype name="transactionbodytype"> <xs:element name="transactioncontentdetails"> <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0"/> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Filing"/> <xs:element name="transactiondata" type="transactiondatatype"/> IPONZ Design Service Version 2 Page 16 of 38

17 </xs:element> <xs:complextype name="transactiondatatype"> <xs:element name="designapplicationdetails"> <xs:complextype> <xs:element name="designapplication" type="designapplicationtype"/> </xs:element> <xs:complextype name="transactionerrortype"> <xs:element name="transactionerrorcode" type="xs:token" /> <xs:element name="transactionerrortext" type="iponz:texttype" /> <xs:complextype name="transactionresponsebodytype"> <xs:choice> <xs:element name="transactionerrordetails"> <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0" /> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Filing" /> <xs:element name="transactionerror" type="transactionerrortype" maxoccurs="unbounded" /> </xs:element> <xs:element name="transactionresponsecontentdetails"> IPONZ Design Service Version 2 Page 17 of 38

18 <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0" /> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Filing" /> <xs:element name="transactionresponsedata" type="transactionresponsedatatype" /> </xs:element> </xs:choice> <xs:complextype name="transactionresponsedatatype"> <xs:element name="designapplicationsummaryreport" type="designapplicationsummaryreporttype" /> <xs:complextype name="transactionresponsetype"> <xs:element name="designtransactionresponsebody" type="transactionresponsebodytype" /> <xs:complextype name="transactiontype"> <xs:element name="designtransactionbody" type="transactionbodytype"/> </xs:schema> iponz_design_renewal_v1.07.xsd URL: <?xml version="1.0" encoding="utf-8"?> IPONZ Design Service Version 2 Page 18 of 38

19 <xs:schema xmlns:xs=" xmlns=" xmlns:iponz=" targetnamespace=" elementformdefault="qualified" attributeformdefault="unqualified" version="1.07"> <!--<![CDATA[ ********************************************************************** * * * IPONZ Design Renewal Schema * * * * Filename : iponz_design_renewal_v1.07.xsd * * Author : IPONZ * * Version : 1.07 * * Last Update : * * Contact : * * * ********************************************************************** ]]>--> <xs:annotation> <xs:documentation>iponz Design Renewal Schema </xs:documentation> </xs:annotation> <!--<![CDATA[ ====================================================================== Import IPONZ Design Common Types Library ====================================================================== ]]>--> <xs:import namespace=" schemalocation="common/iponz_design_common_types_v1.07.xsd" /> <!--<![CDATA[ ====================================================================== Design Renewal Transaction Request Root Element ====================================================================== ]]>--> IPONZ Design Service Version 2 Page 19 of 38

20 <xs:element name="transaction" type="transactiontype"/> <!--<![CDATA[ ====================================================================== Design Renewal Transaction Response Root Element ====================================================================== ]]>--> <xs:element name="transactionresponse" type="transactionresponsetype"/> <!--<![CDATA[ ********************************************************************** * TRANSACTION/MESSAGE TYPES (in alphabetical order by name) * ********************************************************************** ]]>--> <xs:complextype name="designrenewalsummaryreporttype"> <xs:element name="renewalreference" type="xs:token" /> <xs:element name="designrenewaldetails" type="iponz:nz_designrenewaldetailstype"/> <xs:complextype name="designrenewaltype"> <xs:element name="designrenewaldetails"> <xs:complextype> <xs:element name="renewalreference" type="xs:token" /> /> <xs:element name="registrationnumber" type="xs:positiveinteger" </xs:element> <xs:complextype name="transactionbodytype"> IPONZ Design Service Version 2 Page 20 of 38

21 <xs:element name="transactioncontentdetails"> <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0" /> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Renewal" /> <xs:element name="transactiondata" type="transactiondatatype" /> </xs:element> <xs:complextype name="transactiondatatype"> <xs:element name="designrenewal" type="designrenewaltype" /> <xs:complextype name="transactionerrortype"> <xs:element name="transactionerrorcode" type="xs:token" /> <xs:element name="transactionerrortext" type="iponz:texttype" /> <xs:complextype name="transactionresponsebodytype"> <xs:choice> <xs:element name="transactionerrordetails"> <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0" /> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Renewal" /> <xs:element name="transactionerror" type="transactionerrortype" maxoccurs="unbounded" /> </xs:element> IPONZ Design Service Version 2 Page 21 of 38

22 <xs:element name="transactionresponsecontentdetails"> <xs:complextype> <xs:element name="transactionidentifier" type="xs:token" minoccurs="0" /> <xs:element name="transactioncode" type="iponz:nz_transactioncodetype" fixed="design E-Renewal" /> <xs:element name="transactionresponsedata" type="transactionresponsedatatype" /> </xs:element> </xs:choice> <xs:complextype name="transactionresponsedatatype"> <xs:element name="designrenewalsummaryreport" type="designrenewalsummaryreporttype" /> <xs:complextype name="transactionresponsetype"> <xs:element name="designtransactionresponsebody" type="transactionresponsebodytype" /> <xs:complextype name="transactiontype"> <xs:element name="designtransactionbody" type="transactionbodytype"/> </xs:schema> Service Operations This service contains two operations: IPONZ Design Service Version 2 Page 22 of 38

23 1. submitdesign 2. renewdesign submitdesign Operation <wsdl:operation name="submitdesign"> <soap11:operation soapaction=""/> <wsdl:input name="submitdesignrequest"> <soap11:body use="literal"/> </wsdl:input> <wsdl:output name="submitdesignresponse"> <soap11:body use="literal"/> </wsdl:output> </wsdl:operation> Example Request XML <soapenv:envelope xmlns:soapenv=" xmlns:ipol=" xmlns:app=" xmlns:des=" <soapenv:header> <Authenticator> <ServiceName>I01</ServiceName> <Authorization>rAGXQfPS5NfPFKHB:l0fbDaPwee4QEqy/e+BfLvqxyBfAwa7c8eD4pv26uRo=< /Authorization> <Timestamp> NZST</Timestamp> <Client> </Client> <Context>CTX0059</Context> </Authenticator> </soapenv:header> <soapenv:body> <ipol:submitdesign> <app:transaction> <app:designtransactionbody> <app:transactioncontentdetails> <app:transactionidentifier>ctx0059 Transaction IPONZ Design Service Version 2 Page 23 of 38

24 Identifier</app:TransactionIdentifier> <app:transactioncode>design E-Filing</app:TransactionCode> <app:transactiondata> <app:designapplicationdetails> <app:designapplication> <app:registrationofficecode>nz</app:registrationofficecode> <app:designapplicationreference>ctx0059 Des App Ref</app:DesignApplicationReference> <app:applicationcontact>applicant</app:applicationcontact> <app:designdetails> <des:design> <des:designapplicationkind>set of Articles</des:DesignApplicationKind> <des:designtitle languagecode="en" sequencenumber="1">ctx0059 Des Title</des:DesignTitle> <des:designdescription languagecode="en" sequencenumber="1">ctx0059 Des Desc</des:DesignDescription> <des:designspecialcase>wallpaper</des:designspecialcase> <des:noveltystatement languagecode="en" sequencenumber="1">ctx0059 Nov State</des:NoveltyStatement> <des:designrepresentationsheetdetails> <des:designrepresentationsheet> <des:representationsheetfilename>upload_pdf_document_01.pdf</des:representati onsheetfilename> <des:attachment>cid:1</des:attachment> </des:designrepresentationsheet> </des:designrepresentationsheetdetails> <des:prioritydetails> <des:priority> <des:prioritycountrycode>au</des:prioritycountrycode> <des:prioritynumber> </des:prioritynumber> <des:prioritydate> </des:prioritydate> <des:prioritydocument> <des:documentfilename>upload_pdf_document_02.pdf</des:documentfilename> <des:attachment>cid:2</des:attachment> </des:prioritydocument> <des:designapplicantpriorityrelationshipdetails> <des:designapplicantpriorityrelationship>assignee</des:designapplicantpriorit yrelationship> <des:assigneebyvirtueof languagecode="en" sequencenumber="1">ctx0048 ByVirtue</des:AssigneeByVirtueOf> </des:designapplicantpriorityrelationshipdetails> IPONZ Design Service Version 2 Page 24 of 38

25 </des:priority> </des:prioritydetails> <des:applicantdetails> <des:designapplicant contact="true"> <des:newapplicant> <des:applicantlegalentity>company</des:applicantlegalentity> <des:applicantincorporationcountrycode>nz</des:applicantincorporationcountryc ode> <des:applicantaddressbook> <des:formattednameaddress> <des:name> <des:formattedname> <des:organizationname>opendata1 Limited</des:OrganizationName> </des:formattedname> </des:name> <des:address> <des:addresscountrycode>nz</des:addresscountrycode> <des:formattedaddress> <des:addressline languagecode="en" sequencenumber="1">ctx0059 Addr1</des:AddressLine> <des:addressline languagecode="en" sequencenumber="2">ctx0059 Addr2</des:AddressLine> <des:addressline languagecode="en" sequencenumber="3">ctx0059 Addr3</des:AddressLine> <des:addressline languagecode="en" sequencenumber="4">ctx0059 Addr4</des:AddressLine> <des:addressline languagecode="en" sequencenumber="5">ctx0059 Addr5</des:AddressLine> <des:addresssuburb>ctx0059 Suburb</des:AddressSuburb> <des:addresscity>ctx0059 City</des:AddressCity> <des:addressstate>ctx0059 State</des:AddressState> <des:addresspostcode>1234</des:addresspostcode> </des:formattedaddress> </des:address> </des:formattednameaddress> <des:postaladdress> <des:addresscountrycode>nz</des:addresscountrycode> <des:formattedaddress> <des:addressline languagecode="en" sequencenumber="1">ctx0059 Addr1</des:AddressLine> <des:addressline languagecode="en" sequencenumber="2">ctx0059 IPONZ Design Service Version 2 Page 25 of 38

26 Addr2</des:AddressLine> <des:addressline languagecode="en" sequencenumber="3">ctx0059 Addr3</des:AddressLine> <des:addressline languagecode="en" sequencenumber="4">ctx0059 Addr4</des:AddressLine> <des:addressline languagecode="en" sequencenumber="5">ctx0059 Addr5</des:AddressLine> <des:addresssuburb>ctx0059 Suburb</des:AddressSuburb> <des:addresscity>ctx0059 City</des:AddressCity> <des:addressstate>ctx0059 State</des:AddressState> <des:addresspostcode>1234</des:addresspostcode> </des:formattedaddress> </des:postaladdress> </des:applicantaddressbook> </des:newapplicant> </des:designapplicant> </des:applicantdetails> </des:design> </app:designdetails> <app:authorization> <des:authorizationkind>specific Authorization</des:AuthorizationKind> <des:authorizationdocument> <des:documentfilename>upload_pdf_document_03.pdf</des:documentfilename> <des:attachment>cid:3</des:attachment> </des:authorizationdocument> </app:authorization> </app:designapplication> </app:designapplicationdetails> </app:transactiondata> </app:transactioncontentdetails> </app:designtransactionbody> </app:transaction> </ipol:submitdesign> </soapenv:body> </soapenv:envelope> Example Response XML <soapenv:envelope xmlns:soapenv=" <soapenv:body> IPONZ Design Service Version 2 Page 26 of 38

27 <submitdesignreturn xmlns=" <TransactionResponse xmlns=" <DesignTransactionResponseBody> <TransactionResponseContentDetails> <TransactionIdentifier>CTX0059 Transaction Identifier</TransactionIdentifier> <TransactionCode>Design E-Filing</TransactionCode> <TransactionResponseData> <DesignApplicationSummaryReport> <DesignApplicationReference>CTX0059 DES APP REF</DesignApplicationReference> <ApplicationContact>Applicant</ApplicationContact> <DesignApplicationDetails> <IPNewZealandDesignApplication xmlns=" <DesignApplicationNumber> </DesignApplicationNumber> <StatusCode>20</StatusCode> <StatusDescription>Filed</StatusDescription> <NZFilingDate> </NZFilingDate> <DesignApplicationKind>Set of Articles</DesignApplicationKind> <DesignTitle>CTX0059 Des Title</DesignTitle> <DesignDescription>CTX0059 Des Desc</DesignDescription> <DesignSpecialCase>Wallpaper</DesignSpecialCase> <NoveltyStatement>CTX0059 Nov State</NoveltyStatement> <PriorityDetails> <Priority> <PriorityCountryCode>AU</PriorityCountryCode> <PriorityNumber> </PriorityNumber> <PriorityDate> </PriorityDate> <PriorityDocument>Upload_PDF_Document_02.pdf</PriorityDocument> <DesignApplicantPriorityRelationshipDetails> <DesignApplicantPriorityRelationship>Assignee</DesignApplicantPriorityRelationship> <AssigneeByVirtueOf>CTX0048 ByVirtue</AssigneeByVirtueOf> </DesignApplicantPriorityRelationshipDetails> </Priority> </PriorityDetails> <ApplicantDetails> <DesignApplicant contact="true"> <Applicant> <ApplicantKey> IPONZ Design Service Version 2 Page 27 of 38

28 <Identifier>5084</Identifier> </ApplicantKey> <ApplicantLegalEntity>Company</ApplicantLegalEntity> <ApplicantIncorporationCountryCode>NZ</ApplicantIncorporationCountryCode> <ApplicantAddressBook> <FormattedNameAddress> <Name> <FormattedName> <OrganizationName>OPENDATA1 Limited</OrganizationName> </FormattedName> </Name> <Address> <AddressCountryCode>NZ</AddressCountryCode> <FormattedAddress> <AddressLine>CTX0059 Addr1</AddressLine> <AddressLine>CTX0059 Addr2</AddressLine> <AddressLine>CTX0059 Addr3</AddressLine> <AddressLine>CTX0059 Addr4</AddressLine> <AddressLine>CTX0059 Addr5</AddressLine> <AddressSuburb>CTX0059 Suburb</AddressSuburb> <AddressCity>CTX0059 City</AddressCity> <AddressState>CTX0059 State</AddressState> <AddressPostcode>1234</AddressPostcode> </FormattedAddress> </Address> </FormattedNameAddress> <ContactInformationDetails> <Phone> <CountryCode/> <AreaCode/> <Number/> </Phone> </ContactInformationDetails> <PostalAddress> <AddressCountryCode>NZ</AddressCountryCode> <FormattedAddress> <AddressLine>CTX0059 Addr1</AddressLine> <AddressLine>CTX0059 Addr2</AddressLine> <AddressLine>CTX0059 Addr3</AddressLine> <AddressLine>CTX0059 Addr4</AddressLine> IPONZ Design Service Version 2 Page 28 of 38

29 <AddressLine>CTX0059 Addr5</AddressLine> <AddressSuburb>CTX0059 Suburb</AddressSuburb> <AddressCity>CTX0059 City</AddressCity> <AddressState>CTX0059 State</AddressState> <AddressPostcode>1234</AddressPostcode> </FormattedAddress> </PostalAddress> </ApplicantAddressBook> </Applicant> </DesignApplicant> </ApplicantDetails> <ContactDetails> <Contact> <ContactKey> <Identifier>5084</Identifier> </ContactKey> <ContactLegalEntity>Company</ContactLegalEntity> <ContactIncorporationCountryCode>NZ</ContactIncorporationCountryCode> <ContactAddressBook> <FormattedNameAddress> <Name> <FormattedName> <OrganizationName>OPENDATA1 Limited</OrganizationName> </FormattedName> </Name> <Address> <AddressCountryCode>NZ</AddressCountryCode> <FormattedAddress> <AddressLine>CTX0059 Addr1</AddressLine> <AddressLine>CTX0059 Addr2</AddressLine> <AddressLine>CTX0059 Addr3</AddressLine> <AddressLine>CTX0059 Addr4</AddressLine> <AddressLine>CTX0059 Addr5</AddressLine> <AddressSuburb>CTX0059 Suburb</AddressSuburb> <AddressCity>CTX0059 City</AddressCity> <AddressState>CTX0059 State</AddressState> <AddressPostcode>1234</AddressPostcode> </FormattedAddress> </Address> </FormattedNameAddress> IPONZ Design Service Version 2 Page 29 of 38

30 <ContactInformationDetails> <Phone> <CountryCode/> <AreaCode/> <Number/> </Phone> </ContactInformationDetails> <PostalAddress> <AddressCountryCode>NZ</AddressCountryCode> <FormattedAddress> <AddressLine>CTX0059 Addr1</AddressLine> <AddressLine>CTX0059 Addr2</AddressLine> <AddressLine>CTX0059 Addr3</AddressLine> <AddressLine>CTX0059 Addr4</AddressLine> <AddressLine>CTX0059 Addr5</AddressLine> <AddressSuburb>CTX0059 Suburb</AddressSuburb> <AddressCity>CTX0059 City</AddressCity> <AddressState>CTX0059 State</AddressState> <AddressPostcode>1234</AddressPostcode> </FormattedAddress> </PostalAddress> </ContactAddressBook> </Contact> </ContactDetails> </IPNewZealandDesignApplication> </DesignApplicationDetails> </DesignApplicationSummaryReport> </TransactionResponseData> </TransactionResponseContentDetails> </DesignTransactionResponseBody> </TransactionResponse> </submitdesignreturn> </soapenv:body> </soapenv:envelope> renewdesign Operation IPONZ Design Service Version 2 Page 30 of 38

31 <wsdl:operation name="renewdesign"> <soap11:operation soapaction=""/> <wsdl:input name="renewdesignrequest"> <soap11:body use="literal"/> </wsdl:input> <wsdl:output name="renewdesignresponse"> <soap11:body use="literal"/> </wsdl:output> </wsdl:operation> Example Request XML <?xml version="1.0" encoding="utf-8" standalone="no"?> <soapenv:envelope xmlns:soapenv=" xmlns:xsd=" xmlns:xsi=" <soapenv:header> <Authenticator> <ServiceName>I02</ServiceName> <Authorization>T4WZUVoufkaGfsrK:/2TiKU+Oj/UCHIeIKgguHZ0ZaYNYZAafMJ4+J+jWQLg=< /Authorization> <Timestamp> NZST</Timestamp> <Client> </Client> <Context>CTX002</Context> </Authenticator> </soapenv:header> <soapenv:body> <renewdesign xmlns=" <ns1:transaction xmlns=" xmlns:ns1=" <ns1:designtransactionbody> <ns1:transactioncontentdetails> <ns1:transactionidentifier>string</ns1:transactionidentifier> <ns1:transactioncode>design E-Renewal</ns1:TransactionCode> <ns1:transactiondata> <ns1:designrenewal> <ns1:designrenewaldetails> <ns1:renewalreference>string</ns1:renewalreference> <ns1:registrationnumber>30984</ns1:registrationnumber> </ns1:designrenewaldetails> </ns1:designrenewal> IPONZ Design Service Version 2 Page 31 of 38

32 </ns1:transactiondata> </ns1:transactioncontentdetails> </ns1:designtransactionbody> </ns1:transaction> </renewdesign> </soapenv:body> </soapenv:envelope> Example Response XML <?xml version="1.0" encoding="utf-8" standalone="no"?> <soapenv:envelope xmlns:soapenv=" xmlns:xsd=" xmlns:xsi=" <soapenv:body> <renewdesignreturn xmlns=" <TransactionResponse xmlns=" <DesignTransactionResponseBody> <TransactionErrorDetails> <TransactionIdentifier>string</TransactionIdentifier> <TransactionCode>Design E-Renewal</TransactionCode> <TransactionError> <TransactionErrorCode>GIPR-REF3</TransactionErrorCode> <TransactionErrorText languagecode="en">iprenewalreference element value already used. Please supply a new one.</transactionerrortext> </TransactionError> </TransactionErrorDetails> </DesignTransactionResponseBody> </TransactionResponse> </renewdesignreturn> </soapenv:body> </soapenv:envelope> IPONZ Design Service Version 2 Page 32 of 38

33 APPENDIX 1: AUTHGEN To assist in testing a command line application is available to generate the XML Soap Header element required for authentication with BusinessData. This application requires a Java 1.6 JRE. Installation Before installation ensure a Java 1.6 JRE is installed on the PC. To check the Java version run the command java version from a command line. If Java is not found or the version is less than 1.6 go to and download and install Java for your computer. Unzip the fmit-businessdata-x.x.zip to a directory on your PC. Windows Execute with no parameters to verify installation. (e.g., authgen.cmd). This should print the help instructions for the application. Update the properties accesskey and secretkey in your auth.properties with your Authencation Key ID and Secret Authentication Key. Mac/Linux Make the file authgen.sh executable. (e.g, chmod +x authgen.sh) Execute with no parameters to verify installation. (e.g.,./authgen.sh). This should print the help instructions for the application. Update the properties accesskey and secretkey in your auth.properties with your Authencation Key ID and Secret Authentication Key. Usage Running the program with no parameters will display usage information. Run the program to generate a header by using either authgen.sh or authgen.cmd. At minimum a command line parameter of the service name must be passed in. E.g.,./authgen.sh -servicename I01. Parameters such as service endpoint, access key and secret key are read from a properties file. By default configuration settings will be read in from a file named auth.properties. The configuration file to be used may be overridden using the props parameter. E.g.,./authgen.sh -servicename I01 - props eat.design.properties. The header will be written to standard out and a file will be written containing the header. By default this will be auth.txt. If a context parameter is provided (use of a context element is strongly recommended) the generated file will be <context>.txt. It is also possible to force the header to be generated into a specified file using the out parameter. IPONZ Design Service Version 2 Page 33 of 38

34 Signature Verification The authgen tool can also be used to generate a signature from a file containing a string to sign. IPONZ Design Service Version 2 Page 34 of 38

35 APPENDIX 2: SOAPUI SOAPui is a tool for testing web services. It supports a large range of standards and can be used to test both SOAP and REST services. An open source version of SOAPui is available from and Importing a WSDL From the file menu choose New SOAPui project. This will bring up a project creation dialog. Enter the location of the WSDL file for the service being tested. This will populate the Project Name for you if you have not already filled this in. Upon clicking OK SOAPui will import the WSDL and show your new project in the Projects Navigator on the left of the window. Expand out the project and you will see all the operations of the service with a generated request for each. Endpoints When a WSDL is imported the location from the WSDL will become the initial service endpoint. New endpoints can easily be added by opening a request and selecting add new endpoint from the select box at the top of the window. Attachments When generating requests for an operation SOAPui will generate a CID for any attachment elements in the request. To attach a file to match the element click on the attachments tab at the bottom of the request pane. This will open up a section allowing attachments to be added. Click the + icon to choose an attachment. Select No when asked whether to cache the attachment in the request as this prevents switching between attachment mechanisms. Ensure that the Disable multiparts property is set to false. To send MTOM attachments, set the value of Enable MTOM to true in the operation properties. <Authenticator> Header Element To have requests authenticated by BusinessData it is necessary to generate the <Authenticator> header element using the authgen tool (Appendix 1). See the example below. <soapenv:envelope xmlns:soapenv=" xmlns:ipol=" xmlns:app=" xmlns:trad=" xmlns:xm=" <soapenv:header> <Authenticator> <ServiceName>I01</ServiceName> IPONZ Design Service Version 2 Page 35 of 38

36 ... <Authorization>T4WZUVoufkaGfsrK:2FLMlWGqCxnybWxBNtpsBiHaRfaRXBPooyB2qCmQIew=< /Authorization> <Timestamp> NZST</Timestamp> <Client> </Client> <Context>4</Context> </Authenticator> </soapenv:header> IPONZ Design Service Version 2 Page 36 of 38

37 APPENDIX 3: ATTACHMENTS MTOM (Mime Transmission Optimization Mechanism) This service supports MTOM as the attachment mechanism. The following is an example of MTOM request showing the HTTP headers, Attachment element, and attachment mime header. POST HTTP/1.0 Accept-Encoding: gzip,deflate SOAPAction: "" Content-Type: multipart/related; type="application/xop+xml"; start-info="text/xml"; boundary="---- =_Part_2_ " MIME-Version: 1.0 User-Agent: Jakarta Commons-HttpClient/3.1 Host: :8080 Proxy-Connection: Keep-Alive Content-Length: =_Part_2_ Content-Type: application/xop+xml; charset=utf-8; type="text/xml" Content-Transfer-Encoding: 8bit Content-ID: <des:representationsheetfilename>upload_pdf_document_01.pdf</des:representationshe etfilename> <des:attachment xm:contenttype="image/gif"><inc:include href="cid: " xmlns:inc=" =_Part_2_ Content-Type: image/gif Content-Transfer-Encoding: binary Content-ID: < > An MTOM request can be identified by the content type application/xop+xml and the presence of a start-info token in the content type header. In MTOM an XOP element is injected inside the attachment element to reference the MIME Content- ID. IPONZ Design Service Version 2 Page 37 of 38

38 In SOAPui you can verify that the MTOM attachment mechanism has been used by selecting the Raw tab to the left of the Request pane. IPONZ Design Service Version 2 Page 38 of 38

What is SOAP MTOM? How it works?

What is SOAP MTOM? How it works? What is SOAP MTOM? SOAP Message Transmission Optimization Mechanism (MTOM) is the use of MIME to optimize the bitstream transmission of SOAP messages that contain significantly large base64binary elements.

More information

Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite

Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite Introduction Pre-requisite Configuration Configure keystore and truststore Asset Creation and Deployment Troubleshooting

More information

SOAP WSDL & HTTP MIME REST Web Services Companion Guide HIPAA Operating Rules (HOpR) CORE Phase II

SOAP WSDL & HTTP MIME REST Web Services Companion Guide HIPAA Operating Rules (HOpR) CORE Phase II SOAP WSDL & HTTP MIME REST Web Services Companion Guide HIPAA Operating Rules (HOpR) CORE Phase II Companion Guide for web service options supporting the connectivity for and retrieval of ERA (835) transactions.

More information

File Transfer Service (Batch SOAP) User Guide. A Guide to Submitting batches through emedny FTS

File Transfer Service (Batch SOAP) User Guide. A Guide to Submitting batches through emedny FTS File Transfer Service (Batch SOAP) User Guide A Guide to Submitting batches through emedny FTS June 1, 2013 TABLE OF CONTENTS TABLE OF CONTENTS 1 Introduction... 4 2 Requirements... 5 2.1 Exchange mailboxes...

More information

Perceptive Connector for Infor Lawson AP Invoice Automation

Perceptive Connector for Infor Lawson AP Invoice Automation Perceptive Connector for Infor Lawson AP Invoice Automation Integration Guide Version: 1.4.x Written by: Product Knowledge, R&D Date: October 2015 2015 Lexmark International Technology, S.A. All rights

More information

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ 17 March 2013 NIEM Web Serv vices API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ i Change History No. Date Reference: All, Page, Table, Figure, Paragraph A = Add.

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

StreamServe Persuasion SP4 Service Broker

StreamServe Persuasion SP4 Service Broker StreamServe Persuasion SP4 Service Broker User Guide Rev A StreamServe Persuasion SP4 Service Broker User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No

More information

Configure Managed File Transfer Endpoints

Configure Managed File Transfer Endpoints Configure Managed File Transfer Endpoints 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications

ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications ACCREDITATION COUNCIL FOR PHARMACY EDUCATION CPE Monitor Technical Specifications Prepared by Steven Janis, RWK Design, Inc. Created: 02/10/2012 Revised: 09/28/2012 Revised: 08/28/2013 This document describes

More information

How to consume a Domino Web Services from Visual Studio under Security

How to consume a Domino Web Services from Visual Studio under Security How to consume a Domino Web Services from Visual Studio under Security Summary Authors... 2 Abstract... 2 Web Services... 3 Write a Visual Basic Consumer... 5 Authors Andrea Fontana IBM Champion for WebSphere

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Creating a Secure Web Service In Informatica Data Services

Creating a Secure Web Service In Informatica Data Services Creating a Secure Web Service In Informatica Data Services 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Testing Work Group. Document Status: Project: WS-I Monitor Tool Functional Specification [MonitorSpecification.doc]

Testing Work Group. Document Status: Project: WS-I Monitor Tool Functional Specification [MonitorSpecification.doc] Testing Work Group Project: WS-I Monitor Tool Functional Specification [MonitorSpecification.doc] Doc Type: Technical Design Specification Editor: Scott Seely Microsoft David Lauzon IBM Contributors: Peter

More information

Getting started with OWASP WebGoat 4.0 and SOAPUI.

Getting started with OWASP WebGoat 4.0 and SOAPUI. Getting started with OWASP WebGoat 4.0 and SOAPUI. Hacking web services, an introduction. Version 1.0 by Philippe Bogaerts Philippe.Bogaerts@radarhack.com www.radarhack.com Reviewed by Erwin Geirnaert

More information

Real-Time Connectivity Specifications For. 270/271 and 276/277 Inquiry Transactions. United Concordia Dental (UCD)

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

More information

THE PROXY SERVER 1 1 PURPOSE 3 2 USAGE EXAMPLES 4 3 STARTING THE PROXY SERVER 5 4 READING THE LOG 6

THE PROXY SERVER 1 1 PURPOSE 3 2 USAGE EXAMPLES 4 3 STARTING THE PROXY SERVER 5 4 READING THE LOG 6 The Proxy Server THE PROXY SERVER 1 1 PURPOSE 3 2 USAGE EXAMPLES 4 3 STARTING THE PROXY SERVER 5 4 READING THE LOG 6 2 1 Purpose The proxy server acts as an intermediate server that relays requests between

More information

Web Services Security SOAP Messages with Attachments (SwA) Profile 1.1

Web Services Security SOAP Messages with Attachments (SwA) Profile 1.1 1 2 3 4 Web Services Security SOAP Messages with Attachments (SwA) Profile 1.1 OASIS Standard, 1 February 2006 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Document identifier:

More information

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR Andrey V.Lyamin, State University of IT, Mechanics and Optics St. Petersburg, Russia Oleg E.Vashenkov, State University of IT, Mechanics and Optics, St.Petersburg,

More information

Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup. Version 1.1 Last Updated: April 14, 2014

Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup. Version 1.1 Last Updated: April 14, 2014 Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup Version 1.1 Last Updated: April 14, 2014 Table of Contents SSL Certificate Creation... 3 Option 1: Complete the Provider

More information

KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon

KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise includes two api s for integrating user accounts with an external directory of employee or other

More information

MS Enterprise Library 5.0 (Logging Application Block)

MS Enterprise Library 5.0 (Logging Application Block) International Journal of Scientific and Research Publications, Volume 4, Issue 8, August 2014 1 MS Enterprise Library 5.0 (Logging Application Block) Anubhav Tiwari * R&D Dept., Syscom Corporation Ltd.

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

App Orchestration 2.0

App Orchestration 2.0 App Orchestration 2.0 Configuring NetScaler Load Balancing and NetScaler Gateway for App Orchestration Prepared by: Christian Paez Version: 1.0 Last Updated: December 13, 2013 2013 Citrix Systems, Inc.

More information

Census. di Monitoring Installation User s Guide

Census. di Monitoring Installation User s Guide Census di Monitoring Installation User s Guide 1 r1 Contents Introduction... 3 Content overview... 3 Installing Windows 2003 Server Components... 4 System requirements... 4 di Monitoring Web Set-up...

More information

Exostar LDAP Proxy / SecureEmail Setup Guide. This document provides information on the following topics:

Exostar LDAP Proxy / SecureEmail Setup Guide. This document provides information on the following topics: This document provides information on the following topics: Email Encryption set-up Outlook 2003 Email Encryption set-up Outlook 2007 Email Encryption set-up Outlook 2010 Email Encryption set-up Outlook

More information

"Understanding Devices Profile for Web Services, Web Services Discovery, and SOAPover-UDP"

Understanding Devices Profile for Web Services, Web Services Discovery, and SOAPover-UDP Understanding Devices Profile for Web Services, Web Services Discovery, and SOAP-over-UDP September 10, 2008 Version 1.0 Authors Ram Jeyaraman, Microsoft Corporation (Editor) Vipul Modi, Microsoft Corporation

More information

WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern

WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern What this exercise is about... 2 Exercise requirements... 2

More information

CA SOA Security Manager

CA SOA Security Manager CA SOA Security Manager Implementation Guide r12.1 Second Edition This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational

More information

Pre-configured AS2 Host Quick-Start Guide

Pre-configured AS2 Host Quick-Start Guide Pre-configured AS2 Host Quick-Start Guide Document Version 2.2, October 19, 2004 Copyright 2004 Cleo Communications Refer to the Cleo website at http://www.cleo.com/products/lexihubs.asp for the current

More information

AT&T Synaptic Storage as a Service SM Getting Started Guide

AT&T Synaptic Storage as a Service SM Getting Started Guide AT&T Synaptic Storage as a Service SM Getting Started Guide Version 3.0 2011 AT&T Intellectual Property. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property. All other

More information

Technical Interface Description

Technical Interface Description Technical Interface Description Version 2.4.1 28.04.2015 Table of Contents 1 Introduction... 6 1.1 Preamble... 6 1.2 Structure of the Document... 6 1.3 Referenced Documents... 7 1.4 List of Abbreviations...

More information

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

Secure XML API Integration Guide - Periodic and Triggered add in

Secure XML API Integration Guide - Periodic and Triggered add in Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

More information

Replacements TECHNICAL REFERENCE. DTCCSOLUTIONS Dec 2009. Copyright 2009 Depository Trust Clearing Corporation. All Rights Reserved.

Replacements TECHNICAL REFERENCE. DTCCSOLUTIONS Dec 2009. Copyright 2009 Depository Trust Clearing Corporation. All Rights Reserved. TECHNICAL REFERENCE Replacements Page 1 Table of Contents Table of Contents 1 Overview... 3 1.1 Replacements Features... 3 2 Roles and Responsibilities... 4 2.1 Sender (Receiving Carrier)... 4 2.2 Recipient

More information

Network FAX Driver. Operation Guide

Network FAX Driver. Operation Guide Network FAX Driver Operation Guide About this Operation Guide This Operation Guide explains the settings for the Network FAX driver as well as the procedures that are required in order to use the Network

More information

WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0. Student Labs. Web Age Solutions Inc.

WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0. Student Labs. Web Age Solutions Inc. WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0 Student Labs Web Age Solutions Inc. 1 Table of Contents Lab 1 - WebSphere Workspace Configuration...3 Lab 2 - Introduction To

More information

etoken Enterprise For: SSL SSL with etoken

etoken Enterprise For: SSL SSL with etoken etoken Enterprise For: SSL SSL with etoken System Requirements Windows 2000 Internet Explorer 5.0 and above Netscape 4.6 and above etoken R2 or Pro key Install etoken RTE Certificates from: (click on the

More information

Office365Mon Developer API

Office365Mon Developer API Office365Mon Developer API Office365Mon provides a set of services for retrieving report data, and soon for managing subscriptions. This document describes how you can create an application to programmatically

More information

Oregon ALERT IIS. HL7 Real Time Data Exchange. Version 1.4b. Last Updated: Dec 2013

Oregon ALERT IIS. HL7 Real Time Data Exchange. Version 1.4b. Last Updated: Dec 2013 Oregon ALERT IIS HL7 Real Time Data Exchange Version 1.4b Last Updated: Dec 2013 Note: HL7 2.4 is the version number Oregon assigned to its implementation of the CDC HL7 2.3.1 (June 2006) Guide INTRODUCTION...

More information

e-filing Secure Web Service User Manual

e-filing Secure Web Service User Manual e-filing Secure Web Service User Manual Page1 CONTENTS 1 BULK ITR... 6 2 BULK PAN VERIFICATION... 9 3 GET ITR-V BY TOKEN NUMBER... 13 4 GET ITR-V BY ACKNOWLEDGMENT NUMBER... 16 5 GET RETURN STATUS... 19

More information

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

App Orchestration 2.5

App Orchestration 2.5 Configuring NetScaler 10.5 Load Balancing with StoreFront 2.5.2 and NetScaler Gateway for Prepared by: James Richards Last Updated: August 20, 2014 Contents Introduction... 3 Configure the NetScaler load

More information

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into

More information

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates Entrust Managed Services Entrust Managed Services PKI Configuring secure LDAP with Domain Controller digital certificates Document issue: 1.0 Date of issue: October 2009 Copyright 2009 Entrust. All rights

More information

Axway API Gateway. Version 7.4.1

Axway API Gateway. Version 7.4.1 O A U T H U S E R G U I D E Axway API Gateway Version 7.4.1 3 February 2016 Copyright 2016 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.4.1

More information

Using LDAP Authentication in a PowerCenter Domain

Using LDAP Authentication in a PowerCenter Domain Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,

More information

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML --------------------------------------------------------------------------------------------------------------------------- Contents Overview...

More information

HR Onboarding Solution

HR Onboarding Solution HR Onboarding Solution Installation and Setup Guide Version: 3.0.x Compatible with ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: November 2014 2014 Perceptive Software. All rights

More information

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.

More information

Publishing, Consuming, Deploying and Testing Web Services

Publishing, Consuming, Deploying and Testing Web Services Publishing, Consuming, Deploying and Testing Web Services Oracle JDeveloper 10g Preview Technologies used: Web Services - UML Java Class Diagram An Oracle JDeveloper Tutorial September 2003 Content Introduction

More information

Using Cockpit to browse via Google Chrome

Using Cockpit to browse via Google Chrome Using Cockpit to browse via Google Chrome We are happy to announce that starting version 4.5.1 (Build 24) we officially support Chrome browser. From now on, users can use both of their browsers, IE and

More information

Witango Application Server 6. Installation Guide for Windows

Witango Application Server 6. Installation Guide for Windows Witango Application Server 6 Installation Guide for Windows December 2010 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: support@witango.com Web: www.witango.com

More information

Using etoken for SSL Web Authentication. SSL V3.0 Overview

Using etoken for SSL Web Authentication. SSL V3.0 Overview Using etoken for SSL Web Authentication Lesson 12 April 2004 etoken Certification Course SSL V3.0 Overview Secure Sockets Layer protocol, version 3.0 Provides communication privacy over the internet. Prevents

More information

soapui Client Testing ecrv Web Services with soapui 1 9/20/2012 First edition soapui-x32-4.0.1 ecrv Development Team

soapui Client Testing ecrv Web Services with soapui 1 9/20/2012 First edition soapui-x32-4.0.1 ecrv Development Team soapui Client Testing ecrv Web Services with soapui Revision Status Index Rev. Date Description Prepared 1 9/20/2012 First edition soapui-x32-4.0.1 ecrv Development Team 2 3/8/2013 Added notes on where

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems If company want to be competitive on global market nowadays, it have to be persistent on Internet. If we

More information

MAGEJAM PLUGIN INSTALLATION GUIDE

MAGEJAM PLUGIN INSTALLATION GUIDE MAGEJAM PLUGIN INSTALLATION GUIDE BEFORE YOU BEGIN ANY INSTALL OR UPGRADE ** Always make sure to make a backup of your Magento installation before installing any extension especially on a live system.**

More information

Creating and Issuing the Workstation Authentication Certificate Template on the Certification Authority

Creating and Issuing the Workstation Authentication Certificate Template on the Certification Authority In this post we will see the steps for deploying the client certificate for windows computers. This post is a part of Deploy PKI Certificates for SCCM 2012 R2 Step by Step Guide. In the previous post we

More information

Using TestLogServer for Web Security Troubleshooting

Using TestLogServer for Web Security Troubleshooting Using TestLogServer for Web Security Troubleshooting Topic 50330 TestLogServer Web Security Solutions Version 7.7, Updated 19-Sept- 2013 A command-line utility called TestLogServer is included as part

More information

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip. Reflection DBR USER GUIDE 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Page 1 of 1 Table of Contents Overview 3 Reflection DBR Client and Console Installation 4

More information

[1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11

[1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11 [1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11 December 2015 Oracle Communications Billing and Revenue Management Web Services Manager, Release 7.5 E16724-11

More information

GDC Data Transfer Tool User s Guide. NCI Genomic Data Commons (GDC)

GDC Data Transfer Tool User s Guide. NCI Genomic Data Commons (GDC) GDC Data Transfer Tool User s Guide NCI Genomic Data Commons (GDC) Contents 1 Getting Started 3 Getting Started.......................................................... 3 The GDC Data Transfer Tool: An

More information

PowerCenter Real-Time Development

PowerCenter Real-Time Development PowerCenter Real-Time Development Brian Bunn, Project Manager Serco Jay Moles, Sr. Informatica Designer Serco Tom Bennett, Sr. Consultant Informatica 1 Agenda Overview of PowerCenter Web Services Error

More information

QuadraMed Enterprise Scheduling Combined Service Installation Guide. Version 11.0

QuadraMed Enterprise Scheduling Combined Service Installation Guide. Version 11.0 QuadraMed Enterprise Scheduling Combined Service Installation Guide Version 11.0 Client Support Phone: 877.823.7263 E-Mail: ClientSupport@QuadraMed.com QuadraMed Corporation Proprietary Statement This

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

How to Implement Two-Way SSL Authentication in a Web Service

How to Implement Two-Way SSL Authentication in a Web Service How to Implement Two-Way SSL Authentication in a Web Service 2011 Informatica Abstract You can configure two-way SSL authentication between a web service client and a web service provider. This article

More information

Oracle Fusion Middleware Oracle API Gateway OAuth User Guide 11g Release 2 (11.1.2.4.0)

Oracle Fusion Middleware Oracle API Gateway OAuth User Guide 11g Release 2 (11.1.2.4.0) Oracle Fusion Middleware Oracle API Gateway OAuth User Guide 11g Release 2 (11.1.2.4.0) July 2015 Oracle API Gateway OAuth User Guide, 11g Release 2 (11.1.2.4.0) Copyright 1999, 2015, Oracle and/or its

More information

ibolt V3.2 Release Notes

ibolt V3.2 Release Notes ibolt V3.2 Release Notes Welcome to ibolt V3.2, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

HTTPS Configuration for SAP Connector

HTTPS Configuration for SAP Connector HTTPS Configuration for SAP Connector 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

SAP Business One mobile app for Android

SAP Business One mobile app for Android User Guide SAP Business One mobile app 1.2.x for Android Document Version: 1.0 2016-03-25 Applicable Releases: SAP Business One 9.1 PL05 and later, SAP Business One 9.1 PL05, version for SAP HANA and later,

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

How-to: Single Sign-On

How-to: Single Sign-On How-to: Single Sign-On Document version: 1.02 nirva systems info@nirva-systems.com nirva-systems.com How-to: Single Sign-On - page 2 This document describes how to use the Single Sign-On (SSO) features

More information

Reference and Troubleshooting: FTP, IIS, and Firewall Information

Reference and Troubleshooting: FTP, IIS, and Firewall Information APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the

More information

000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0

000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 Easy CramBible Lab 000-284 Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 ** Single-user License ** This copy can be only used by yourself for educational purposes Web: http://www.crambible.com/

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

ERserver. iseries. Secure Sockets Layer (SSL)

ERserver. iseries. Secure Sockets Layer (SSL) ERserver iseries Secure Sockets Layer (SSL) ERserver iseries Secure Sockets Layer (SSL) Copyright International Business Machines Corporation 2000, 2002. All rights reserved. US Government Users Restricted

More information

vcloud Air Platform Programmer's Guide

vcloud Air Platform Programmer's Guide vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Sop U. SOAP over JMS with. Configuring soapui to test TIBCO SOAP over JMS. - Seshasai Kotipalli

Sop U. SOAP over JMS with. Configuring soapui to test TIBCO SOAP over JMS. - Seshasai Kotipalli Sop U Configuring soapui to test TIBCO SOAP over JMS - Seshasai Kotipalli SOAP over JMS with Summary 1 Introduction... 3 2 Installation... 4 3 Hermes Configuration... 5 4 Configuring JMS endpoints in soapui...

More information

How to Time Stamp PDF and Microsoft Office 2010/2013 Documents with the Time Stamp Server

How to Time Stamp PDF and Microsoft Office 2010/2013 Documents with the Time Stamp Server How to Time Stamp PDF and Microsoft Office 2010/2013 Documents with the Time Stamp Server Introduction Time stamping is an important mechanism for the long-term preservation of digital signatures, time

More information

HireDesk API V1.0 Developer s Guide

HireDesk API V1.0 Developer s Guide HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to

More information

Sending MIME Messages in LISTSERV DISTRIBUTE Jobs

Sending MIME Messages in LISTSERV DISTRIBUTE Jobs Whitepaper Sending MIME Messages in LISTSERV DISTRIBUTE Jobs August 25, 2010 Copyright 2010 L-Soft international, Inc. Information in this document is subject to change without notice. Companies, names,

More information

USING SSL/TLS WITH TERMINAL EMULATION

USING SSL/TLS WITH TERMINAL EMULATION USING SSL/TLS WITH TERMINAL EMULATION This document describes how to install and configure SSL or TLS support and verification certificates for the Wavelink Terminal Emulation (TE) Client. SSL/TLS support

More information

02267: Software Development of Web Services

02267: Software Development of Web Services 02267: Software Development of Web Services Week 8 Hubert Baumeister huba@dtu.dk Department of Applied Mathematics and Computer Science Technical University of Denmark Fall 2013 Contents RESTful Services

More information

Secure XML API Integration Guide. (with FraudGuard add in)

Secure XML API Integration Guide. (with FraudGuard add in) Secure XML API Integration Guide (with FraudGuard add in) Document Control This is a control document DESCRIPTION Secure XML API Integration Guide (with FraudGuard add in) CREATION DATE 02/04/2007 CREATED

More information

Cloud Elements! Marketing Hub Provisioning and Usage Guide!

Cloud Elements! Marketing Hub Provisioning and Usage Guide! Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading

More information

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054

More information

How To Send An Encrypted Email In Outlook 2000 (For A Password Protected Email) On A Pc Or Macintosh (For An Ipo) On Pc Or Ipo (For Pc Or For A Password Safemail) On An Iphone Or

How To Send An Encrypted Email In Outlook 2000 (For A Password Protected Email) On A Pc Or Macintosh (For An Ipo) On Pc Or Ipo (For Pc Or For A Password Safemail) On An Iphone Or Outlook 2000 1. Open Outlook 2000 and select the Tools > Options > Security. 2. Click Change Settings. 3. Under the Certificates and Algorithms, there are two Choose buttons. The first allows you to select

More information

Configuring Single Sign-on from the VMware Identity Manager Service to AirWatch Applications

Configuring Single Sign-on from the VMware Identity Manager Service to AirWatch Applications Configuring Single Sign-on from the VMware Identity Manager Service to AirWatch Applications VMware Identity Manager AUGUST 2015 V1 Configuring Single Sign-On from VMware Identity Manager to AirWatch Applications

More information