Questions tagged [web-reference]

Web Reference is a technique used in software development to provide access to a resource that is available using Internet protocols

In the code, Web References are generated that locally represent the exposed functionality (methods) of a Web resource. Upon invocation of the local methods, the proxy interacts with the Web resource and returns the results back to the client.

Web References may be created in the same or different programming language or environment than the exposed Web service or resource.

Links:

173 questions
1
vote
1 answer

"System.Runtime.Serialization'. Are you missing an assembly reference?" after adding web reference

I have an iOS/Android Xamarin project that share a PCL project. I have added a web reference to the PCL via ASMX as per Xamarin's Tutorial. The tutorial doesn't say how to get to the "Add Web Reference" window, but we found it by right-clicking our…
BergQuester
  • 6,167
  • 27
  • 39
1
vote
1 answer

[Visual Studio]How can I update a foreign web reference?

I have a server where I use Microsoft CRM. MS CRM auto-generate web references. I take over someone else's application code (an application which connects to CRM). I expect to develop on my local machine, but the references they gave me are not up…
Mathieu
  • 4,449
  • 7
  • 41
  • 60
1
vote
0 answers

how to write web reference file in python similar to the one we used to write in C# .net?

i am looking for a method to write web reference file in python similar to the one we used to write in C# .net?? i am looking on writing reference for WSDL files in this .Can anyone suggest any suitable ways
Varun v t
  • 11
  • 1
1
vote
1 answer

Specify CLR namespace of auto-generated web service proxy class

When you add a Web Reference in an ASP.NET project in Visual Studio the web application's root namespace is always added. So, if I add a web reference called MyWebService and the default namespace of the application is MyApplication the namespace of…
Ted Nyberg
  • 7,001
  • 7
  • 41
  • 72
1
vote
3 answers

How to Add Web Reference for UWP in VS 2015?

I am trying to migrate my code from normal wpf application to Universal Windows Platform. Previously I have used VS 2012 for Developing my WPF application And its working fine. Now I want to use the same application for mobile also.I found UWP as a…
Sagar
  • 371
  • 9
  • 26
1
vote
2 answers

C# call nav web service without adding a web reference

I am working on a project that requires me to connect to a Microsoft Dynamics NAV web service, and get some data. However, we do not have access to this web service from the development environment, so I am unable to add a Web Reference to my…
Laureant
  • 979
  • 3
  • 18
  • 47
1
vote
0 answers

Upgrading Authorize.net Webservice Reference(api) to Akamai (api2)

I am Trying to Set debug URL and live URL based on flag for service call to authorize.net like below.. if (isDebug) { API_URL = "https://apitest.authorize.net/soap/v1/Service.asmx"; } else { API_URL =…
Mehul Gohel
  • 118
  • 7
1
vote
3 answers

SQL reporting services reference

I want to add service reference to SQL reporting services on local machine. In Reporting Service Configuration Manager under Web Service URL tab I have report service URL exposed, I have tried to add web reference to project with that Web Reference…
eomeroff
  • 9,599
  • 30
  • 97
  • 138
1
vote
1 answer

Error adding web reference to project

I need to add web reference to ASP.NET project, but unfortunately I got error: There was an error downloading…
andrey.shedko
  • 3,128
  • 10
  • 61
  • 121
1
vote
2 answers

Referencing newer WCF project with older 'Web Reference'

I have a WCF in Visual Studios 2012 with .NET Framework 4.5 which I've ran to create a localhost development server. I also have a class library project in Visual Studios 2008 with .NET Framework 3.5 that can only add Web References, which I've…
Anduril28
  • 303
  • 1
  • 3
  • 15
1
vote
1 answer

How to change the Web Reference URL through TextBox

I am creating a project to download all RDLs deployed on the ReportServer. I have found this article on Codeproject and it is working fine. http://www.codeproject.com/Articles/339744/SSRS-Downloading-RDL-Files Now what I'm trying to do is to add a…
Henry
  • 195
  • 1
  • 16
1
vote
1 answer

C# Changing Web Reference url

I'm trying to change a web reference path depending on whether the site is live or not. The application settings are in the web.config
Richard Whitehouse
  • 679
  • 3
  • 14
  • 28
1
vote
1 answer

Reference.vb file displaying multiple errors when a WCF service is added to the application

I have created a vb.net application in VS2010 and added a service as a reference but when I built the app, reference.vb is throwing multiple errors. "This is the error: Reference to a non-shared member requires an object reference" However the same…
Joy1979
  • 599
  • 5
  • 12
  • 23
1
vote
0 answers

using web reference throws content type error

In my application, I was supposed to use a WSDL service I have added this as web reference in VS2010 using advanced option under Add Service Reference. The functions under this service is accessible. But when I run the application it throws error as…
user3211705
  • 2,418
  • 3
  • 19
  • 36
1
vote
2 answers

When should we update Web reference in an ASP.Net project

I have two services one ASMX and one WCF service hosted. And they are added as "Web Reference" to a project. My question is, when should I update the reference in the project. Is it only when I add/edit a Web method / Contract to the service. Or Do…
Akon
  • 272
  • 1
  • 6
  • 20