Hey folks? I have a doubt about to use web services on Windows phone 8.1 RT without being Silverlight. When I go to select " Add Web Reference "It does not Appear for me. I want to use Windows Phone RT, is it possible?
Asked
Active
Viewed 78 times
2 Answers
0
What about
Add Service Reference -> Advanced -> Add Web Reference -> and fill out the rest from there.
It is explained with images (for an older version of the IDE, VS2008) here

VictorySaber
- 3,084
- 1
- 27
- 45
0
Add Service Reference (specifically the System.ServiceModel namespace) is not supported in Windows Phone 8.1 RT. There's a possible workaround here:
I got around the problem by manually building a SOAP client wrapper class, and manually building the service request for each API call. It's laborious but it works...

odinel
- 566
- 1
- 5
- 28
-
Thank you! It worked. I had seen this site and I implemented the same way, but wondered if there was another way. – Paulo Henrique Sousa Jul 21 '16 at 17:55