Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
22k views

How to fix “could not find a base address that matches schema http”… in WCF

I'm trying to deploy a WCF service to my server, hosted in IIS. Naturally it works on my machine :) But when I deploy it, I get the following error: This collection already contains an address ...
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 ...
9
votes
2answers
19k views

WSDL URL for a WCF Service (basicHttpBinding) hosted inside a Windows Service

I am hosting a WCF service in a Windows Service on one of our servers. After making it work in basicHttpBinding and building a test client in .NET (which finally worked) I went along and try to access ...
7
votes
8answers
933 views

WCF, BasicHttpBinding: Stop new connections but allow existing connections to continue

.NET 3.5, VS2008, WCF service using BasicHttpBinding I have a WCF service hosted in a Windows service. When the Windows service shuts down, due to upgrades, scheduled maintenance, etc, I need to ...
4
votes
2answers
327 views

.NET or Win32 Equivalent of “netsh http add urlacl” command

There are several questions around how to allow a self-hosted WCF application to use BasicHttpBinding with HTTP.SYS without requiring administrative privileges. It boils down to needing to grant ...
4
votes
1answer
684 views

Does a WCF service with basicHttpBinding create a new connection for each request?

I have a Silverlight client calling a WCF Service on an IIS web server. It uses the default basicHttpBinding setting for the calls. My client code has the usual Visual Studio generated proxy that is ...
4
votes
3answers
864 views

Why is my Winforms-hosted WCF service single threaded?

I have a WCF service that I'm using to replace an old ASP.NET web service. The service appears to be working fine but it is unable to handle simultaneous requests for some reason. My implementation of ...
3
votes
1answer
55 views

WCF proxy Client Singleton Pattern Performance

Is it better, performance wise, to design a Proxy Client in WCF with singleton pattern, or each time create the object and close it after the call?
3
votes
1answer
73 views

Problem with large requests in WCF

I've seen this problem posted a million times, but none of the solutions have worked for me...So here I go: When calling a WCF service I get the following error: The formatter threw an exception ...
3
votes
3answers
3k views

Large Binary (byte[]) File transfer through WCF

