Re: [mono-android] Using a webservice

2012-03-27 Thread Jonathan Pryor
On Mar 24, 2012, at 8:32 AM, Paul Johnson wrote: >> Yes, logcat is available on both emulators and physical devices. > > Thanks for that. > > Logcat is showing something odd on the device which isn't showing on the > emulator... The error: > I/MonoDroid( 618): UNHANDLED EXCEPTION: System.Argu

Re: [mono-android] Using a webservice

2012-03-25 Thread Paul Johnson
Hi, Are you using a Samsung device? If so, what version of Android OS? Yes and gingerbread - others are using HTCs and Sony phones, so it's not down to the manufacturer. The minimum version of android I have set is for 2.2... Paul ___ Monodroid m

Re: [mono-android] Using a webservice

2012-03-25 Thread Mike Child
Are you using a Samsung device? If so, what version of Android OS? On Mar 24, 2012 8:37 AM, "Paul Johnson" wrote: > Hi, > > Is logcat enabled on the physical device? My app works fine on the >>> emulator, not a physical device >>> >> >> Yes, logcat is available on both emulators and physical dev

Re: [mono-android] Using a webservice

2012-03-24 Thread Paul Johnson
Hi, Just as an addendum to my point - here's the calling code public void getUpcomingRacesCallBack(string track, Action> callback) { var tableData = new List(); if (checkForNetwork(true) != true) { tableData[0].PostTime = "No network

Re: [mono-android] Using a webservice

2012-03-24 Thread Paul Johnson
Hi, Is logcat enabled on the physical device? My app works fine on the emulator, not a physical device Yes, logcat is available on both emulators and physical devices. Thanks for that. Logcat is showing something odd on the device which isn't showing on the emulator... (this is a slightl

Re: [mono-android] Using a webservice

2012-03-23 Thread Jonathan Pobst
On 3/23/2012 1:08 PM, Paul Johnson wrote: Hi, There should always be some sort of error when an app crashes, check the logcat: http://docs.xamarin.com/android/advanced_topics/android_debug_log Is logcat enabled on the physical device? My app works fine on the emulator, not a physical device

Re: [mono-android] Using a webservice

2012-03-23 Thread Paul Johnson
Hi, There should always be some sort of error when an app crashes, check the logcat: http://docs.xamarin.com/android/advanced_topics/android_debug_log Is logcat enabled on the physical device? My app works fine on the emulator, not a physical device My 2 guesses are: - You haven't added

Re: [mono-android] Using a webservice

2012-03-23 Thread Jonathan Pobst
There should always be some sort of error when an app crashes, check the logcat: http://docs.xamarin.com/android/advanced_topics/android_debug_log My 2 guesses are: - You haven't added the INTERNET permission. - You aren't using an address/IP to the web service that the device can resolve.