Hi,
I guess this could be resolved using a java service something like this…
java.sql.Array sqlArray = null;
try {
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url,userName,password);
sqlArray=conn.createArrayOf(“NUMBER”, content);
IDataCursor pipelineCursor_1 = pipeline.getCursor();
IDataUtil.put( pipelineCursor_1, “sqlarray”, sqlArray );
pipelineCursor_1.destroy();
conn.close();
} catch (Exception e) {
IDataUtil.put( pipelineCursor, "noconn", e);
}
The output sqlArray could be mapped to the adapter service input.
Regards,
Amol.
#Adapters-and-E-Standards#Integration-Server-and-ESB#webMethods