50,751
questions
0
votes
0
answers
36
views
Is it possible to host .NET core wcf services on Ubuntu server? [closed]
I have situation where i need to either use webservice/WCF/Rest/Soap (any of the services, still not able to figure out which one will suit best based on situation).
I have a database (postgres) ...
0
votes
0
answers
22
views
Auth to WCF with postman using UserName credential type
I have a WCF proxy used to connect to a very old WCF service from a vendor. The proxy lets me in when security is removed. So when i have security set to
<message clientCredentialType="...
0
votes
0
answers
36
views
Is it possible to consume a .NET Standard 2.0 WCF Service using ASP.NET Core 8.0 client application?
As a step to upgrade to .NET Core, we have upgraded our .NET framework provider library from .NET 4.8 to .NET Standard 2.0.
Now we are trying to consume this WCF service provider in the client using ...
1
vote
0
answers
33
views
In CoreWCF, how can I replace references to http://tempuri.org/ with my own namespace?
I am trying to make a CoreWCF SOAP endpoint which is backwards compatible with a legacy .NET Framework SOAP API. One problem remaining is that if I call any method (OperationContract), the XML ...
0
votes
0
answers
44
views
How to Add Custom Headers (User-Agent, Accept) to WCF Service Using bnoffer.owncloudsharp without Modifying Method Signatures?
we are working on an ASP.NET web application that consumes a WCF service. This WCF service interacts with OwnCloud using the bnoffer.owncloudsharp library. After enabling WAF (Web Application Firewall)...
0
votes
0
answers
34
views
How to remove body from soap wcf after
I have a wcf service and i have data that i want to remove it after the request already send to the wcf service, it seens that if perform dump file from the app - the data is stored there.
<s:...
0
votes
0
answers
43
views
Why is the ServiceHost throwing an exception when I add a UdpAnnouncementEndpoint to ServiceDiscoveryBehavior?
The ServiceHost is throwing a NullReferenceException when I try to facilitate the service announcement. I do it exactly as described here
Below is a complete running code illustrating the problem.
I ...
0
votes
0
answers
88
views
Hosting a Windows Service using .NET Core
I'm porting an existing .NET Framework Application which was spread about various Windows Services to .NET Core. It is not that the applications should run autonomously but in the context of ASP.NET ...
0
votes
0
answers
41
views
WCF, SOAP, The 'Body', 'http://schemas.xmlsoap.org/soap/envelope/' required message part was not encrypted
I'm trying to receive requests from a client. When the client sends a request, he receives the following error:
An error occurred when verifying security for the message.
When i check my tracelog, i ...
0
votes
0
answers
44
views
I'm getting a 403.7 on a website when I hit the status page
I'm getting a 403.7 on a website(WCFService) when I hit the status page. How do I find out which cert is missing?
SSL settings on the directory of the status page -> Client certificates is set to '...
0
votes
1
answer
41
views
Using C# NetTCPBinding and WCF, How Do I Get the Port the Client is Connecting From for Same Machine TCP Communication?
I'm trying to find out what C# method, or attribute on some known variable, I can use to determine information about the client. The communication is happening fine. I'm using NetTCPBinding and have ...
0
votes
1
answer
45
views
How to pass HTTP headers to WCF service calls from AjaxWebService(Ajax-enabled) in existing project?
We have an ASP.NET web application that consumes WCF services. The current system structure is as follows:
In AjaxWebService.svc.cs:
[ServiceBehavior(InstanceContextMode = InstanceContextMode....
0
votes
0
answers
29
views
Unable to open WCF Client on UTM Virtual Machine with an ARM Macbook
I am getting an error when I try to use a WCF client through Visual Studio Community on a virtual machine. I have a Windows VM on UTM that I am using the Windows ARM ISO on. However, when I try to ...
0
votes
1
answer
20
views
Premature timeouts in WCF client
Currently, I've encountered strange behavior in .net WCF client side.
There is some retry logic triggered in response to request timeout. In order to test it we added following rule to iptables sudo ...
0
votes
0
answers
32
views
c# Validate Certification Authority not present in Trusted Root Certification Auth on WCF service
I need to make an SSL connection to a soap service.
The problem is that the ROOT CA that must validate the certificate from the server cannot be present on the System Root Trust Store of the client. ...