CorrectAddress Web Services
|
|
|
- Amice Manning
- 10 years ago
- Views:
Transcription
1 CorrectAddress Web Services Reference Guide 445 Hamilton Ave. Suite 608 White Plains, NY Tel: (914) or (800) Fax: (914) web: CAWS
2 Copyright The information furnished in this document and software was published by Intelligent Search Technology. Intelligent Search Technology holds a non-exclusive license to publish and sell ZIP+4, e-lot, and ZIPMove information. The price of CorrectAddress is neither established, nor controlled or approved by the United States Postal Service. ZIP+4, e-lot, CASS, DPV, LACS Link, Suite Link and ZIPMove are registered trademarks of the United States Postal Service. Any advertising of this product was neither approved nor endorsed by the United States Postal Service. United States Postal Service 2010 Trademarks NameSearch and CorrectAddress are registered trademarks of Intelligent Search Technology, Ltd. Microsoft, Visual Studio, Access. Microsoft.NET Framework and Windows are registered trademarks of the Microsoft Corporation in the United States and other countries. Other product names mentioned in this manual may be a trademark or trademarks of their respective companies and are hereby acknowledged.
3 Table of Contents CHAPTER 1 - GENERAL INFORMATION Product Information Web Service and Object Model Information What s New web Service Location (URL) Main Functions Account Management Functions Output Data Definitions CHAPTER 2 - FUNCTION SPECIFICATIONS wscorrecta wstigerca wsfindcitycounty wsfindzipcity wsfindcitystate wsstreetsearch wsgetaccountaccess wsgetaccountinfo wscreatebatch wsdeletebatch wsgetbatchlist wsgetps3553form CHAPTER 3 - WEB SERVICE INTEGRATION C# ColdFusion Java Oracle PHP VB.NET CLASSIC ASP APPENDIX A - TRANSITIONING TO THE NEW OBJECT MODEL... A-1
4
5 GENERAL INFORMATION Chapter 1 - General Information PRODUCT INFORMATION The CorrectAddress software engine is CASS -certified by the United States Postal Service and SERP-certified by Canada Post to perform address correction, standardization and validation. The product is designed to overcome wide variations in address data, fix misspellings and erroneous information, fill in omitted components and normalize incorrect formatting. The output contains postal data records, in which components are separated into individual fields. WEB SERVICE AND OBJECT MODEL INFORMATION Web services allow client-side programs to invoke certain methods exposed by a server and receive any processed data back. Web services provide a standard means of interaction between different software applications, running on a variety of platforms and/or frameworks. Communication between the client and server modules is done via Extensible Markup Language (XML) that allows for efficient data parsing in web-enabled applications. Most application frameworks provide predefined modules that aid with parsing XML documents. Furthermore, popular frameworks provide a mechanism through which the XML communication is entirely transparent to the developer s/he simply deals with objects. The underlying framework translates the objects to an XML stream (known as serialization). Similarly, the data returned back from the server is translated from XML to more easily manageable objects (known as deserialization) by the framework. Before we take a look at exactly how one would invoke a web service, a few terms need to be understood. extensible Markup Language (XML): Language to describe data and control flow in a generic, platform independent fashion Web Service Description Language (WSDL): XML based language which provides a model for describing web services. The server uses WSDL to provide the following information: 1. Enumerate the various services/methods it offers 2. Name and type of arguments that these methods operate upon 3. Name and type of values (if any) returned by the server as a result of calling these methods Simple Object Access Protocol (SOAP): Once you know what services are offered by the server, SOAP is a means through which the client communicates with the server to actually invoke those services Serialization: The process of converting an object or a data type (e.g, int, string, etc) into a generic XML equivalent Deserialization: The process of converting an XML representation of an object or data type into a more framework specific form In order to call a web service, one must: 1. Obtain the URL to the WSDL 2. Point the application framework to this URL the framework will create stubs that handle communication with the server 3. Write the client program that uses the stubs generated above to call the web services The above steps will be evident in the demo programs described in Chapter 3: Web Service Integration later in this manual. P AGE 1-1
6 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE The following figure depicts a typical client/server interaction via web services 1. The Client calls web service methods like any other regular method, thinking that the client stub offers these methods 2. The Client stub serializes the method arguments and creates a SOAP request that it sends over to the server 3. The server receives the SOAP request, deserializes it and calls the requested method with the arguments provided by the client 4. The server serializes the return values from the methods into a SOAP response that it sends back to the client 5. The client stub receives the SOAP response and deserializes it into a more useful object 6. The returned object is then sent over to the Client module P AGE 1-2
7 GENERAL INFORMATION WHAT S NEW In November 2009, Intelligent Search Technology introduced a new set of web services utilizing an enhanced XML object model. Among the changes are: Improved speed Improved code efficiency Improved programmer s interface no more parsing XML responses. The new web services return result objects that have the information parsed and ready for use Code has been refactored, leading to deprecation of some outdated services and packing additional functionality into existing methods If you need help transitioning from the old-style web services to the new object model, please refer to Appendix A, or contact IST Technical Support Team. P AGE 1-3
8 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE WEB SERVICE LOCATION (URL) MAIN FUNCTIONS The following is a list of currently supported CorrectAddress web service functions. Function wscorrecta Description Validates and CASS-standardizes input address with Delivery Point Validation (DPV) and LACSLink processing. Verifies and corrects Canadian addresses. All near matches are returned when applicable. Number of remaining transactions is returned in the SearchesLeft output field. wstigerca Validates, CASS-standardizes and geo-codes input address with Delivery Point Validation (DPV) and LACSLink processing. All near matches are returned when applicable. Number of remaining transactions is returned in the SearchesLeft output field. wsfindcitycounty Accepts ZIP code as input. Returns preferred city name, state, county information. Number of remaining transactions is returned in the SearchesLeft output field. wsfindzipcity Accepts city and state as input. Returns all corresponding ZIP codes. Number of remaining transactions is returned in the SearchesLeft output field. wsfindcitystate Accepts ZIP code as input. Returns all valid mailing city names, state, county information. Number of remaining transactions is returned in the SearchesLeft output field. wsstreetsearch2 Accepts street information with city or ZIP code Returns matches based on similar street records in the area. The matches are unsorted and contain street number ranges and secondary number ranges (if applicable).number of remaining transactions is returned in the SearchesLeft output field. P AGE 1-4
9 GENERAL INFORMATION ACCOUNT MANAGEMENT FUNCTIONS The following functions are used to access or modify user account information Function wsgetaccountaccess Description Returns information about account access privileges. wsgetaccountinfo Returns account related information. Currently, it is used to retrieve remaining number of transactions. Return codes are: 0 information retrieved successfully 1 invalid account 2 account is disabled 3 account does not have access to CorrectAddress XML web services 4 unspecified error wscreatebatch Creates user batch space. The batch space stores all settings necessary to produce a USPS Postal Form 3553 (CASS report) upon completion of a batch job. The following functions allow users to append current transaction to a specific batch space by passing its name in the batch name parameter: wscorrecta, wstigerca. Note: The batch space only stores job statistics, *not* the actual output address data. Storing address data returned by web services is users responsibility. wsdeletebatch Empties and removes specified user batch space. wsgetbatchlist Returns all current batch spaces under user s account. wsgetps3553form Retrieves current batch job statistics necessary to generate USPS Postal Form 3553 (CASS report). Data is returned in the XML format. P AGE 1-5
10 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE OUTPUT DATA DEFINITIONS The following data fields are contained in the web service response string. Keyword Any is used to designate fields that may contain any valid ASCII characters. Note that numeric fields may contain leading zeros. OUTPUT DATA FIELD TYPE MAXIMUM FIELD SIZE StreetNumber Alphanumeric, Fractions 10 (21 for wsstreetsearch2 service) PreDirectional Alpha 2 StreetName Alphanumeric 28 StreetSuffix Alpha 4 PostDirectional Alpha 2 SecondaryDesignation Alpha, # 4 SecondaryNumber Alphanumeric, Fractions 8 (17 for wsstreetsearch2 service) City/Municipality(US/Canada) Alphanumeric 28 State/Province (US/Canada) Alpha 2 ZipAddon/Postal Code Numeric, - 10 Zip/Postal Code Numeric 5 Addon Numeric 4 LOTNumber Numeric 5 DPCCheckdigit Numeric 3 RecordType Numeric 1 DeliveryLine1 Any 64 DeliveryLine2 Any 64 LastLine Alphanumeric 64 LACS Alpha 1 CarrierRoute Alphanumeric 4 PMBDesignator Alphanumeric, # 12 FirmRecipient Any 40 Urbanization Alpha 28 CountyName Alpha 25 P AGE 1-6
11 GENERAL INFORMATION OUTPUT DATA FIELD TYPE MAXIMUM FIELD SIZE CountyNumber Numeric 3 Filler 2 Alphanumeric 260 (see sample output for wscorrecta function call) GeoTLID (TLID) 1 Numeric 10 * 20 (Tigerstcode) 1 Numeric 2 (Tigercroute) 1 Alphanumeric 4 (Tigercounty) 1 Numeric 3 GeoMatchFlag (MatchFlag) 1 Alpha 1 * 20 GeoTract (Tract) 1 Numeric 6 * 20 GeoBlock (Block) 1 Numeric 4 * 20 GeofLat (flat) 1 Decimal with + sign 11 * 20 GeotLat (tlat) 1 Decimal with + sign 11 * 20 GeofLong (flong) 1 Decimal with sign 12 * 20 GeotLong (tlong) 1 Decimal with sign 12 * 20 GeoAddonStart(AddonStart) 1 Numeric 4 * 20 GeoAddonEnd(AddonEnd) 1 Numeric 4 * 20 GeoErrCodes (Tigererrcode) 1 Numeric 30 GeoRetCode (tigerret) 1 Numeric 10 ReturnCodes Numeric 10 ErrorCodes 3 Alphanumeric 30 ErrorDesc 4 Alphanumeric n/a SearchesLeft 5 Numeric n/a 1 Output field for geo-coding only. The name in parentheses is used by TigerCA function call only. 2 Output field for wscorrecta and wstigerca function calls only. 3 ErrorCodes This node lists all codes relevant to the input address. In case of an incorrect username/password combination ErrorCodes is set to xx. ErrorCodes also equals xx when an account has no remaining transactions or has been deactivated. 4 ErrorDesc This node lists detailed messages for each error code in ErrorCodes. 5 SearchesLeft This node returns the number of transactions remaining on user account. P AGE 1-7
12 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE Please note that when wscorrecta or wstigerca return multiple near-match records, only the first record will contain data for DeliveryLine1, DeliveryLine2, LastLine, LOTNumber, DPCCheckdigit, PMBDesignator, ReturnCodes, Error Codes, and ErrorDesc. Complete list of CorrectAddress fields, record types and error codes (U.S. and Canada) is available at: (web account required to access). P AGE 1-8
13 FUNCTION SPECIFICATIONS Chapter 2 - Function Specifications wscorrecta Description Validates and CASS-standardizes input address with Delivery Point Validation (DPV) and LACSLink processing. Verifies and corrects Canadian addresses. All near matches are returned when applicable. Number of remaining account transactions is returned in the SearchesLeft output field. XML template <username>string</username> <password>string</password> <firmname>string</firmname> <urbanization>string</urbanization> <delivery_line_1>string</delivery_line_1> <delivery_line_2>string</delivery_line_2> <city_state_zip>string</city_state_zip> <ca_codes>string</ca_codes> <ca_filler>string</ca_filler> <batchname>string</batchname> Parameters username account username password account password firmname (Optional) firm or recipient name for input address urbanization (Optional) urbanization name (Puerto Rico addresses only) delivery_line_1 input address line 1 information delivery_line_2 (Optional) input address line 2 information city_state_zip input address city, state, ZIP information (municipality, province, postal code for Canada) ca_codes (Optional) additional codes for address parsing (see Remarks) ca_filler (Optional) internal use (see Remarks) batchname (Optional) name of batch space, if one exists, to which the specified address belongs to (this option is enabled for ability to produce ps3553 USPS forms). P AGE 2-1
14 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE Remarks By default, output address is returned in capital letters. To enable mixed case output, pass Mc in the leftmost two available characters of ca_codes. To enable street address parsing for no-match addresses, pass Ry in the leftmost two available characters of ca_codes. DPV and LACSLink output data is returned through Filler output field (see sample output for wscorrecta function call) [Ex. CA_CODES = McRy ] Output: Output is an array of objects of type WsCorrectAddress: class WsCorrectAddress{ string StreetNumber; string PreDirectional; string StreetName; string StreetSuffix; string PostDirectional; string SecondaryDesignation; string SecondaryNumber; string City; string State; string ZipAddon; string Zip; string Addon; string LOTNumber; string DPCCheckdigit; string RecordType; string DeliveryLine1; string DeliveryLine2; string LastLine; string LACS; string CarrierRoute; string PMBDesignator; string FirmRecipient; string Urbanization; string CountyName; string CountyNumber; string Filler; string GeoTLID; string GeoMatchFlag; string GeoTract; string GeoBlock; string GeofLat; string GeotLat; string GeofLong; string GeotLong; string GeoAddonEnd; string GeoAddonStart; string GeoRetCode; string GeoErrCodes; string ReturnCodes; string ErrorCodes; string ErrorDesc; int SearchesLeft; } P AGE 2-2
15 FUNCTION SPECIFICATIONS Example Input: <username>username</username> <password>password</password> <firmname>intelligent Search Technology</firmname> <urbanization> </urbanization> <delivery_line_1>445 Hamilton Ave 608</delivery_line_1> <delivery_line_2> </delivery_line_2> <city_state_zip>white Plains, NY</city_state_zip> <ca_codes>mc </ca_codes> <ca_filler> </ca_filler> <batchname> </batchname> The DPV and LACSLink output data is returned through Filler output field. Filler Output Field Start Position (Index-1) Length Description 1 1 DPV Confirmation 2 1 DPV CMRA 3 1 DPV False Positive 4 1 DPV NoStat 5 12 DPV Footnotes 17 1 DPV Vacant Indicator LACSLink Code LACSLink RetCode P AGE 2-3
16 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wstigerca Description Validates, CASS-standardizes and geo-codes input address with Delivery Point Validation (DPV) and LACSLink processing. All near matches are returned when applicable. Number of remaining account transactions is returned in the SearchesLeft output field. XML template Same as in wscorrecta Function. Parameters Same as in wscorrecta Function. Output: Same as in wscorrecta Function. Example Input: <username>username</username> <password>password</password> <firmname>intelligent Search Technology, Ltd</firmname> <urbanization> </urbanization> <delivery_line_1>445 Hamilton Ave 608</delivery_line_1> <delivery_line_2> </delivery_line_2> <city_state_zip>white Plains, NY</city_state_zip> <ca_codes>mc </ca_codes> <ca_filler> </ca_filler> <batchname> </batchname> P AGE 2-4
17 FUNCTION SPECIFICATIONS wsfindcitycounty Description Accepts ZIP code as input. Returns city, state, county information. Number of remaining account transactions is returned in the SearchLeft output field. XML template <username>string</username> <password>string</password> <zip>string</zip> Parameters username account username password account password zip input ZIP code Output: Output is an object of type WsCityCounty: class WsCityCounty{ string Zip; string City; string State; string CountyName; string CountyNum; int SearchLeft; string ErrorDesc; } Example Input: <username>username</username> <password>password</password> <zip>10509</zip> P AGE 2-5
18 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wsfindzipcity Description Accepts city and state as input. Returns all corresponding ZIP codes. Number of remaining account transactions is returned in the SearchLeft output field. XML template <username>string</username> <password>string</password> <city>string</city> <state>string</state> Parameters username account username password account password city input city name state input state abbreviation Output: Output is an array of objects of type WsZipCity: class WsZipCity{ string City; string State; string Zip; int SearchLeft; string ErrorDesc; } Example Input: <username>username</username> <password>password</password> <city>ridgefield</city> <state>ct</state> P AGE 2-6
19 FUNCTION SPECIFICATIONS wsfindcitystate Description Accepts ZIP code as input. Returns all valid mailing city names, state, county information. Number of remaining account transactions is returned in the SearchLeft output field. XML template <username>string</username> <password>string</password> <zip>string</zip> Parameters username account username password account password zip input ZIP code Output: Output is an array of objects of type WsCityState: class WsCityState{ string Zip; string City; string State; string CountyName; int SearchLeft; string ErrorDesc; } Example Input: <username>username</username> <password>password</password> <zip>94707</city> P AGE 2-7
20 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wsstreetsearch2 Description Accepts street information with city or ZIP code Returns matches based on similar street records in the area. The matches are unsorted and contain street number ranges and secondary number ranges (if applicable). The ranges are returned in the following form: Street number: START_RANGE (10 bytes) + END_RANGE (10 bytes) + OEB CODE (Odd, Even or Both, 1 byte) Secondary number: START_RANGE (8 bytes) + END_RANGE (8 bytes) + OEB CODE (Odd, Even or Both, 1 byte) Number of remaining account transactions is returned in the SearchLeft output field. XML template <username>string</username> <password>string</password> <firmname>string</firmname> <urbanization>string</urbanization> <delivery_line_1>string</delivery_line_1> <delivery_line_2>string</delivery_line_2> <city_state_zip>string</city_state_zip> <mixedcase>boolean</mixedcase> <batchname >string</batchname> Parameters username account username password account password firmname (Optional) firm or recipient name for input address urbanization (Optional) urbanization name (Puerto Rico addresses only) delivery_line_1 input address line 1 information delivery_line_2 (Optional) input address line 2 information city_state_zip input address city, state, ZIP information mixedcase set to True for mixed case output, False for capitalized output batchname (Optional) name of batch space, if one exists, to which the specified address belongs to (this option is enabled for ability to produce ps3553 USPS forms) P AGE 2-8
21 FUNCTION SPECIFICATIONS Output: Output is an array of objects of type WsStreetSearch: class WsStreetSearch{ string StreetNumber; string PreDirectional; string StreetName; string StreetSuffix; string PostDirectional; string SecondaryDesignation; string SecondaryNumber; string City; string State; string ZipAddon; string Zip; string Addon; string RecordType; string CarrierRoute; string FirmRecepient; string Urbanization; string FinanceNumber; string ErrorDesc; int SearchLeft; string Score; } Example Input: <username>username</username> <password>password</password> <firmname>intelligent Search Technology</firmname> <urbanization> </urbanization> <delivery_line_1>mill Town Road</delivery_line_1> <delivery_line_2> </delivery_line_2> <city_state_zip>ny 10509</city_state_zip> P AGE 2-9
22 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wsgetaccountaccess Description Returns information about account access privileges. XML template <username>string</username> <password>string</password> Parameters username account username password account password Example Input: <username>username</username> <password>password</password> Output: Output is an object of type WsAccountAccess: class WsAccountAccess { bool Ca; bool Geo; bool Dpv; bool LACSLink; bool OfficeAddin; bool WebClient; string CurrentDate; } P AGE 2-10
23 FUNCTION SPECIFICATIONS wsgetaccountinfo Description Returns account related information. Currently, it is used to retrieve remaining number of transactions. Return codes are: 0 information retrieved successfully 1 invalid account 2 account is disabled 3 account does not have access to CorrectAddress XML web services 4 unspecified error XML template <username>string</username> <password>string</password> Parameters username account username password account password Example Input: <username>username</username> <password>password</password> Output: Output is an object of type WsAccountInfo: class WsAccountInfo { int SearchesLeft; int ReturnCode; } P AGE 2-11
24 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wscreatebatch Description Creates user batch space. The batch space stores all settings necessary to produce a USPS Postal Form 3553 (CASS report) upon completion of a batch job. The following functions allow users to append current transaction to a specific batch space by passing its name in the batch name parameter: wscorrecta, wstigerca. Returns boolean true if the batch was created successfully; otherwise boolean false is returned. Note: The batch space only stores job statistics, *not* the actual output address data. Storing address data returned by web services is users responsibility. XML template <username>string</username> <password>string</password> <batchname>string</batchname> Parameters username account username password account password batchname batch space name P AGE 2-12
25 FUNCTION SPECIFICATIONS wsdeletebatch Description Empties and removes specified user batch space. Like the CreateBatch function, a boolean true is returned if the batch was deleted successfully; otherwise boolean false is returned. XML template Same as in CreateBatch Function. Parameters Same as in CreateBatch Function. P AGE 2-13
26 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE wsgetbatchlist Description Returns all current batch spaces under user s account as a string array. XML template <username>string</username> <password>string</password> Parameters username account username password account password P AGE 2-14
27 FUNCTION SPECIFICATIONS wsgetps3553form Description Retrieves current batch job statistics necessary to generate USPS Postal Form 3553 (CASS report). Data is returned in an XML format. XML template Same as in wscreatebatch Function. Parameters Same as in wscreatebatch Function. Output: Output is an object of type WsPS3553: class WsPS3553{ string CAdate; string Company; string Software; string Configuration; int RecordCount; int ZipCount; int AddonCount; int CRouteCount; int LOTCount; int DPCCount; int LACSCount; int EWSCount; int DPVCount; int HDefaultCount; int HExactCount; int RRDefaultCount; int RRExactCount int RDICount; string Message; } CADate records the date of the USPS data used for processing. Company, Software, and Configuration record information about organization and the CASS -certified software. The rest are counters based on input data. RecordCount records the overall number of records processed for this particular batch job. P AGE 2-15
28 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE The following are the fields in PS3553 that must be filled out with information returned by the web service: Section A (Software): 1. [Company] 2. [Software] 3. [Configuration] 7. [Company] 8. [Software] 9. [Configuration] Section B (List): 2a. Current date 2c. Current date 3a. [CADate] 3c. [CADate] [RecordCount] Section C (Output): 1a. [AddonCount] 1b. 0 1c. [DPCCount] 1d. [ZipCount] 1e. [CRouteCount] 1f. [LOTCount] 2a. From [CADate] To [CADate days] 2c. From [CADate] To [CADate days] 2d. From [CADate] To [CADate days] 2e. From [CADate] To [CADate + 90 days] 2f. From [CADate] To [CADate + 90 days] Section D (Mailer): Section E (QSS): High Rise Default = [HDefaultCount] High Rise Exact = [HExactCount] RR Default = [RRDefaultCount] RR Exact = [RRExactCount] LACS = [LACSCount] EWS = [EWSCount] DPV = [DPVCount] RDI = [RDICount] RDICount (Residential Delivery Indicator) is always set to 0. This functionality is currently not available via CorrectAddress web services. Message will return the name of the batch job if data retrieval is successful. Otherwise, it will return an error message. Example Input: <username>username</username> <password>password</password> <city>testbatch</city> P AGE 2-16
29 WEB SERVICE INTEGRATION Chapter 3 - Web Service Integration C# 1. Generate the C# stubs from the WSDL as follows: wsdl.exe /n:correctaddresswsdemo <WSDL/URL> The tool will indicate where the resultant file was created 2. Add a reference to CorrectAddressWebService.cs (which is the file created in the step above) 3. Ensure that the project references 'System.Web' and 'System.Web.Services' 4. Call the CorrectAddress web service Example of calling wscorrecta: string username = "your username"; string password = "your password"; WsCorrectAddress[] caresultlist = cawebservice.wscorrecta(username, password, "Intelligent Search Technology Ltd.", " ","445 Hamilton Ave, ste 608", " ", "10601", " ", " ", " "); Sample C# project and supplementary documentation is available at: The example above uses the WSDL utility to generate client stubs. As an alternative, users may add a direct web reference to the web service by using the Add Web Reference tool in the Visual Studio project. P AGE 3-1
30 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE COLDFUSION Example of calling wscorrecta: <cfscript> //variable definitions username = "your username"; password = "your password"; batchname = "test_batch"; wsdl = " // create a webservice object ws = createobject("webservice", wsdl); // Sample wscorrecta call ws_result = ws.wscorrecta(username, password, "Intelligent Search Technology Ltd.", " ", "445 Hamilton Ave, Ste 608", " ", "10601", " ", " ", batchname); </cfscript> ca_results = ws_result.getwscorrectaddress(); Sample ColdFusion script and supplementary documentation is available at: P AGE 3-2
31 WEB SERVICE INTEGRATION JAVA 1. Generate the Java stubs from the WSDL as follows: wsimport -s src -d bin <url_to_wsdl> This will create the source files in the /src directory and class files in the /bin directory. 2. Import the source files generated in step 1 into the project. 3. Call the CorrectAddress web service Example of calling wscorrecta: // 1. Define an object of the 'web service' class CorrectAddressWebService cawebservices; // 2. Define an object of the 'soap' class CorrectAddressWebServiceSoap soap; // 3. Factory object to 'create' other objects ObjectFactory factory; // Account Specific info final String username = "your username"; final String password = "your password"; final String batchname = "test_batch"; // 4. Create holder for the CorrectAddress Response WsCorrectAResponse wscorrectresult = factory.createwscorrectaresponse(); // 5. Call the desired web service wscorrectresult.setwscorrectaresult(soap.wscorrecta(username, password, " ", " ", "445 Hamilton Ave", "Ste 608", "10601", " ", " ", " ")); Sample Java script and supplementary documentation is available at: P AGE 3-3
32 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE ORACLE 1. Create the PL SQL package as defined in soap_api.pls (located in the example package below) as 2. Call the CorrectAddress web service 3. Use the SOAP API to parse the output fields, as necessary. Sample Oracle script and supplementary documentation is available at: P AGE 3-4
33 WEB SERVICE INTEGRATION PHP Example of calling wscorrecta: $wsdl=" $client=new nusoap_client($wsdl, 'wsdl'); $address_params=array( 'username'=>'your username', 'password'=>'your password', 'firmname'=>'intelligent Search Technology Ltd.', 'urbanization'=>' ', 'delivery_line_1'=>'445 Hamilton Ave, ste 608', 'delivery_line_2'=>' ', 'city_state_zip'=>'10601', 'ca_codes'=>' ', 'ca_filler'=>' ', 'batchname'=>'test_batch' ); Sample PHP script and supplementary documentation is available at: Note: The examples use a group of classes called NuSOAP that facilitate creation and consumption of SOAP web services. More information along with the actual PHP classes can be found at NuSOAP can be replaced by any other SOAP API. P AGE 3-5
34 CORRECTADDRESS WEB SERVICES REFERENCE GUIDE VB.NET 1. Generate the VB.NET stubs from the WSDL as follows: wsdl.exe /l:vb /n:correctaddresswsdemo <WSDL/URL> The tool will indicate where the resultant file was created 2. Add a reference to CorrectAddressWebService.vb (which is the file created in the step above) 3. Ensure that the project references 'System.Web' and 'System.Web.Services' 4. Call the CorrectAddress web service Example of calling wscorrecta: Dim username As String = "your username" Dim password As String = "your password" Dim caresultlist As WsCorrectAddress() = cawebservice.wscorrecta(username, password, "Intelligent Search Technology Ltd.", " ", "445 Hamilton Ave, ste 608", " ", "10601", " ", " ", " ") Sample VB.NET project and supplementary documentation is available at: WS/docs/VB.NET/Example.zip The example above uses the WSDL utility to generate client stubs. As an alternative, users may add a direct web reference to the web service by using the Add Web Reference tool in the Visual Studio project. P AGE 3-6
35 WEB SERVICE INTEGRATION CLASSIC ASP Example of calling wscorrecta: <% Dim requestdoc Dim webxml Dim XMLresponse Dim objxmlhttp Dim CARequest set requestdoc=server.createobject("microsoft.xmldom") requestdoc.async = false set objxmlhttp = Server.CreateObject("Microsoft.XMLHTTP") webxml = "<username>username</username>" & _ "<password>password</password>" & _ "<firmname>intelligent Search Technology Ltd.</firmname>" & _ "<urbanization></urbanization>" & _ "<delivery_line_1>445 Hamilton Ave, Ste 608</delivery_line_1>" & _ "<delivery_line_2></delivery_line_2>" & _ "<city_state_zip>white Plains, NY 10601</city_state_zip>" & _ "<ca_codes>" & "McRy " & "</ca_codes>" & _ "<ca_filler>" & "" & "</ca_filler>" & _ "<batchname></batchname>" CARequest = "" CARequest = CARequest & "<?xml version=""1.0"" encoding=""utf-8""?>" & vbcrlf CARequest = CARequest & "<soap:envelope xmlns:xsi="" xmlns:xsd="" xmlns:soap="" & vbcrlf CARequest = CARequest & "<soap:body>" & vbcrlf CARequest = CARequest & "<wscorrecta xmlns="" CARequest = CARequest & webxml CARequest = CARequest & "</wscorrecta>" & vbcrlf CARequest = CARequest & "</soap:body>" & vbcrlf CARequest = CARequest & "</soap:envelope>" & vbcrlf objxmlhttp.open "post", " false objxmlhttp.setrequestheader "Content-Type", "text/xml; charset=utf-8" objxmlhttp.setrequestheader "Content-Length", Len(CARequest) objxmlhttp.setrequestheader "SOAPAction", " objxmlhttp.send CARequest requestdoc.loadxml objxmlhttp.responsetext XMLresponse = requestdoc.text response.write XMLresponse %> Sample Classic ASP script and supplementary documentation is available at: WS/docs/ClassicASP/Example.zip P AGE 3-7
36
37 TRANSITIONING TO THE NEW OBJECT MODEL Appendix A - Transitioning to the New Object Model This appendix provides guidance for users transitioning to the new web service model and those using one of the functions deprecated on or before January 1, The latest version of the API incorporates a number of enhancements. To ensure smooth transition to the object-based model, several functions were renamed and a few were deprecated. Below is the list of web service name changes in effect January 1, 2010 (two primary validation service names wscorrecta and wstigerca remain the same): FORMER NAME CallFindCityCounty CallFindZipCity CallFindCityState CallStreetSearch2 getaccountinfo CreateBatch DeleteBatch getbatchlist getps3553form NEW NAME wsfindcitycounty wsfindzipcity wsfindcitystate wsstreetsearch2 wsgetaccountinfo wscreatebatch wsdeletebatch wsgetbatchlist wsgetps3553form If the function you are currently using is no longer listed and has been deprecated, please refer to the table below for the new function name to use (see Chapter 2: Functions Specifications earlier in the document): DEPRECATED FUNCTION NAME callca callca2 callcastd correcta correcta2 CallStreetSearch TigerCA getps3553form2 NEW FUNCTION TO USE wscorrecta wscorrecta wscorrecta wscorrecta wscorrecta wsstreetsearch2 wstigerca wsgetps3553form P AGE A - 1
Getting Started with SAP Data Quality (Part 2)
Getting Started with SAP Data Quality (Part 2) Data Quality, part of SAP Data Services, is a powerful tool for cleansing and matching customers, businesses, postal addresses, and much more. However, the
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
Melissa Data Address Verification Web Service
Introduction Melissa Data Address Verification Web Service What is Melissa Data? Melissa Data is a database of addresses recognized by the US Postal Service. The record set contains all data for all addresses
Phone Check. Reference Guide
Phone Check Reference Guide MELISSA DATA PHONECHECK Reference Guide COPYRIGHT Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be reproduced
WIRIS quizzes web services Getting started with PHP and Java
WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS
Sage 100 ERP. ebusiness Web Services Installation and Reference Guide
Sage 100 ERP ebusiness Web Services Installation and Reference Guide 2012 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered
Address Information System Products Technical Guide
Address Information System Products Technical Guide May 2015 NATIONAL CUSTOMER SUPPORT CENTER UNITED STATES POSTAL SERVICE 225 N. HUMPHREYS BLVD STE 501 MEMPHIS TN 38188-1001 (800) 238-3150 Table of Contents
QAS Pro Web Getting Started Guide Browser Typedown
Browser Typedown 1. Introduction This guide is intended to walk a Developer or Project Manager through the process of integrating the Browser Typedown implementation of QAS Pro Web into their browser-based
Address Information. USPS Web Tools Application Programming Interface User s Guide. Document Version 4.0 (2/01/2015)
Address Information USPS Web Tools Application Programming Interface User s Guide Document Version 4.0 (2/01/2015) Table of Contents 1.0 Introduction To Web Tools... 2 Before you get started:... 2 Important
Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL
Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Revised August, 2012 Find updates to this documentation at the following location: http://www.microsoft.com/download/en/details.aspx?id=10381
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
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
Onset Computer Corporation
Onset, HOBO, and HOBOlink are trademarks or registered trademarks of Onset Computer Corporation for its data logger products and configuration/interface software. All other trademarks are the property
Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware
P-Synch by M-Tech Information Technology, Inc. ID-Synch by M-Tech Information Technology, Inc.
P-Synch by M-Tech Information Technology, Inc. ID-Synch by M-Tech Information Technology, Inc. Product Category: Password Management/Provisioning Validation Date: TBD Product Abstract M-Tech software streamlines
Magensa Services. Administrative Account Services API Documentation for Informational Purposes Only. September 2014. Manual Part Number: 99810058-1.
Magensa Services Administrative Account Services API Documentation for Informational Purposes Only September 2014 Manual Part Number: 99810058-1.01 REGISTERED TO ISO 9001:2008 Magensa I 1710 Apollo Court
ReplixFax Batch Loader
ReplixFax Batch Loader Admin Guide December 2015 Version 3.1.15 Copyright 2015 Softlinx, Inc. All rights reserved. Made in the United States of America. This guide and the accompanying software are supplied
XML Processing and Web Services. Chapter 17
XML Processing and Web Services Chapter 17 Textbook to be published by Pearson Ed 2015 in early Pearson 2014 Fundamentals of http://www.funwebdev.com Web Development Objectives 1 XML Overview 2 XML Processing
Migrating to vcloud Automation Center 6.1
Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
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
An Interface from YAWL to OpenERP
An Interface from YAWL to OpenERP Joerg Evermann Faculty of Business Administration, Memorial University of Newfoundland, Canada [email protected] Abstract. The paper describes an interface from the YAWL
Importing Lease Data into Forms Online
Blue Moon Software presents May 2012 Importing Lease Data into Forms Online A Developer's Guide Edited by Michael Phillipson wwwbluemooncom Table of Contents XML and the Blue Moon DTD 1 Login Data1 Login
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports $Q2UDFOH7HFKQLFDO:KLWHSDSHU )HEUXDU\ Secure Web.Show_Document() calls to Oracle Reports Introduction...3 Using Web.Show_Document
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
UniFinger Engine SDK Manual (sample) Version 3.0.0
UniFinger Engine SDK Manual (sample) Version 3.0.0 Copyright (C) 2007 Suprema Inc. Table of Contents Table of Contents... 1 Chapter 1. Introduction... 2 Modules... 3 Products... 3 Licensing... 3 Supported
Web Services API Developer Guide
Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting
NRG Software Postal Tool Kit v1.5
NRG Software Postal Tool Kit v1.5 How Can It Help Me? Catch data entry errors to insure proper mailing of packages. Proper addressing can reduce delivery time and package returns. Determine cost of mailing
Infor SyteLine Integration Guide for Infor Factory Track
Infor SyteLine Integration Guide for Infor Factory Track Copyright 2014 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains
Package Pickup. USPS Web Tools Application Programming Interface User's Guide. Document Version 1.7a (2/11/2013)
Package Pickup USPS Web Tools Application Programming Interface User's Guide Document Version 1.7a (2/11/2013) To Our Customers In registering for use of the USPS Web Tools (Web Tools), you received a
CA Nimsoft Service Desk
CA Nimsoft Service Desk Web Services Guide 7.0.6 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,
MASS Technical Guide November 2014
Purpose... 1 Overview... 1 Certification Requirements... 1 Demo Machines... 2 Recertification... 2 Change of Ownership: End User... 3 Change of Ownership: Manufacturer... 3 Hardware and Software Revisions,
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
EPiServer Operator's Guide
EPiServer Operator's Guide Abstract This document is mainly intended for administrators and developers that operate EPiServer or want to learn more about EPiServer's operating environment. The document
ACCUZIP REST API CALLS. 100% Cloud Based DQ and Mail Processing
ACCUZIP REST API CALLS 100% Cloud Based DQ and Mail Processing Abstract Upload Name and Address Files for CASS Certification, NCOALink Certification, Duplicate Detection, Postal Presorting, USPS Documentation
Advanced Service Design
vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions
List Hygiene Products & Services Detailed Overview
CONSUMER INFORMATION SOLUTIONS List Hygiene Products & Services Detailed Overview Why Should You Use Our List Hygiene Services? Equifax has more than one hundred years of experience in the collection of
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased
Merchant Returns Service
Merchant Returns Service Application Programming Interface User s Guide Document Version 4.0 (09/27/2013) 1 Version History Version Date of Summary of Additions Addition 1.4 09/21/2011 Contains an overview
Pervasive Data Integrator. Oracle CRM On Demand Connector Guide
Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)
Government Girls Polytechnic, Bilaspur
Government Girls Polytechnic, Bilaspur Name of the Lab: Internet & Web Technology Lab Title of the Practical : Dynamic Web Page Design Lab Class: CSE 6 th Semester Teachers Assessment:20 End Semester Examination:50
Creating SOAP and REST Services and Web Clients with Ensemble
Creating SOAP and REST Services and Web Clients with Ensemble Version 2015.1 11 February 2015 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Creating SOAP and REST Services
E-invoice manual Instruction for a client implementation of the B2B web service
E-invoice manual Instruction for a client implementation of the B2B web service 460.109 en (doc.pf) 08.2013 PF Manual Instruction for a client implementation of the B2B web service Version August 2013
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Wind River. Intelligent Device Platform XT EMS Profile EMS DEVICE MANAGEMENT USER'S GUIDE WIND RIVER 1.0
Wind River Intelligent Device Platform XT EMS Profile WIND RIVER EMS DEVICE MANAGEMENT USER'S GUIDE 1.0 Copyright Notice Copyright 2014 Wind River Systems, Inc. All rights reserved. No part of this publication
Deploying Microsoft Operations Manager with the BIG-IP system and icontrol
Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license
ResPAK Internet Module
ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application
OnTime Web Services User Guide
OnTime Web Services User Guide OnTime offers a set of SOAP based XML Web Services built on open standards, which allow third party applications and web sites to communicate seamlessly and in real-time
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.
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,
Webapps Vulnerability Report
Tuesday, May 1, 2012 Webapps Vulnerability Report Introduction This report provides detailed information of every vulnerability that was found and successfully exploited by CORE Impact Professional during
Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group
Installation Guide Version 1.5 May 2015 Edition 2002-2015 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of this manual, and
Forms Printer User Guide
Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting
versasrs HelpDesk quality of service
versacat v2.1.0 Date: 24 June 2010 Copyright 2002-2010 VersaDev Pty. Ltd. All Rights Reserved. *************************************************************** Contents ***************************************************************
Creating Form Rendering ASP.NET Applications
Creating Form Rendering ASP.NET Applications You can create an ASP.NET application that is able to invoke the Forms service resulting in the ASP.NET application able to render interactive forms to client
Installation & User Guide
CRM-SharePoint Connector Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box # 38514 North York, Ontario M2K 2Y5 Canada E-mail: [email protected] Web
MD Link Integration. 2013 2015 MDI Solutions Limited
MD Link Integration 2013 2015 MDI Solutions Limited Table of Contents THE MD LINK INTEGRATION STRATEGY...3 JAVA TECHNOLOGY FOR PORTABILITY, COMPATIBILITY AND SECURITY...3 LEVERAGE XML TECHNOLOGY FOR INDUSTRY
WebSphere MQ Oracle Enterprise Gateway Integration Guide
An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information
Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP
Microsoft Dynamics Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP May 2010 Find updates to this documentation at the following location. http://go.microsoft.com/fwlink/?linkid=162558&clcid=0x409
IMPLEMENTATION GUIDE. API Service. More Power to You. May 2008. For more information, please contact [email protected]
IMPLEMENTATION GUIDE API Service More Power to You May 2008 For more information, please contact [email protected] Implementation Guide ZEDO API Service Disclaimer This Implementation Guide is for informational
Implementing a Custom Search Interface with SES - a case study with search.oracle.com. An Oracle White Paper June 2006
Implementing a Custom Search Interface with SES - a case study with search.oracle.com An Oracle White Paper June 2006 Implementing a Custom Search Interface with SES - a case study with search.oracle.com
Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner
1 vk» Java 7 Recipes (,\['«** - < g!p#«josh Juneau Carl Dea Freddy Guime John O'Conner Contents J Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments Introduction iv xvi
NCOA Link MAIL PROCESSING EQUIPMENT SOFTWARE DEVELOPER SOFTWARE and HARDWARE PERFORMANCE REQUIREMENTS
NCOA Link MAIL PROCESSING EQUIPMENT SOFTWARE DEVELOPER SOFTWARE and HARDWARE PERFORMANCE REQUIREMENTS 1 General 1.1 The NCOA Link Product provides mailers with a tool to update and correct prepared mailpieces
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution
SmartConnect Users Guide
eone Integrated Business Solutions SmartConnect Users Guide Copyright: Manual copyright 2003 eone Integrated Business Solutions All rights reserved. Your right to copy this documentation is limited by
CHAPTER 10: WEB SERVICES
Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
redcoal Mobile Internet Developer API (MIDA) for SOAP-XML Web Services
MIDA 70 redcoal Mobile Internet Developer API (MIDA) for SOAP-XML Web Services Version 70 March 2004 Technical Support: support@redcoalcom Or visit http://wwwredcoalcom/ All Documents prepared or furnished
SnapLogic Salesforce Snap Reference
SnapLogic Salesforce Snap Reference Document Release: October 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2012 SnapLogic, Inc. All
Cabot Consulting Oracle Solutions. The Benefits of this Approach. Infrastructure Requirements
Scheduling Workbooks through the Application Concurrent Manager By Rod West, Cabot Oracle Application users will be very familiar with the Applications concurrent manager and how to use it to schedule
1 What Are Web Services?
Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1) E14294-04 January 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include: What
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
SDK Code Examples Version 2.4.2
Version 2.4.2 This edition of SDK Code Examples refers to version 2.4.2 of. This document created or updated on February 27, 2014. Please send your comments and suggestions to: Black Duck Software, Incorporated
Web Hosting Features. Small Office Premium. Small Office. Basic Premium. Enterprise. Basic. General
General Basic Basic Small Office Small Office Enterprise Enterprise RAID Web Storage 200 MB 1.5 MB 3 GB 6 GB 12 GB 42 GB Web Transfer Limit 36 GB 192 GB 288 GB 480 GB 960 GB 1200 GB Mail boxes 0 23 30
Technical Specification Premium SMS gateway
Technical Specification Premium SMS gateway Non-subscription services (TS.001) Author: Erwin van den Boom Version history v1.0 EvdB 12 september 2007 V1.1 DI 27 may 2009 V1.2 SvE 10 december 2009 V1.3
Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.
Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database
Litle & Co. Scheduled Secure Report Reference Guide. August 2013. Document Version: 1.8
Litle & Co. Scheduled Secure Report Reference Guide August 2013 Document Version: 1.8 Litle & Co. Scheduled Secure Report Reference Guide Document Version: 1.8 All information whether text or graphics,
FileMaker 12. ODBC and JDBC Guide
FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
SAP CCMS Monitors Microsoft Windows Eventlog
MSCTSC Collaboration Brief November 2004 SAP CCMS Monitors Microsoft Windows Eventlog Christian Klink Member of CTSC Focus Group SAP Technology Consultant SAP Technology Consulting II SAP Deutschland AG
DocumentsCorePack for MS CRM 2011 Implementation Guide
DocumentsCorePack for MS CRM 2011 Implementation Guide Version 5.0 Implementation Guide (How to install/uninstall) The content of this document is subject to change without notice. Microsoft and Microsoft
Hosted Credit Card Forms Implementation Guide
Hosted Credit Card Forms Implementation Guide Merchant implementation instructions to integrate to the Setcom s hosted credit card forms. Covers: fraud screening, Verified by Visa, MasterCard SecureCode
FileMaker 11. ODBC and JDBC Guide
FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
emobile Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd
emobile Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd Important Notice: The Information contained in this document is subject to change without notice and should not be construed as a
Office of Court Administration Automated Registry (AR) Interface Design Document for DSHS - Clinical Management for Behavioral Health Services (CMBHS)
Office of Court Administration Automated Registry (AR) Interface Design Document for DSHS - Clinical Management for Behavioral Health Services (CMBHS) August 04, 2009 Interface Design Document for CMBHS
CLC Server Command Line Tools USER MANUAL
CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej
Authoring for System Center 2012 Operations Manager
Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack
FileMaker 13. ODBC and JDBC Guide
FileMaker 13 ODBC and JDBC Guide 2004 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
Version ENCORE SYSTEMS LLC. Web Development and ecommerce Integration. PayPal NVP API Class Library User Guide
Version 2 ENCORE SYSTEMS LLC Web Development and ecommerce Integration PayPal NVP API Class Library User Guide WEB DEVELOPMENT AND ECOMMERCE INTEGRATION PayPal Class Library User Guide The Encore Systems
HP Project and Portfolio Management Center
HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties
Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder
Microsoft Dynamics GP SmartList Builder User s Guide With Excel Report Builder Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility
Version 2.1.x. Barracuda Message Archiver. Outlook Add-In User's Guide
Version 2.1.x Barracuda Message Archiver Outlook Add-In User's Guide Barracuda Networks Inc. 3175 S. Winchester Blvd Campbell, CA 95008 http://www.barracuda.com Copyright Copyright 2005-2009, Barracuda
The VerticalResponse API Guide
The VerticalResponse API Guide Revision 4, 9/2012 Copyright 2012 VerticalResponse, Inc. Table of Contents 1. Introduction About This Guide Enterprise API vs. Partner API Email Campaign Creation Workflow
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 -...
mdata from Mobile Commons enables organizations to make any data accessible to the public via text message, no programming required.
mdata Web Services mdata from Mobile Commons enables organizations to make any data accessible to the public via text message, no programming required. How it Works 1. A user sends a text message with
Safeguard Ecommerce Integration / API
Safeguard Ecommerce Integration / API Product Manual Version 3 Revision 1.11 Table of Contents 1. INTRODUCTION... 4 1.1 Available commands... 4 2. HOW THE ADMINISTRATION SYSTEM IS EXPECTED TO BE USED OPERATIONALLY...
