Hi,
I'm trying to call a soap WebService by adding a webReference. It didn't work with forms(cross platform) project, so I did it by .Droid firstly. It works, but I can't generated classes with forms project.
Is there a way to do it or generate soap client with just a wsdl file?
Thanks
Windows phone app will support only Azure based service not even WCF or Webservice. if you need all the app (Android, iOS, WinPhone) you have to implement and consume those through REST service or else remove winphone app from the properties and project. then it'll support what you have asked..
Run command prompt as an administrator, then go to the directory that contains the svcutil.exe and run this to get the classes/client file:
svcutil.exe http://website.nett/MyService.svc?wsdl
Answers
Windows phone app will support only Azure based service not even WCF or Webservice. if you need all the app (Android, iOS, WinPhone) you have to implement and consume those through REST service or else remove winphone app from the properties and project. then it'll support what you have asked..
Run command prompt as an administrator, then go to the directory that contains the svcutil.exe and run this to get the classes/client file:
svcutil.exe http://website.nett/MyService.svc?wsdl
Thanks a lot, finally I use a REST Service and it works