PDA

View Full Version : Kranking screws up the app


rajs1
10-15-2004, 08:08 AM
My app works ok in the unKranked form.

The app has a few JavaRPC calls with autoload="true"


When I Krank the app it seems as if every method in the remote Java object gets loaded up front (the Krank docs does not state this, I think).

As a result I get multiple modal dialog boxes spwaned (since I call alerts for the "onerror" event of the JavaRPC calls).

This either means leaving the app unKranked or removing the


<method event="onerror" args="err">
Debug.write("err:"+err);
a7.open();
</method>


from the rpc calls.

Both unsatisfactory.