Hi,
I am just finishing up the RPC tutorial on the stockwatcher tutorial.
I go to test it, add in my stock codes, it updates the list with my
codes but no price or change values are coming through. I set a break
point at StockWatcher.java in refreshWatchList(). When it calls the
remote host with AsyncCallback<StockPrice[]:
AsyncCallback<StockPrice[]> callback = new
AsyncCallback<StockPrice[]>() {
public void onFailure(Throwable caught) {
// TODO: Do something with errors.
}
public void onSuccess(StockPrice[] result) {
updateTable(result);
}
};
I get an error:
"source not found"
this = ClassNotFoundException (id=66)
arg0 = com/google/gwt/sample/stockwatcher/client/StockWatcher$5
Any ideas what this could be? How could I deductively touble shoot
this situation? Failing that. Is there a copy of the completed source
code for the RPC tutorial so I can do a difference between the source
code to see where I am going wrong.
Many thanks
Paul
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---