ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →無償トライアル:
無償トライアルへ製品の情報と無償トライアルへ:
Dynamics NAV アカウントデータ(アイテム、販売注文、発注書など)を組み込んだパワフルなJava アプリケーションを短時間・低コストで作成して配布できます。
古川えりか
コンテンツスペシャリスト
JDBC Driver
The CData JDBC Driver for DynamicsNAV enables you to follow standard procedures to integrate Dynamics NAV data into Java Web applications. This article shows how to deploy the CData JDBC Driver for DynamicsNAV in WebLogic server.
Add the driver JAR and license file to the classpath your application will be using. The .lic file must be located in the same folder as the JAR. These files are located in the lib subfolder of the installation directory.
If you want to add the driver to all domains, add the JAR to the WEBLOGIC_CLASSPATH environment variable. add the following line to the commEnv.cmd/sh script in WL_HOME\common\bin\.
set WEBLOGIC_CLASSPATH=your-installation-directory\lib\cdata.jdbc.dynamicsnav.jar;%WEBLOGIC_CLASSPATH%
If you want to add the driver to a specific domain, you will need to add the JAR to the PRE_CLASSPATH environment variable. Add the following line to the setDomainEnv.cmd/sh script in the bin subfolder of the folder for that domain:
set PRE_CLASSPATH=your-installation-directory\lib\cdata.jdbc.dynamicsnav.jar;%PRE_CLASSPATH%
After installing the driver, create the connection.
Click Next to use the default options. On the last page, enter the following information and click Test Configuration:
URL: Enter the JDBC URL. A typical JDBC URL is below:
jdbc:dynamicsnav:http://myserver:7048;User=myserver\Administrator;Password=admin;ServerInstance=DYNAMICSNAV71;
Dynamics NAV に接続する前に、サーバーでOData サービスを有効にしておく必要があります。OData サービスを有効にすると、本製品はサーバーで発行されるあらゆるサービスにクエリできるようになります。Url を有効なDynamics NAV サーバー組織のルート(例:http://MyServer:7048)およびServerInstance(例:DynamicsNAV71)に設定します。 もしサーバーにService Default Company がない場合は、Company(例:'CRONUS Canada, Inc.')も設定する必要があります。 マルチテナントインストールでは、Tenant にテナントId(例:'Cronus1')を指定します。
認証するには、User およびPassword プロパティを設定して、Dynamics NAV ログインクレデンシャルまたはWindows ユーザークレデンシャルを有効にします。 AuthScheme で適切な認証メソッドを選択します。
After selecting the server where you want to deploy the JDBC data source, you can now connect to Dynamics NAV data.
The steps above show how configure the driver in a simple connection pooling scenario. For more use cases and information, see the JDBC sections in the WebLogic Data Sources chapter of the Oracle Fusion Middleware documentation.