Questions tagged [wcf-wshttpbinding]

30 questions
9
votes
4 answers

WCF - The maximum nametable character count quota (16384) has been exceeded while reading XML data

I'm having a WCF Service that uses wsHttpBinding. The server configuration is as follows :
Jankhana
  • 953
  • 4
  • 18
  • 29
6
votes
1 answer

The binding at system.serviceModel/bindings/wsHttpBinding does not have a configured binding

I'm trying to create a second endpoint in my WCF web service. I can bring up the new endpoint's "Happy Page" by putting the domain URL in my browser, so I know that IIS can find the service, using my user account, properly. However, if I try to run…
NealR
  • 10,189
  • 61
  • 159
  • 299
5
votes
1 answer

How to receive a response from server in WCF reliable messaging after connection cuts

So I created Client/Server WCF. What I want is when I send message to the server from this client and the connection cuts for any reason , client shuts down for example, how could this client get the response when it is availabe again ? Is it…
5
votes
1 answer

wsHttpsBinding Vs wsHttpBinding

I have often come across wsHttpBinding when writing code for WCF projects. However, I have never used wsHttpsBinding. Question: Does wsHttpsBinding even exist in WCF or its a custom binding? If it exists, then why would a developer use…
Sunil
  • 20,653
  • 28
  • 112
  • 197
3
votes
3 answers

WCF Service over SSL Could not establish secure channel for SSL/TLS with authority 'test-service.hostname.com'

I am having an issue. We are trying to attach a client certifacte to a WCF service over SSL required. When I try to navigate to the service through a browser it will show me the 'You have created a service page' but only if I attach the certificate,…
Jamie Babineau
  • 746
  • 2
  • 12
  • 25
2
votes
3 answers

WCF MaxArrayLength Changing Setting Won't Stay

I am trying to upload files using WCF. Everything under 16K works fine, but anything over throws this error: There was an error deserializing the object of type System.Byte[]. The maximum array length quota (16384) has been exceeded while reading…
Ryan
  • 68
  • 6
2
votes
1 answer

WCF: How to actually get to use WSHttpBinding? I get exceptions instead

I created a WCF Service: Shared.dll: [ServiceContract(ConfigurationName = "ICalculator")] public interface ICalculator { [OperationContract()] int Add(int a, int b); } Server: [ServiceBehavior()] public class Calculator : ICalculator { …
michael
  • 14,844
  • 28
  • 89
  • 177
2
votes
1 answer

Handle Wcf wsHttpBinding on Linux

I'm involved in a project with many others companies. We started to develop our systems at the same time but only at the end the communication problem was taken into account. I've developed my system on Linux with Mono (Linux is mandatory for me). I…
napcoder
  • 465
  • 1
  • 4
  • 14
2
votes
1 answer

Is it possible to call WSHTTPBINDING from android?

private static final String SOAP_ACTION = "http://tempuri.org/IService1/HelloTest"; private static final String METHOD_NAME = "HelloTest"; private static final String NAMESPACE = "http://tempuri.org/"; private static final String URL = ""; //blank…
Nirmal
  • 2,340
  • 21
  • 43
1
vote
1 answer

Creating Java Client to access WSHTTPBINDING API Service

I need to consume a web service from UltiPro in Java. All the examples from UltiPro are for C# (see below) and I cannot see how to translate the into Java. My research indicates that the key is WSHttpBinding. UltiPro's documentation includes an…
Bryan Schmiedeler
  • 2,977
  • 6
  • 35
  • 74
1
vote
1 answer

Retrieving the MessageId automatically set by WCF when using WSHttpBinding

I use WCF to consume a web service that respect the WS form (I then use WSHttpBinding binding). This form involves a MessageID to be set in the header of the soap request and the same id being present in the reponse header in the RelatesTo field. …
VdesmedT
  • 9,037
  • 3
  • 34
  • 50
1
vote
2 answers

WCF - Message Based Security and SSL Accelerator

I'm using a WCF service currently that uses message-based security and is intended to be accessed over HTTP, rather than HTTPS. This has been tested and works a treat. On deploying to a machine that uses an SSL accelerator I am getting the…
AJM
  • 32,054
  • 48
  • 155
  • 243
1
vote
0 answers

How to "relax" wcf transport security

I wonder if exists some magic configuration parameter to "relax" WCF SecurityMode=Transport in order to use it with no SSL(http instead of https). I need to setup (for testing purpose) a wsHttpBinding with UserName credentials under http. I…
Crixo
  • 3,060
  • 1
  • 24
  • 32
1
vote
1 answer

WCF - wsHttpBinding with UserName Autentication and Message - error message "An error occurred when processing the security tokens in the message"

I'm trying to create WCF applications with username authentication. And this error occurring. This is the service configuration: Web.config
user3632382
  • 13
  • 1
  • 3
1
vote
0 answers

WCF service hosted on IIS with custom authentication provider, some requests take 6-7 minutes to respond

We have a WCF service hosted on IIS 7.5 which has custom username authentication using a custom membership provider (we authenticate users from a database with some custom logic). The service uses WsHttpBinding with TransportWithMessageCredentials…
ubaid
  • 148
  • 9
1
2