Skip to Content
Author's profile photo Marvin Hoffmann

Connect SQL Anywhere Database to Integration Gateway in SMP3

Because you can also install SMP3 together with the MBO Runtime, you might try out to connect the integration gateway to some SQLAnywhere databases which are part of the MBO Runtime.

In the following I will connect the integration gateway to the sampledb. This is a SQLAnywhere 16 database running on port 5500.

  1. Prepare SMP
    There is no need for us to import any (OSGi enabled) JDBC driver, because there is already a suitable jdbc driver within SMP3 available.
    (Info: The jar archive com.sap.com.sybase.jdbc.jconnect_7.0.7.1.jar contains the jar archive jconn4-7.07.jar which contains a SybDriver class, under \com\sybase\jdbc4\jdbc)
  2. Create Destination
    In Gateway Management Cockpit create a new destination
    Property Value
    Destination Name DestSQLAnywhere
    Destination Type DATABASE
    Destination URL jdbc:sybase:Tds:localhost:5500?ServiceName=dba
    Database Driver com.sybase.jdbc4.jdbc.SybDriver
    Authentication Type Basic Authentication
    User Name dba
    Password sql

    This assumes that your database is running on the host “localhost” on port 5500 with default user and password (dba/sql). You might have to adapt the values to fit your environment.
    /wp-content/uploads/2014/04/01_create_destination_sql_anywhere_jdbc_439884.png

  3. Create an odata model in GWPA eclipse plugin, make sure to name the entityset exactly like the database table name and the properties exaclty like the table columns. After modelling, implmenet the service, select as data source JDBC and “generate and deploy” the service to integration gateway.
    /wp-content/uploads/2014/04/02_create_odata_model_and_deploy_439885.png
  4. After that add destination in Gateway Management Cockpit and save it.
    /wp-content/uploads/2014/04/03_add_destination_to_ig_service_439955.png
  5. Test the service by clicking on “Open Service Document” and then navigate to /product/ to see all data inside the product table…
    /wp-content/uploads/2014/04/04_test_ig_odata_service_439956.png
  6. That’s it!
    As you can see the data coming from the Sybase SQLAnywhere database is exposed in OData.

Info: Use Sybase Central (scjview.exe) to maintain the SQLAnywhere database. You can connect to the sampledb by using the connection string: jdbc:ianywhere;host=localhost:5500
xx_Sybase_Central_-_SQLAnywhere_16_sampledb_Connect_using_JDBC_Connection_String.png

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Hi Marvin,

      is it possible to create OData Service required from the Scratch or say combining multiple SOAP and Rest services, customize it and then develop new OData Service. We are encountering variety of back-ends including custom non-sap applications/portals. How to connect to NON-SAP WeB Portals and other custom web apps through integration gateway?