> One suspected source is this block (which runs inside a component): > > ****************************** POSSIBLE SUSPECTED PROBLEM BLOCK > ******************************** > ARRAY LONGINT(arrIDS;0) > ARRAY REAL(arrTIMOUTS;0) > ARRAY LONGINT(arrREMAINING;0) > ARRAY LONGINT(arrSIZES;0) > > A4D GET SESSION STATS (arrIDS; arrTIMOUTS; arrREMAINING; arrSIZES) > > CLEAR_ARRAY(»arrIDS) ` <------ 4 consecutive runtime errors > reported here by the 'Internal Bridge Process' > CLEAR_ARRAY(»arrTIMOUTS) > CLEAR_ARRAY(»arrREMAINING) > CLEAR_ARRAY(»arrSIZES)
Here is your problem. - From the 4D docs: "The local, process and interprocess variables are not shared between components and host databases." - From the Active4D release notes: "Active4D cannot be used out of the box as a component because limitations in the plugin API prevent Active4D from accessing variables and methods in components." This could be causing all of your problems. I'll say it again so everyone remembers this: WARNING!! WARNING!! WARNING!! Active4D CANNOT access variables or methods in a component. Any attempt to do so will assuredly cause a rift in the space-time continuum. Kind regards, Aparajita www.aparajitaworld.com "If you dare to fail, you are bound to succeed." - Sri Chinmoy | www.srichinmoy.org _______________________________________________ Active4D-dev mailing list [email protected] http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/
