Hello,
I have some code which worked fine under a previous nightly build of 8.0 (from 12-Feb). I downloaded the latest nightly (13-May) and it no longer works.
I'm using a clientCustom approach and implementing the transformRequest/processResponse strategy for handling datasource requests.
On the previous nightly build doing the following resulted in an alert dialog:
In the latest nightly nothing happens (no alert dialog, no javascript error and nothing in the ISC Console).
I put Datasource into debug mode in the Console and can see the outbound request and I've used the IE debugger to step through the call to verify that transformRequest is invoked and that I ultimately call processResponse.
I'd appreciate some pointers on where to look next? I think a support agreement is in place so I could put together a proper test-case and submit it next week if need be. For now I've reverted back to the previous nightly that I was using but I'd like to get up-to-date to benefit from your dataPath improvements.
I have some code which worked fine under a previous nightly build of 8.0 (from 12-Feb). I downloaded the latest nightly (13-May) and it no longer works.
I'm using a clientCustom approach and implementing the transformRequest/processResponse strategy for handling datasource requests.
On the previous nightly build doing the following resulted in an alert dialog:
Code:
localDS.fetchData(null, function (dsResponse, data) {alert('callback ok');} );
I put Datasource into debug mode in the Console and can see the outbound request and I've used the IE debugger to step through the call to verify that transformRequest is invoked and that I ultimately call processResponse.
I'd appreciate some pointers on where to look next? I think a support agreement is in place so I could put together a proper test-case and submit it next week if need be. For now I've reverted back to the previous nightly that I was using but I'd like to get up-to-date to benefit from your dataPath improvements.
Comment