i wrote an application that using ksoap2 to consume a web service.
everything works great in the simulator.
i upload it to the device and i am getting prompt for internet access.
after i allow it it's prompt with the following message:
"blocking operation not permitted on event dispatch thread"
any ideas?
thanks in advance,
eyal
Sponsored Links
Please Login or Register to Remove these Advertisements!
You never want to perform long-lived actions (like networking) on the main application thread. See the Application Developer Guide Vol I for an example of how to correctly implement networking functionality.