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
0
votes
1 answer

CRM 2011 using organization.svc as a web reference

In CRM 4, I used to add web reference in my visual studio project of the CRMService.asmx and it would bring me all the entities (including custom entities) and all the services. Now I've moved to CRM 2011 and I dont really understand complitely how…
Greg Oks
  • 2,700
  • 4
  • 35
  • 41
0
votes
3 answers

Creating class library project from winform

I have a winform project (from a different person, I didn't build it), that uses a web reference. I want to create a new project - class library project - based on the winform project (without GUI). I tried to copy some of the files but I can't…
TamarG
  • 3,522
  • 12
  • 44
  • 74
0
votes
1 answer

Adding a WCF reference via "Add Web Reference"

I'm using Visual Studio 2008 with a project that's targeting .NET 2.0. I need to add a reference to a WCF service that's defined in another project within the same solution. The WCF project targets .NET 3.5, and the service uses…
FishBasketGordo
  • 22,904
  • 4
  • 58
  • 91
0
votes
1 answer

Webreference not returning data in .Net

First time trying to use webservices. I am using VS2005 and trying to call a webservice function. I added my webreference to the WSDL, got my autogenerated code. I am able to call it with no errors/exceptions but I get nothing back from the service…
Dorf
  • 71
  • 9
-1
votes
1 answer

Visual Studio 2019 freezes when instantiating SOAP Webreference

I am expierencing a strange problem with Visual Studio 2019. We ware using SOAP-webreferences in our projects. When I start a project in debug mode, the debugger freezes when the SOAP reference is instantiated. Waiting ~5 minutes helps but this…
JDW89
  • 11
  • 1
-1
votes
1 answer

Fedex Tracking API C# not returning useful data

I'm using Fedex supplied example code for C# and I can NOT get it to return any information for active packages. I've gotten issued a production api key/meter number/password but all it ever tells me is that. 'No information for the following…
Grummle
  • 1,364
  • 1
  • 12
  • 21
-1
votes
1 answer

web service error CS0246: The type or namespace name could not be found VS2010

I've added both a Web Service and a Web Reference to my project and can consume neither (one of which I named emsBookings) appropriately because I get the following error: Compiler Error Message: CS0246: The type or namespace name 'emsBookings'…
Hanny
  • 580
  • 3
  • 16
  • 44
-2
votes
1 answer

calling https web service methods

I have added a web reference of a web service which url starts with https. And trying to call by the following C# code testwebservices.BasicHttpBinding_GDataService webservice = new testwebservices.BasicHttpBinding_GDataService (); Uri uri = new…
MJK
  • 3,434
  • 3
  • 32
  • 55
1 2 3
11
12