Add a link to the service and add a link on the Internet?

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?

+6
source share
1 answer

When you click "Add service link", click "Advanced" - then at the bottom of the pop-up window you can add a web link :)

+11
source

Source: https://habr.com/ru/post/893596/


All Articles