1,643 questions
0 votes
1 answer
445 views
Migration .NET 8 to .NET 9 : "Could not establish trust relationship for the SSL/TLS secure channel"
I've been connecting to Bloomberg's SOAP web services (DataLicense) for years without any SSL issues. After upgrading my project from .NET 8 to .NET 9, calls to the service fail with a TLS/SSL ...
0 votes
0 answers
45 views
How to sign specific parts of a wcf client soap message?
I have to communicate with a soap service that requires me to sign specific parts of the message. I can configure this in soapUI, as in image below. I need to sign the WSA headers from and to, the ...
0 votes
1 answer
118 views
WCF on .NET 4.8 doesn't add wsse security headers
I need to add the following WSE soap header to a request to an external web service. <wsse:Security soapenv:mustUnderstand="1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-...
0 votes
1 answer
60 views
In WCF, why use HttpBinding instead of netTcpBinding?
WCF has netTcpBinding and HttpBinding. TCP is a transport layer protocol. HTTP is an application layer protocol which by default uses TCP. I read that netTcpBinding is faster than HTTP. If so, why use ...
1 vote
1 answer
149 views
PlatformNotSupported when converting WCF client config to C# .NET 6 code
Can anyone share if it is possible for the below configuration to be written in .NET Core? If there are any obvious roadblocks and if there are any workaround. I have used the code equivalent for the ...
0 votes
0 answers
90 views
Self hosted WCF service in a managed app with a certificate reporting and error "HTTP request forbidden with client authentication scheme Anonymous"
I have a Windows service that self hosts a WCF service for clients to connect to, current it using unsecure HTTP connection. I have bought an SSL certificate from a trusted CA that I already use to ...
1 vote
0 answers
591 views
While migrating Wcf project into CoreWcf .net8.0. How to use Wcf web.config setting into Corewcf projects?
Below is is my wcf Web.config file code which i want to use in corewcf projects <?xml version="1.0"?> <configuration> <configSections> <section name="...
0 votes
0 answers
105 views
WCF service Message security using WsHttpBinding
I'm trying to use Message security for my service, but I keep failing.I'm new to wcf developing, so I've relied on copying others but this is trickier. First I created my service and my client. After ...
1 vote
1 answer
93 views
Does CoreWCF support KafkaBinding?
Does CoreWCF support KafkaBinding ? If yes - Can someone please share the steps I need to follow on client side ? I was not able to find a way to create a channel factory for KafkaBinding and make ...
0 votes
0 answers
270 views
Cannot process the message because the content type 'application/soap+xml;charset=UTF-8 was not the expected type 'application/soap+msbin1+gzip'
I'm trying to implement Gzip compression in a WCF Service that is hosted on IIS. Previously the binding config was set as -- <customBinding> <binding name="SOAPBinding"> ...
0 votes
1 answer
55 views
How does one diagnose an HTTP 404 for a localhost service call
I am working on a Windows 10 workstation invoking a localhost-hosted service. I am getting a 404.0 response. I have verified the following: The Physical Path directory is writable by the ...
0 votes
1 answer
44 views
How to Compress the WCF service response using GZIP in c#?
There is a new requirement where I need to Compress the WCF service response in GZIP format and send it to partner systems in C#. How can I achieve this ? I have tried adding the configurations in web....
0 votes
1 answer
1k views
System.ServiceModel core wcf client bindings
I'm using .NET Core 6 and have the 6.0 Nuget packages for System.ServiceModel which is this opensource code: https://github.com/dotnet/wcf I'm trying to replicate client bindings from a .NET framework ...
0 votes
1 answer
393 views
WCF Service Secured issuedtoken binding to .NET Core
I am attempting to create a WCF .NET service secured using a STS IssuedToken. STS is secured by X509. I developed a client with .NET framework and it works. I conducted research online and I ...
0 votes
1 answer
826 views
Is it possible to WCF service integration on MAUI framework and how?
Is it possible to WCF service integration on MAUI framework? I need to implement login page on MAUI through integrate WCF Service Do you have any reference link regarding this? I am trying to ...