<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://support.kampdata.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://support.kampdata.com/feed.php">
        <title>KampData Knowledge Base - taxengine:integration:code_samples</title>
        <description></description>
        <link>https://support.kampdata.com/</link>
        <image rdf:resource="https://support.kampdata.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-01T21:22:04+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_concise_sample&amp;rev=1438894405&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_estore_example&amp;rev=1474571578&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_asp_app&amp;rev=1438891258&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_code&amp;rev=1438891217&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:dex_sample_code&amp;rev=1435619180&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:sample_code&amp;rev=1438894067&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:select_tax_schedule&amp;rev=1434139652&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:visual_basic_sample_code&amp;rev=1434134853&amp;do=diff"/>
                <rdf:li rdf:resource="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:zip_code_entry&amp;rev=1474564777&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://support.kampdata.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>KampData Knowledge Base</title>
        <link>https://support.kampdata.com/</link>
        <url>https://support.kampdata.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_concise_sample&amp;rev=1438894405&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-06T20:53:25+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c_concise_sample</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_concise_sample&amp;rev=1438894405&amp;do=diff</link>
        <description>C# concise sample using TBIC

Please see Getting Started for help with using the KampData TaxEngine. 


using System;
using System.Runtime.InteropServices;
using System.Collections;
//Add the KDTaxEngine.dll as a reference.
using KampData.TaxEngine.API;
using KampData.TaxEngine.API.Enums;

namespace TaxEngineConsoleApp
{
    /// &lt;summary&gt;
    /// This sample uses hardcoded values to illustrate what is required
    /// to retrieve the tax schedule and tax option for a line item
    /// using the …</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_estore_example&amp;rev=1474571578&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-09-22T19:12:58+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c_estore_example</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_estore_example&amp;rev=1474571578&amp;do=diff</link>
        <description>eStore Example

To illustrate the use of the KampData TaxEngine with a website we have built a small sample web application which calls the TaxEngine for ZipAddressing and Tax Schedule Selection.

Pages

	*  Zip Code Entry
	*  Select Tax Schedule

----------

Sample Code</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_asp_app&amp;rev=1438891258&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-06T20:00:58+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c_sample_asp_app</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_asp_app&amp;rev=1438891258&amp;do=diff</link>
        <description>Sample ASP App in C#

Please see Getting Started for help with using the KampData TaxEngine. 


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Runtime.InteropServices;
using System.Text;

//Add a reference to the KDTaxE…</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_code&amp;rev=1438891217&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-06T20:00:17+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c_sample_code</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:c_sample_code&amp;rev=1438891217&amp;do=diff</link>
        <description>Sample Console App in C#

Please see Getting Started for help with using the KampData TaxEngine. 


using System;
using System.Runtime.InteropServices;
using System.Collections;
//Add the KDTaxEngine.dll as a reference.
using KampData.TaxEngine.API;
using KampData.TaxEngine.API.Enums;

namespace TaxEngineConsoleApp
{
    /// &lt;summary&gt;
    /// The CSharpClient object is a simple example of how the KampData
    /// TaxEngine can be utilized from a 3rd party application. This sample
    /// is not …</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:dex_sample_code&amp;rev=1435619180&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-06-29T23:06:20+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dex_sample_code</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:dex_sample_code&amp;rev=1435619180&amp;do=diff</link>
        <description>Sample Code in Dexterity

The attached text file is a script designed to illustrate how to utilize the KampData TaxEngine API in Dexterity applications.

IMPORTANT: The KDTaxEngine.dll must be converted into a KDTaxEngine.tbl file for adding the KampData TaxEngine to your Base</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:sample_code&amp;rev=1438894067&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-06T20:47:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sample_code</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:sample_code&amp;rev=1438894067&amp;do=diff</link>
        <description>Sample Code

	*  C# Sample Console App
	*  C# concise sample using TBIC
	*  C# Sample ASP App
	*  Dexterity Example
	*  eStore Example
	*  Select Tax Schedule
	*  Visual Basic Sample Code
	*  Zip Code Entry</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:select_tax_schedule&amp;rev=1434139652&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-06-12T20:07:32+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>select_tax_schedule</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:select_tax_schedule&amp;rev=1434139652&amp;do=diff</link>
        <description>Sample Code to Select a Tax Schedule

Select Tax Schedule is an ASP.net web page on the eStore Example

Fields

	*  txtZIPcode - A text box which allows the user to enter a U.S. ZIP Code.
	*  txtCustomer - A text box which allows the user to enter a GP customer.</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:visual_basic_sample_code&amp;rev=1434134853&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-06-12T18:47:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>visual_basic_sample_code</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:visual_basic_sample_code&amp;rev=1434134853&amp;do=diff</link>
        <description>Sample Code in Visual Basic

Please see Getting Started for help with using the KampData TaxEngine.


Imports System
Imports System.Array
Imports System.Runtime.InteropServices
Imports System.Collections
Imports KampData.TaxEngine.API.Enums
Imports KampData.TaxEngine.API

Module VBClient

    Dim zip As String
    Dim state As String
    Dim county As String
    Dim city As String
    Dim message As String
    Dim server As String
    Dim userId As String
    Dim password As String
    Dim compa…</description>
    </item>
    <item rdf:about="https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:zip_code_entry&amp;rev=1474564777&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-09-22T17:19:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>zip_code_entry</title>
        <link>https://support.kampdata.com/doku.php?id=taxengine:integration:code_samples:zip_code_entry&amp;rev=1474564777&amp;do=diff</link>
        <description>Zip Code Entry

ZIP Code Entry is an ASP.net web page on the eStore Example

Fields

	*  txtZIPcode - A text box which allows the user to enter a U.S. ZIP Code.
	*  btnZIPaddressing - A button the user can push to run ZipAddressing for the given ZIP Code.
	*  txtCities - A read only text box which displays all the cities that exist in the given ZIP Code.</description>
    </item>
</rdf:RDF>
