How to add a Web reference Visual Studio 2012

爱⌒轻易说出口 提交于 2019-11-27 01:14:45

问题


Is it possible to add a web reference to my project in Visual Studio 2012? In Visual Studio 2010 it was possible by clicking the "Advanced" button in the "Add Service Reference" dialog, as it is written on this page : Add Web Reference in Visual Studio 2010

But in Visual Studio 2012 there is no section "Compatibility" in the "Service Reference Settings" and no "Add Web Reference" button in this dialog. I want to use SOAP web-service, but it works correctly only when I add it as Web Reference (in .NET Framework 2.0 compatibility mode. If I Add it as usual service reference I have an exception during using this service).

How to add old-style web reference to my project?
Or how to use my web service with new style of service references?

Thanks


回答1:


check the link below

MSDN Link

To add a Web reference to a project

1 In Solution Explorer, right-click the name of the project that you want to add the service to, and then click Add Service Reference.

The Add Service Reference dialog box appears.

2 In the Add Service Reference dialog box, click the Advanced button.

3 The Service Reference Settings dialog box appears.

4 In the Service Reference Settings dialog box, click Add Web Reference.

The Add Web Reference dialog box appears.




回答2:


Solved. CheckBox "Always generate message contracts" Helped. Thanks for all.




回答3:


From MSDN:

  1. In Solution Explorer, right-click the name of the project that you want to add the service to, and then click Add Service Reference. The Add Service Reference dialog box appears.

  2. In the Add Service Reference dialog box, click the Advanced button. The Service Reference Settings dialog box appears.

  3. In the Service Reference Settings dialog box, click Add Web Reference. The Add Web Reference dialog box appears.

Hope this helps!




回答4:


Visual Studios 2013 uses newer version of .NET Framework 4.5.1, which will not work with this web service http://wsf.cdyne.com/weatherws/weather.asmx and others. but using .NET 3.5 works!

so, if your starting a new project select from drop down menu .NET Framework 3.5 or if you are already in a project and want to change Framework

1 Click [DEBUG] > '<YOUR_PROJECT_NAME>' Properties

2 Click [Build] and change target Framework

3 Click [OK]


来源:https://stackoverflow.com/questions/13018295/how-to-add-a-web-reference-visual-studio-2012

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!