wcf Questions

2

Before 2019 I used to generate the clients to consume WCF services with Visual Studio 2017 or Rider (the behavior is the same). What happens is that the generated client inherits of System.Service...
Schreib asked 21/6, 2019 at 9:52

3

Solved

I'm working on a WCF service, in which I'm trying to load data from one data table passed to the method, into another data table from the local database (in this case, the "local" database is a SQL...
Alien asked 17/4, 2012 at 17:30

4

Solved

There is a specific WSDL for which the ServiceContractGenerator keeps on generating message contracts (request/response wrapper objects), which I do not want (I want straight parameters). Other WSD...
Hist asked 8/12, 2014 at 12:35

2

I have a self-hosted WCF service with an endpoint set up with WebHttpBinding listening for HTTP requests. I need to access cookies passed with these requests. I can get the Cookie: header value, bu...
Goody asked 11/3, 2015 at 6:20

15

I understand that there is definitely something wrong with my report (e.g. columns missmatcch) and I need to correct it but what I see is the WCF error message that hides actual problem and exactly...

11

Solved

I must consume a PHP webservice which has a SSL certificate. My .net 3.5 Class library references the webservice with 'Add Service references' in Visualstudio 2010 (WCF right?). When calling the m...
Presume asked 16/12, 2010 at 17:14

11

please somebody can help me to find out what is happened. I have my WCF service which worked fine, and now suddenly I have this error: The server did not provide a meaningful reply; this might b...
wcf
Armour asked 23/4, 2013 at 15:51

4

Solved

HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MI...
Adamsite asked 18/3, 2014 at 22:48

7

Solved

Simple problem. I start up VS2008 and create a new WCF Service application. This will create a default application with a few test methods showing it works. I press CTRL+F5 and it does indeed work!...
Wilbur asked 6/10, 2009 at 21:58

9

Solved

I've looked through a ton of SO articles, and even other sites, but can't seem to get this service working. I have a SOAP service I'm trying to hit and it's configured like this: <system.servic...
Masorete asked 4/12, 2012 at 14:5

17

Solved

I've written a WCF service with .NET 4.0, which is hosted on my Windows 7 x64 Ultimate system with IIS 7.5. One of the service methods has an 'object' as argument and I'm trying to send a byte[] wh...
Angle asked 12/4, 2012 at 11:49

23

I'm having a problem using a WCF call from a Windows service to my WCF service running on my web server. This call has been working for a number of weeks, but then stopped working all of a sudden, ...
Gaytan asked 6/1, 2010 at 15:16

8

Solved

I've got a WCF DataContract that looks like the following: namespace MyCompanyName.Services.Wcf { [DataContract(Namespace = "http://mycompanyname/services/wcf")] [Serializable] public class Dat...
Quantifier asked 5/11, 2009 at 12:47

8

Solved

Originally: I thought this was a circular reference problem........turns out it's not. The problem arose from having not configured the service configurations at all. Since the defaults are very ...
Risk asked 9/8, 2010 at 15:58

3

Solved

I want to use ChannelFactory<TChannel> Class I am trying to add reference to System.ServiceModel.dll but I not see it in the references . I see there System.ServiceModel.web.dll but it is so...
Thunderbolt asked 22/9, 2011 at 7:35

6

Solved

I have a WCF service I'm trying to host on our production web server (IIS6). I've set the web up and tied our cert to the web. When I try to browse to the service url, I receive the following error...
Epiphysis asked 1/11, 2012 at 19:59

4

Background: I'm troubleshooting a problem where messages sent by WCF over transactional MSMQ (with netMsmqBinding) seem to disappear. The code that uses WCF is in a third-party assembly which I ca...
Jordanson asked 15/4, 2013 at 22:7

5

Solved

Might seem like a silly question, but everything in WCF seems a lot more complicated than in asmx, how can I increase the timeout of an svc service? Here is what I have so far: <bindings> ...
wcf
Retinoscope asked 5/10, 2009 at 14:4

12

I have a WinForms application that consumes a WCF, and pass as a parameter to a function a certificate: mySvcClient.SendDocument(cert.Export(X509ContentType.SerializedCert, "password")); ... In ...
Novelia asked 17/6, 2011 at 21:58

4

I have added the WCF Service reference by Service References --> Add Connected Service --> WCF Service Preview Its working fine, Service reference added successfully. Now I have modified the W...
Further asked 5/10, 2016 at 14:44

25

Solved

I have some code that makes a call to a third party web service that is secured using X.509 certification. If I call the code directly (using a unit test) it works without any problems. When depl...
Policlinic asked 2/3, 2009 at 13:25

4

Solved

On our Windows 2012 Server R2, we need to disabled TLS 1.0. However we have .NET 4.5 Wcf services running. We found that if we disable TLS 1.0 that the WCF services no longer run, as we get the e...
Broderickbrodeur asked 21/1, 2016 at 9:56

8

Solved

While calling a web service I get the following error: The HTTP request is unauthorized with client authentication scheme 'NTLM'. The authentication header received from the server was 'NTLM'. T...
Arthrospore asked 7/2, 2011 at 9:55

10

How do I access the HTTP POST request body in a WCF REST service? Here is the service definition: [ServiceContract] public interface ITestService { [OperationContract] [WebInvoke(Method = "POST...
Roseanneroseate asked 17/8, 2009 at 12:53

7

Solved

I am trying to create a secure webservice. Here is the contract and service implementation [ServiceContract()] public interface ICalculatorService { [OperationContract()] int Add(int x, int y)...
Lambent asked 2/10, 2014 at 20:29

© 2022 - 2024 — McMap. All rights reserved.