Under GWT Power 2.5 I've run into an odd problem.
When the application is deployed to GAE the client is throwing exceptions each time I populate a ResultSet from a DataSource.
The line that throws the exception is resultSet.getRange(0,1), however if I manually handle that exception it's DataArrivedHandler is still fired.
Under the Eclipse debugger it works fine.
Some code :
and, the exceptions culled from the developer console :
Is there a workaround or a bug fix for this?
When the application is deployed to GAE the client is throwing exceptions each time I populate a ResultSet from a DataSource.
The line that throws the exception is resultSet.getRange(0,1), however if I manually handle that exception it's DataArrivedHandler is still fired.
Under the Eclipse debugger it works fine.
Some code :
Code:
final ResultSet rs=new ResultSet(); rs.setDataSource(DataSource.get("thedatasource")); rs.addDataArrivedHandler(new DataArrivedHandler(){ @Override public void onDataArrived(DataArrivedEvent event) { } }); rs.getRange(0, 1);
Code:
java.lang.ArrayStoreException--Unknown.ArrayStoreException_0(Unknown Source) Unknown.setCheck(Unknown Source) Unknown.toArray(Unknown Source) Unknown.convertToRecordArray(Unknown Source) Unknown.$getRange(Unknown Source) Unknown.$loadData(Unknown Source) Unknown.$onEvent_21(Unknown Source)
Comment