I am trying to build a WCF service that allows me to send large binary files from clients to the service. How ever I am only able to successfully transfer files up to 3-4MB. (I fail when i try to ...
3
votes
3answers
373 views

How to bind a WCF Http client to a specific outbound IPAddress before making the request

I want my request to go out through a specific IP Addresses. Is there a way to do that in WCF. The explanation of why I need this is a little long winded so i'd rather not get into that. Here is ...
3
votes
3answers
2k views

WCF ServiceHost basicHttpBinding 503 error

I'm trying to run a WCF ServiceHost as an NT Service on a Windows 2007 SP1 Server. The ServiceHost is reponsible for hosting a single service endpoint: a basicHttpBinding with the following address: ...
2
votes
3answers
286 views

Wcf Basic authentication

Having some trouble using basic authentication with a simple test Wcf service. I am getting an exception: The requested service, 'http://qld-tgower/test/Service.svc' could not be activated. See ...
2
votes
1answer
131 views

How to specify BasicHttpBinding with Savon (RoR)

Im getting this error: (a:6016) The message with Action 'xxx' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either ...
2
votes
3answers
97 views

Are WCF Services encrypted automatically if they go over SSL?

Basically, if I have a plain WCF Service over HTTPS is it automatically secure? [ServiceContract] public interface ICalc { [OperationContract] int add(int a, int b); } public class Calculator : ...
2
votes
2answers
49 views

BasicHttpBinding & SingleContext Services!

I have a WCF service that's hosted on IIS 7 using a basicHttpBinding. The service is acting as a controller for other services distrubted on several machines, known as clients. The service is ...
2
votes
3answers
778 views

WCF + Silverlight + HttpContext.Current.Session is null

my problem.... i am tryingo to access session from Silverlight and WCF basicHttpBinding... i saw some posts where it's possible (http://www.dotnetspider.com/Silverlight-Tutorial-317.aspx) Mys ...
2
votes
1answer
227 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
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
459 views

Why would anyone use WCF basicHttp webservice over WCF RIA Services in Silverlight?

So, I've been using WCF Ria services for a few months now and I am wondering why would anyone use WCF basicHttp webservice over using WCF RIA Services? Someone told me that RIA Services is not good ...
2
votes
0answers
121 views

WCF + SmtpClient: only works in a Windows 2008 environment

Continuing the discussion started in another post: I used windows service to host a WCF mail sender. The service itself is quite simple: it uses a DataContract to get the basic ...
2
votes
1answer
739 views

Delphi 7 Soap WCF Service using basicHttpBinding

I added a basicHttpBinding to an existing Service I have in production in order to expose it for use in Delphi. When I try to use the WSDLImporter from Delphi 7 on the wsdl file, it doesn't work ...
2
votes
2answers
92 views

Difference between basicHttp binding in webservices and WCF

What is the difference between WCF and WSE2.0 webservices when it comes to implementation of basic httpbinding. Can anyone point out what may be the subtle differnces when it come sto use the same ...
2
votes
1answer
279 views

Advantages and Disadvantages of Axis2 over WCF

We have a WCF Service in our application suits that is being used to synchronize data among the different devices of a same user. We are facing some trouble with WCF as it leaves high memory ...
2
votes
1answer
6k views

How can I use WCF with only basichttpbinding, SSL and Basic Authentication in IIS?

Is it possible to setup a WCF service with SSL and Basic Authentication in IIS using only BasicHttpBinding-binding? (I can’t use the wsHttpBinding-binding) The site is hosted on IIS 7, with the ...
2
votes
1answer
623 views

WCF host in windows service: cannot get wsdl

i've a windows service that hosts a WCF service with basicHTTPBinding. In test everything goes right, when i deploy the win service on a Window Server 2003, service hosts correctly wcf, I print out ...
2
votes
2answers
396 views

Silverlight client identity not always passed to server?

I have a Silverlight client that has some problems talking to the server it originates from via a WCF basicHttpBinding. The service configuration is as follows: <system.serviceModel> ...
1
vote
1answer
244 views

How can basicHttpBinding, webHttpBinding & mexHttpBinding endpoints coexist in one WCF service

I have a WCF service (target .NET 4) and I need to expose 4 endpoints: SOAP, POX, JSON & MEX. My configuration file looks like this: <system.serviceModel> <!-- bindings --> ...
1
vote
1answer
57 views

VS2010 Share Response Cookie Among Multiple WCF Clients to SOAP 1.1 Service

I have a third-party Java web service listening at three SOAP 1.1 WSDL endpoints. One of the endpoints is used to initiate the session and perform some high-level tasks, and the other endpoints are ...
1
vote
2answers
80 views

Change WCF Service Binding From basichttp to nettcp

What is the easiest way of changing the binding of a WCF service from basichttp to nettcp? Surely you don't have to edit the file manually as there is just too much scope for error.
1
vote
1answer
127 views

Async WCF-call slow on Windows Phone 7

Im trying to write a small WCF-service (self hosted basicHttp) to receive mouse coordinates from the phones touchscreen. First I tried to write a sync OneWay-operation but I couldnt get it to work ...
1
vote
1answer
103 views

Do you have to call Close()/Abort() on client proxy for WCF basicHttpBinding service?

I can seem to find a definitive answer on this subject. I'm aware of the using() { } problem with the client proxy. But we have a client that is eating all exceptions returned by our service, and it ...
1
vote
1answer
123 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
1answer
310 views

Return JSON from WCF

my WCF service is in .net framework 3.5,this WCF service will be used by PHP, so i have used basicHttpBinding (please suggest if any other better one). i am using below code/attribut on function to ...
1
vote
1answer
284 views

WCF basicHttpBinding with Transport security specifying message credential type

I've been given a wsdl for a service which VS2010 generated the following binding as part of it's configuration. <bindings> <basicHttpBinding> <binding ...
1
vote
1answer
89 views

Are there any pitfalls to setting higher values on a XmlDictionaryReaderQuotas object, specifically MaxStringContentLength and MaxArrayLength?

Of special note, this is for the ReaderQuotas property on a BasicHttpBinding object. Specifically, might I have a (very) few situations where my current value of 163,840,000 (magic undocumented value ...
1
vote
2answers
304 views

WCF BasicHttpBinding Http Post

Is it possible to post to a WCF service hosted in IIS? I know that that this is possible using REST but I really need the WSDL generation and SOAP headers. I need to transition an existing ASMX web ...
1
vote
0answers
367 views

Amazon EC2 for WCF Windows Service

I have a Sync Services built using .Net WCF, .net 4.0,SQL Server 2008 and hosted in a windows service. Following are some custom implementation we have done; Custom DB Connection Pooling, filled ...
1
vote
1answer
366 views

WCF auditing/logging

I need to provide non repudiation in my WCF services and want to store all my incomming SOAP requests into a SQL server DB with signature/security data and all the envelope stuff. This way, when a ...
1
vote
1answer
495 views

Create a secure application with basicHttpBinding

I am really really tired these day because of facing this problem. I am building a XBAP application (WPF Browser Application) that uses WCF Service. This app requires: Users can login by using their ...
1
vote
1answer
1k views

WCF “The server did not provide a meaningful reply”

I am out of ideas here, so I'm hoping someone can help. Here is what I've got: A WCF service that only has a basicHttpBinding endpoint. There is only a service interface, all other [DataMember], ...
1
vote
3answers
2k views

How can I programatically create this custom binding?

We've got to access a web service that uses soap11... no problem I'll just set the binding as: BasicHttpBinding wsBinding = new BasicHttpBinding(BasicHttpSecurityMode.TransportWithMessageCredential); ...
1
vote
2answers
828 views

Can I implement callback from WCF based HTTP service to a gSOAP c/Linux client?

I have a Linux/c client app that connects to a WCF web service over HTTP/SOAP (BasicHTTPBinding). I am using gSOAP. Can I implement the calls to the web-service using callback? I want to get the data ...
1
vote
3answers
611 views

IIS 7 Restarts Automatically

I have a WCF Service Deployed on IIS. (BasicHTTPBinding with [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]) I have built custom in-memory session ...
1
vote
3answers
6k views

How to authenticate in WCF services in BasicHttpBinding?

I am developing WCF services with basicHttpBinding, these services should be accessible using .net 1.1 & .net 2.0, for this purpose I am using basicHttpBinding. In old ASMX web services I assed ...
1
vote
2answers
777 views

WCF -> IIS 7.0 Partial Trust Hosting (.svc) -> BasicHttpBinding -> Authentication (UserName / Password) - > ASP.NET Membership Provider -> No SSL

Basically my requirement is: WCF Service Application Hosted on IIS 7.0 with Partial Trust Endpoint exposed with BasicHttpBinding Would like to enable basic Authentication (UserName / Password) Would ...
1
vote
2answers
698 views

Can a WCF service w/ BasicHttpBinding without a MEX Endpoint be exploited by absolute strangers?

From what I understand: If you don't have a MEX endpoint / WSDL, your service is basically non-discoverable. Only people who have knowledge of your data contract should be able to consume your ...
0
votes
0answers
6 views

consuming basicHttpBinding for a web serice in a console application

I have a web service that has basicHttpBinding. When I am trying to consuming it by adding it to my application as a web service, I am getting error that the request and responce are different ...
0
votes
2answers
51 views

How do you configure a WCF service with two endpoints to use a different ListenUri for each endpoint?

I have a WCF Service which exposes an endpoint using the webHttpBinding and is consumed by both WPF and ASP.NET applications. Everything works great. I am now attempting to consume the service from ...
0
votes
1answer
93 views

Passing windows identity to WCF from ASP.NET

I have a WCF service hosted in IIS with integrated windows authentication enabled and anonymous authentication disabled. When I try and call this service from ASP.NET, I'm getting the following ...

1 2 3