For legacy applications containing Paths and Tables (from Applinx 5.2.5), we have been getting the following warning:
“The method getTable(String) from the type GXIClientBaseObject is deprecated.”
Here is a partial code list:
public void gx_fillForm() throws GXGeneralException{
GXPathResponse res = getGXSession().executePath("BulkI2_Collection");
gx_fillForm(res.getScreens());
GXITable gx_table = getGXSession().getTable("BulkI2_Collection");
getTagsAccesor().setTagTable("BulkI2_Collection",gx_table,getGXAppConfig().getTableBuildConfig(),this);
getSession().setAttribute(EXCEL_TABLE_SESSION_KEY, gx_table);
}
So, 2 questions:
- Is there an easy way to fix this? (bet not)
- How long will the deprecation warning exist until it no longer works.
#Mainframe-Integration#ApplinX#webMethods