Getting Microsoft.Web.Services3 for VS2010

I am using VS2010, and I am accessing a web service provider that uses WSE i web services. I can not find in "Add links" to add a namespace / dll. It works when I created a project in VS2005. I found this blog and he pointed out how to recognize it. http://www.junasoftware.com/blog/how-to-use-wse-3-in-visual-studio-2010.aspx but after trying that it still does not work for me. Anyone have any ideas for me?

Thanks Marios

+6
visual-studio-2010
source share
4 answers

To fix this, create a Webservice in Visual Studio 2005, then copy the code only to the class in VS2010 and use it as a class instead of Webservice. This is not the best way to maintain the standard, but it works flawlessly!

+5
source share

I solved this problem by downloading the WSE runtime from here

+7
source share

For me, even after adding a link to a local copy of Microsoft.Web.Service3.dll, I still had to change the project for .NET 4.0 and not the .NET 4.0 Client .

Microsoft.Web.Service3.dll has a dependency on System.Web , which does not exist in the .NET 4.0 Client , but does so in .NET 4.0 .

This fact was noted in the list of errors in the warnings. Only that Microsoft.Web namescape could not be found was in Errors.

-Jesse

+3
source share

I encountered the same problem when using SAP business object DLLs. I installed WSE from (http://www.microsoft.com/downloads/en/details.aspx?FamilyID=018a09fd-3a74-43c5-8ec1-8d789091255d&displaylang=en) and added a link to my project. He solved the problem

+2
source share

All Articles