製品をチェック

無償トライアル:

無償トライアルへ

製品の情報と無償トライアルへ:

Ponparemall JDBC Driver

在庫、商品、受注などのPonparemall アカウントデータを組み込んだ強力なJava アプリケーションを迅速に作成して配布できます。

データ連携でお困りですか?

お問い合わせ

Connect to Ponparemall from a Connection Pool in WebLogic


Use the CData JDBC Driver for Ponparemall to connect to Ponparemall data from Web applications running on WebLogic.


古川えりか
コンテンツスペシャリスト

ponparemall ロゴ画像

JDBC Driver

jdbc ロゴ画像

WebLogic

The CData JDBC Driver for Ponparemall enables you to follow standard procedures to integrate Ponparemall data into Java Web applications. This article shows how to deploy the CData JDBC Driver for Ponparemall in WebLogic server.

Install the JDBC Driver 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.ponparemall.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.ponparemall.jar;%PRE_CLASSPATH%

Create a JDBC Data Source for Ponparemall

After installing the driver, create the connection.

  1. In the Domain Structure tree, click Services -> Data Sources -> New -> Generic Data Source.
  2. On the JDBC Data Source Properties page, enter the following information:
    • Name: Enter a user-friendly name; for example, ponparemalljdbc.
    • JDBC Name: Enter the path the JDBC data source will be bound to; for example, jdbc/Ponparemall.
    • Database Type: Select Other.

    A user-friendly name and the path to bind to. (Salesforce is shown.)
  3. Click Next to use the default options. On the last page, enter the following information and click Test Configuration:

    • Driver Class Name: Enter the driver class, cdata.jdbc.ponparemall.PonparemallDriver, in this property.
    • URL: Enter the JDBC URL. A typical JDBC URL is below:

      jdbc:ponparemall:InventoryUserId=Inventory UserId;InventoryPassword=Invetory Password;

      Ponparemall に接続するには、ShopUrl、InventoryUserId、InventoryPassword、OrderUserId、OrderPassword、PaymentUserId、およびPaymentPassword が必要です。

      Ponparemall へのアクセスの設定

      Ponparemall には各API のId とPassword が必要です。取得するには、以下の手順に従ってください。

      • Ponparemall Manager にログインし、メニューの「各種申請」の「WebAPI利用申請」をクリックします。
      • Web API メニューの「WebAPIサービス利用申請」をクリックし、利用申請を行います。
      • 後日、Ponparemall から必要なId とPassword が送られてきます。

      Ponparemall アカウントの認証

      次の接続プロパティを設定して接続します。

      • ShopUrl:接続先のPonparemall Shop URL を設定。「http://storetst4.ponparemall.com/sample/」に含まれる「sample」の部分を入力します。
      • InventoryUserId:「在庫API」のユーザID を設定。このプロパティは、Inventory テーブルにアクセスする場合に必要です。
      • InventoryPassword:「在庫API」のパスワードを設定。このプロパティは、Inventory テーブルにアクセスする場合に必要です。
      • OrderUserId:「受注API」のユーザID を設定。このプロパティは、Orders テーブルにアクセスする場合に必要です。
      • OrderPassword:「受注API」のパスワードを設定。このプロパティは、Orders テーブルにアクセスする場合に必要です。
      • PaymentUserId:「決済API」のユーザID を設定。このプロパティは、Payments テーブルにアクセスする場合に必要です。
      • PaymentPassword:「決済API」のパスワードを設定。このプロパティは、Payments テーブルにアクセスする場合に必要です。
    • Database User Name: Enter the username, if not specified in the JDBC URL.
    • Password: Enter the password, if not specified in the JDBC URL.
    Driver connection properties. (Salesforce is shown.)

After selecting the server where you want to deploy the JDBC data source, you can now connect to Ponparemall data.

The data source deployed on the target server and enabled for connection pooling. (Salesforce is shown.)

More WebLogic Integration

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.