Is it possible to use a web service created as "ASP.NET web service application" in my windows phone 7 app?
I tired referencing it as follows after adding a service reference: Dim MyService As ServiceReference1.TrialService = New ServiceReference1.TrialService
However I got this error: "Type 'ServiceReference1.TrialService' is not defined."
This is the way i reference from my smart device application and it works, any idea how to do it in a windows phone 7 app?
For others to benefit: what i replaced that definition with is this:
That worked and I was able to call the methods in the web service successfully