I am trying to add a web link to a web service ( http://jira.atlassian.com/rpc/soap/jirasoapservice-v2?wsdl ), however the โAdd web linkโ is grayed out in my VS. So I added the web service link as a service link, VS recognized the web service, but now I have a problem displaying the correct classes. (Note: "Add Web Link" is dedicated to the Windows Phone project, but not intended for a regular console application). When I add a web service as a web link, I get access to the JiraSoapServiceService class. so I can do something like this:
//jiraWS is name of web service jiraWS.JiraSoapServiceService jira = new JiraSoapServiceService();
However, when I add a web service as a service reference, I cannot access the JiraSoapServiceService class, and I need to have access to this class to make a call to web methods.
Does anyone know how I can fix this?
source share