Could PPC get dataset by using webservice?

  • Thread starter Thread starter smart
  • Start date Start date
S

smart

While getting the dataset using webservice, the following error occur:

An unhandled exception of type 'System.PlatformNotSupportedException'
occurred in mscorlib.dlls

Additional information: PlatformNotSupportedException

Any solution?
 
It seems that the locale of DataSet is not supported by your device. Set
explicitly the .Locale before returning to client:

ds.Locale = new CultureInfo("en-US");
return ds;


Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
Back
Top