© Copyright International Business Machines Corporation 2005. All rights reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
This release notes file contains late-breaking information about limitations and known problems and workarounds for the following WebSphereR Integration Developer enterprise discovery wizards:
- Enterprise service discovery
- Enterprise data discovery
None
The C importer does not correctly handle anonymous struct declarations. For an example, see the following code:
typedef struct {
char loanId[20];
double loanAmount;
char date[20];
struct {
char taxPayerId[10];
char firstname[20];
char lastname[20];
char email[50];
} Customer[1];
} LoanInfo;The previous code does not import correctly. A workaround is to modifiy the declaration to put the anonymous struct declaration outside as a named struct. The following declaration is equivalent and will import correctly:
typedef struct {
char taxPayerId[10];
char firstname[20];
char lastname[20];
char email[50];
} Taxpayer;
typedef struct {
char loanId[20];
double loanAmount;
char date[20];
Taxpayer Customer[1];
} LoanInfo;