Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
4k views

Transferring large payloads of data (Serialized Objects) using wsHttp in WCF with message security

I have a case where I need to transfer large amounts of serialized object graphs (via NetDataContractSerializer) using WCF using wsHttp. I'm using message security and would like to continue to do so. ...
9
votes
1answer
11k views

BasicHttpBinding vs wsHttpBinding vs WebHttpBinding [closed]

I need a comparisons chart of above 3 mentioned bindings in terms of features and performance. i have seen some between ws and basic but i need web as well. Please if anyone has link to any article ...
7
votes
5answers
3k views

What is the difference between wsHttpBinding and ws2007HttpBinding?

On the MSDN we can read : The WS2007HttpBinding class adds a system-provided binding similar to WSHttpBinding but uses the Organization for the Advancement of Structured Information Standards ...
6
votes
3answers
8k views

Consuming a WCF WsHttpBinding WebService in Java

I'm trying to get a Java Client to communicate with a WCF wshttpbinding WebService. But I am unable to do so. The call either hangs, or I get "musunderstoodheader expcetions". My Web Service is just ...
5
votes
2answers
297 views

WCF & Java Interop - Please help

I’m trying to get a simple WCF application work with Java Client. Service exposes few simple operations using WSHttpBinding, which it does perfectly. Now, due to some reason (probably due to ...
5
votes
4answers
5k views

netTcpBinding or wsHttpBinding

I have a WCF Service hosted as Windows Service and client is an ASP.Net application consuming WCF Service methods. In process of implementing security, I am confused over which among ...
4
votes
1answer
4k views

wshttpbinding support in silverlight 4

Does silverlight 4 beta supports wshttpbinding (wcf)? If not, will it be supported in stable release?
4
votes
3answers
4k views

Interesting issue with WCF wsHttpBinding through a Firewall

I have a web application deployed in an internet hosting provider. This web application consumes a WCF Service deployed at an IIS server located at my company’s application server, in order to have ...
3
votes
3answers
514 views

How can i import a https webservice (wcf) with Delphi 2010?

I have a problem so i wanna help from you. There is a webservice and it's url : https://kps.saglik.gov.tr/Services/KPSTestServices.svc We can import this url on visual studio c# easily, but we ...
3
votes
1answer
463 views

Programmatic WCF Message Security with Certificates

I've written a self-hosted WCF service using WSHttpBindings and I'm trying to implement message-level security using certificates I've generated myself. Unfortunately I'm getting a buried exception ...
3
votes
0answers
550 views

Minimal client which supports message-level security over the channel interface

I'm trying to build a minimal client for a WCF service, using the WSHttpBinding with SecurityMode: Message over a direct channel interface. My current code is very simple: EndpointIdentity i = ...
2
votes
3answers
56 views

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 ...
2
votes
1answer
111 views

How to restrict access to a WCF service to the local machine when using WSHttpBinding?

I'm using WCF to do inter-process communication on my machine, using WSHttpBinding, and I'd like to restrict the service so only processes on the current machine can call the service. How can I do ...
2
votes
1answer
578 views

Consuming a WCF service in a Java Client using wsHttpBinding

I'm trying to get a Java Client to communicate with a WCF wshttpbinding WebService. But I've been unsucesful so far. The call either hangs, or I get: “SOAPFaultException: The message could not be ...
2
votes
1answer
228 views

Unable to use basic authentication to access WCF web service

I am trying to configure a WCF service to allow for both Windows/NTLM and Basic Authentication. Unfortunately, given this configuration only Windows/NTLM works and basic authentication fails with an ...
2
votes
1answer
215 views

Problem with enable session with wsHttpBinding in wcf

I write this code: interface: public interface IService1 { [OperationContract] string Welcome(string fullName); [OperationContract] string Goodbye(); [OperationContract] ...
2
votes
0answers
703 views

SOAP header Action was not understood

I am trying to consume a webservice in C#. Whenever i try to call the function from the web service class I am getting a "SOAP header Action was not understood".I've added web reference[not service ...
2
votes
1answer
1k views

WCF NetTCPBinding vs HttpBinding difference in data sent on wire

Say I have a service exposing two end points, 1st is a NetTCPBinding the second is any flavour of HttpBinding. They both implement exactly the same service contract. What is the difference in what is ...
2
votes
2answers
299 views

Can I use WCF wsHttpContextBinding with WSIT (Metro) clients?

I am working on a WCF - WSIT (Metro) integration project and I would like to allow Java clients to connect to Durable Services. Durable Services ...
2
votes
2answers
416 views

WCF: Is using WsHttpBinding interoperable?

As the name states... right now I'm using BasicHttpBinding, but I'm wondering if I can switch to WSHttpBinding and still be interoperable with, for example, Java.
2
votes
1answer
1k views

Setting Message version in code for WCF client

I want to set message version for WSHttpBinding to EnvelopeVersion.Soap11. I don't know how to do that. Can any one help me. Here is my binding code var binding = new WSHttpBinding() { ...
2
votes
2answers
3k views

how to enable WCF Session with wsHttpBidning with Transport only Security

I have a WCF Service currently deployed with basicHttpBindings and SSL enabled. But now i need to enable wcf sessions(not asp sessions) so i moved service to wsHttpBidnings but sessions are not ...
2
votes
2answers
1k views

WCF wsHttpBinding “There was no channel that could accept the message with action”

[Update] Solved the Problem by generating a new web.config. Possible error was the second endpoint ("mex"). [Update/] I have a webservice in IIS. I'm trying to call a function but i get an ...
2
votes
2answers
1k views

Calling a WCF WebService in PHP via wsHttpBinding

I have a WCF webservice I can connect to it via basicHttp, but not wsHttp. I try to conenct to it via wshttp via the following: $service = new SoapClient ...
2
votes
1answer
5k views

WCF: The request for security token could not be satisfied because authentication failed

I have two WCF services on the same machine. One is the publisher and one is the listener. The Publisher is dynamically creating proxies based upon and endpoint. I am configuring the proxy in code ...
2
votes
2answers
721 views

wsHttpBinding over Internet

We have a set of WCF services hosted in IIS and secured with wsHttpBinding and exposed on Internet. When I am trying to consume those services from a client I am getting an error "Request for the ...
1
vote
1answer
26 views

WCF disabling UseNagleAlgorithm while connecting to SQL Azure

Have a bunch of WCF REST services hosted on Azure that access a SQL Azure database. I see that ServicePointManager.UseNagleAlgorithm is set to true. I understand that setting this to false would speed ...
1
vote
1answer
71 views

How can I host a WCF REST service at the service root address (without trailing slash)?

I have a service hosted using wsHttpBinding on an address (the host base address is http://localhost/MyService). In my contract (IMyService), I have: [OperationContract] [WebInvoke( ...
1
vote
1answer
130 views

Secure WCF service in IIS using certificates

I want to secure a service application in WCF 4, using a selfsigned certificate (generated by inetmgr). But, I can't. When I call a method of the service, I have a MessageSecurityException: The ...
1
vote
1answer
183 views

WCF - weird error

I have my dll hosted at IIS with wsHttpBinding. I have this weird error happened intermediate. Well, everything will be restored back normal again when I reset the IIS (iisreset). I also read this ...
1
vote
1answer
537 views

wsHttpBinding on the wcf service and web reference on the client don't work

I use wsHttpBinding on the wcf service. I've added web reference and got I've got the web proxy (it is based on SoapHttpClientProtocol). Also I've tried to build proxy using wsdl.exe and actual wsdl ...
1
vote
1answer
900 views

At least one security token in the message could not be validated

Server config: <?xml version="1.0"?> <configuration> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior ...
1
vote
1answer
124 views

WCF Authentication — Authenticate user/pass one time, then authenticate some other way afterwards?

Basically, I have the following scenario and information: We're using HTTPS. We want to authenticate a user by user/pass when they first log in. After they are authenticated, I want any future calls ...
1
vote
0answers
103 views

CommunicationException when calling MVC Service from ObjectDataSource Select method

I am getting the exception below in my web application: "The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state" ...
1
vote
0answers
134 views

Error Using Certificate Authentication in WCF

I'm in a bit of a pickle! I am getting the following error when deploying to one of my live servers which I haven't seen in previous installations. This server is behind a hardware load balancer ...
1
vote
1answer
356 views

WCF self-hosted service SSL/transport security/Basic authentication doesn't ask for credentials

I've created a self-hosted WCF service with HTTPS/SSL, transport security and Basic authentication. For some reason, when I run the service in the browser it never asks for credentials. What's wrong? ...
1
vote
1answer
1k views

Error message: The request for security token could not be satisfied because authentication failed

I am trying to access a WCF service (MS CRM 2011) and getting the above error. If I run my sample program from the VS2010 debugger with either Cassini or IIS Express it works great. No ...
1
vote
1answer
545 views

WCF Endpoints Configuration

Going through the "Whats new in WCF4.0" tutorial. The 1st exercise is to set up a service without any config. Then you put some configuration in place to provide service meta data. Simple stuff. What ...
1
vote
2answers
387 views

WCF ReliableMessaging - Connect to existing OperationContext using SessionId

I am currently working on a WCF - WSIT integration task. I am using WS-ReliableMessaging with WCF and ws2007HttpBinding. Reliable session is set up correctly, I am using ...
1
vote
0answers
122 views

C# WCF ClientCredential usage

I'm a beginner using WCF Service, and I'm trying to understand how the ClientCredential methods work. I am able to successfully use authentication using wsHttpBinding and SQLMembershipProvider. ...
1
vote
1answer
439 views

WCF wsHttpBinding securiy without SSL and certificate

I want a secure WCF service which would be used over internet. There are few light methods, so performance is not an issue (message size). I prefer port 80 (web) for firewall issues so TCP binding is ...
1
vote
1answer
427 views

WCF: myservice.svc?wsdl shows “You have created a service.”, not WSDL?

I've created a WCF service with a wsHttpBinding and a mexHttpBinding. When running on http in IIS6, the myservice.svc shows the usual "You have created a service." page. myservice.svc?wsdl shows XML ...
1
vote
1answer
302 views

WCF: The message could not be processed:

I have created a WCF service which I am hosting as an application under my site on an IIS7. It is running on one server and now I am trying to make it run on a second server. When I call the service I ...
1
vote
0answers
191 views

Authentication and Authorization with WsHttpBinding hosted on IIS

I have a typical 3-tier schenario with the Web site hosted on IIS and also WCF service hosted on IIS (on a different machine). My requirement is to restrict the caller to the Web site AppPool account ...
1
vote
0answers
278 views

IIS Hosted WCF Service won't accept https endpoint, receive 404 resource error

Despite all of my efforts, I have not been able to get my simple WCF service hosted on IIS with SSL. We are using windows server 2k3 with IIS 6.0 and we have up to .NET 4.0 installed on the server ...
1
vote
1answer
313 views

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 ...
1
vote
0answers
159 views

Do you need to open client firewall for WS-AT to work with WCF?

I am getting the following error trying to communicate from WCF -> WCF across the internet with a SSL certificate. I have 'No authentication required' checked in the WS-AT configuration on the server. ...
1
vote
4answers
679 views

How to read value of an attribute defined in app.config?

I have a app.config file that in the form of : <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <client> <endpoint ...
1
vote
1answer
676 views

WCF: SecurityNegotiationException when using client

So I've been trying to set up certificate authentication for my clients and services. The eventual goal is to partition data based on the certificate a client connects with (i.e. the certificate ...
1
vote
1answer
1k views

WSHttp binding and ReliableSession / MaxRetryCount

When using a WSHttpBinding in WCF with reliableSessions enabled, my service reference updates itself to: <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="true"> ...

1 2