Integration overview: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
Řádka 1: Řádka 1:
=== Prerequisities ===
+
=== Prerequisites ===
 
# Installed Nextis.SDK.TecDOCInterface
 
# Installed Nextis.SDK.TecDOCInterface
 
# NET Framework 5.7 and higher
 
# NET Framework 5.7 and higher
 +
 +
=== Installation overview ===
 +
* Support files are instaled into <code>Program files\Nextis\Nextis.TecDOC.UI.Extension</code>
 +
* Code sample is installed into <code>Documents\Nextis\Nextis.TecDOC.UI.SampleCode</code>
  
 
=== Step by step integration ===
 
=== Step by step integration ===
* Put and endpoint (as bellow) into your application configuration file (usually app_name.exe.config)
+
* Put the TecDOC AMAZON WS endpoint (as shown below) into your application configuration file (usually app_name.exe.config)
 
<syntaxhighlight lang="xml">
 
<syntaxhighlight lang="xml">
df edr
+
<system.serviceModel>
 +
    <bindings>
 +
      <basicHttpBinding>
 +
        <binding name="TecdocToCatPortBinding1" maxReceivedMessageSize="2147483647" />
 +
        </basicHttpBinding>
 +
    </bindings>
 +
    <client>
 +
      <endpoint address="http://webservice.tecalliance.services/pegasus-3-0/services/TecdocToCatDLB.soapEndpoint"
 +
        binding="basicHttpBinding" bindingConfiguration="TecdocToCatPortBinding1"
 +
        contract="TecDocProxyAMAZON.TecdocToCat" name="TecdocToCatPort1" />
 +
    </client>
 +
</system.serviceModel>
 
</syntaxhighlight>
 
</syntaxhighlight>
* Within your project create data connection class inherited from Nextis.SDK.TecDOC data manager
+
* Within your project create data connection class inherited from Nextis.SDK.TecDOC data manager (shown in code sample)
 
* Fill base methods to connect your data to TecDOC result
 
* Fill base methods to connect your data to TecDOC result
 
*
 
*

Verze z 6. 11. 2019, 15:44

Prerequisites

  1. Installed Nextis.SDK.TecDOCInterface
  2. NET Framework 5.7 and higher

Installation overview

  • Support files are instaled into Program files\Nextis\Nextis.TecDOC.UI.Extension
  • Code sample is installed into Documents\Nextis\Nextis.TecDOC.UI.SampleCode

Step by step integration

  • Put the TecDOC AMAZON WS endpoint (as shown below) into your application configuration file (usually app_name.exe.config)
<system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="TecdocToCatPortBinding1" maxReceivedMessageSize="2147483647" />
        </basicHttpBinding>
     </bindings>
    <client>
      <endpoint address="http://webservice.tecalliance.services/pegasus-3-0/services/TecdocToCatDLB.soapEndpoint"
        binding="basicHttpBinding" bindingConfiguration="TecdocToCatPortBinding1"
        contract="TecDocProxyAMAZON.TecdocToCat" name="TecdocToCatPort1" />
    </client>
</system.serviceModel>
  • Within your project create data connection class inherited from Nextis.SDK.TecDOC data manager (shown in code sample)
  • Fill base methods to connect your data to TecDOC result