Book a Demo

Author Topic: MDA WSDL Transformation to DDL makes Class data types  (Read 4519 times)

Bill Egge

  • EA User
  • **
  • Posts: 93
  • Karma: +0/-0
    • View Profile
MDA WSDL Transformation to DDL makes Class data types
« on: September 13, 2016, 05:03:05 am »
The below table was created by EA from a WSDL.  Note the "PostalAddress" type.  What can I do?

CREATE TABLE [Addressinfo]
(
   [Altaddress] PostalAddress NULL,
   [Checksum] string NULL,
   [Homeaddress] PostalAddress NULL,
   [Homegeocode] string NULL,
   [W2address] PostalAddress NULL,
   [AddressinfoID] Integer NOT NULL
)

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: MDA WSDL Transformation to DDL makes Class data types
« Reply #1 on: September 13, 2016, 08:59:08 am »
The DDL transformation assumes a platform independent model for input. There's no built-in transformation from wsdl to ddl.

You could customize the transformation so that if an attribute has a classifier it generates an association instead. Check the value of attClassifierGUID, and generate something like what you'll find in the Connector template.