Using Web Service classes in a mobile application?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I have a number of public classes and data structures defined in my web
service, and I wish to use them in my vb.net CF mobile application without
redefining them. I've managed to successfully do this with the data
structures by doing the following:

Dim myJobSheet As WebServices.jobSheet
Dim myMaterialItem As WebServices.materialItem

However, I can't seem to do this for the public classes. Does anyone know
why this would be? (PS The classes in question are customised collection
objects)

Thanks,
Ross May
 
Hi Ross!!

Do your classes have late binding properties (as in "Dim oMyProperty as
Object") ? CF does not support late binding.

PS: This posting has been posted "AS IS"
 
Back
Top