The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

BasicHttpBinding service with both Http and Https

I've written a WCF service with BasicHttpBinding, which works with both http and https. My configuration for the service was as below. <system.serviceModel> <services> ...
0
votes
0answers
57 views

Error when using transport security with certificate in my self-hosted WCF service when using basicHttpBinding

I have a self-hosted WCF service that uses net.tcp, but now, to support a legacy application we had to open a basicHttpBinding. The security is done through transport using certificates and it works ...
0
votes
0answers
75 views

What's The Deal With WCF BasicHttpBinding and Basic Authentication Over HTTP?

I've been wracking my brain trying to figure out how to configure a WCF contract-generated SOAP client to properly send basic HTTP authentication credentials over HTTP (i.e. TransportCredentialsOnly ...
0
votes
1answer
24 views

Determine host type ( selfhost vs iis ) for a wcf service exposing basichttp binding

There is a service , exposing one endpoint as basic http binding. I have two types of hosting ( selfhost for test ,iis for production) I am using configurationmanager which has to read a service ...
0
votes
1answer
91 views

WCF Service host using ServiceHostFactory with Multiple Binding

I have created WCF service to host on IIS. I am using ServiceHostFactory method to host my service(using Unity as DI). I want to host my service using multiple binding, over the HTTP as well as over ...
0
votes
1answer
43 views

Openfire + Candychat 500 Internal error

Hi i am very new with this xmpp protocol and trying to build a simple web-based chat app using Openfire and candychat. Currently i am running my webserver using XAMPP (C:\xampp). I already have ...
0
votes
1answer
127 views

Using BasicHTTPBinding WCF service from Silverlight breaks when turning on security

I'm trying to consume a BasicHTTPBinding WCF service (which is self-hosted in a .Net 4.0 console application) from Silverlight (v5). It all works fine when there's no transport encryption, but I'd ...
0
votes
0answers
43 views

BasicHttpBinding very slow

I noticed that all my method in wcf service take a long time for executed (about 500 ms for call). I investigated for several days and I found that, in my case, basichttpbinding is very slow, while ...
0
votes
1answer
152 views

WCF web service in node.js

Can anyone help me saying whats wrong with the below code var BasicHttpBinding = require('wcf.js').BasicHttpBinding , Proxy = require('wcf.js').Proxy , binding = new BasicHttpBinding() , proxy = new ...
0
votes
0answers
38 views

EndpointNotFoundException when calling a service hosted on a subdomain

I'm trying to host our WCF services on a subdomain of our main domain on IIS. Instead of: http://www.ourDomain.gr/WCF/Service.svc/Soap11 I'm calling: ...
0
votes
1answer
91 views

Intermittent WCF Connection (There was no endpoint .. ) error

I have a WCF service hosted in the IIS (IIS 8). The service is in a Per Call Mode and the concurrency mode is set to Multiple. I have around 600 clients connecting to it. It has a HTTPS end point. It ...
1
vote
2answers
150 views

Random timeout errors when using WCF net.tcp binding

To give a general overview - I have a WCF service with multiple bindings. One is a HTTPS binding and the other a net.tcp. The service is hosted on a IIS. The HTTPS binding seems to be working fine, ...
1
vote
1answer
174 views

Configure WCF client endpoint to use a relative address (for Azure)

I have a Windows Azure Cloud Service project containing multiple Web Roles to host some services. I want to use ServiceX in ServiceY (each running on diffrent roles) using an relative URL. Thats the ...
1
vote
0answers
139 views

Hosting fileless .svc service on both fully windows authenticated site and fully anonymous site

We have a common dll(API) which is responsible from hosting fileless .svc service on the seperate web applications. So our API is referenced by different web applications. As a service endpoint we use ...
0
votes
0answers
110 views

Changing Clock Skew for BasicHttpBinding not working

I am trying to increase the clock skew on the BasicHtttpBinding programmatically. I am using TransportSecurityBindingElement using CreateUserNameOverTransportBinding mode. I am able to change the ...
0
votes
0answers
30 views

Can I call WCF service secured with message security on a BasicHttpBinding using PHP?

Does any one have any experience doing this? If so, what client was used to do this? Thanks in advance.
6
votes
3answers
918 views

What 130 second timeout is killig my WCF streaming service call?

Just recently I started to investigate a tricky problem with WCF streaming in which a CommunicationException is produced if the client waits for any longer than 130 seconds in between sends to the ...
0
votes
1answer
149 views

Can't save old netsh http urlacl reservation

I was experimenting with the settings on a server, and it gave this information from netsh http show urlacl: Reserved URL : http://+:47001/wsman/ User: NT SERVICE\WinRM Listen: ...
2
votes
0answers
222 views

wsHttpBinding (with https and aspNetCompatibilityEnabled for routing) metadata error 302

I am working on a WCF service which runs along with ASP.NET MVC 2 application with https port which have been configured using webMatrix-ssl certificate. The service is running perfectly in the ...
1
vote
0answers
109 views

WCF: Randomly does not respond

I have a peculiar problem with client requests randomly not getting a response to a WCF service call. The setup is a Silverlight 5 application making calls to a WCF service, using both HTTP and ...
0
votes
0answers
46 views

WCF service with basic binding over https

I have a WCF service with TransportWithMessageCredential security, like this: <security mode="TransportWithMessageCredential">` <transport clientCredentialType="Certificate"/> ...
1
vote
0answers
175 views

BasicHttpBinding to Project Server (SharePoint Server) causes a 401 error

I am trying to create a BasicHttpBinding to a Project Server. But I keep getting a 401 error. Infrastructure: Server A (IP: 192.168.123.10) is IIS 7.5 and Server B (IP: 192.168.123.20) is ...
4
votes
2answers
346 views

How does long polling ACTUALLY invoke callback on client?

The client initiating long polling, calls a method on server and passes in an instance of AsyncCallback which contains the callback delegate which will be invoked when server asynchronously gets back ...
0
votes
0answers
22 views

WCF service takes longer to time out than set

If I explicitly set all the timeout values on a WCF service to for example 3 seconds, then it actually takes around 18 seconds to time out. Does anyone know why this is?
3
votes
1answer
207 views

Packet fragmentation in the WCF stack using BasicHttpBinding, http header and soap envelope always split by a packet boundary?

I have a problem whereby I have lots of very small web service calls to a Java endpoint (hosted on Oracle GlassFish 3.1.X). I added this service as a Service Reference (using the remote wsdl file) ...
0
votes
1answer
168 views

MemoryStream data corruption issue

I have created a simple REST based WCF service which runs on BasicHttpBinding. In one of my webmethod, I am returning a Stream which points to a JSON response. The Method looks like : ...
0
votes
1answer
2k views

The HTTP request is unauthorized with client authentication scheme 'Anonymous'?

While trying to invoke a RESTful service(i have used UserNameAuthenticator from this sample for RESTful service Adding basic HTTP auth to a WCF REST service) from my web client application am getting ...
1
vote
1answer
355 views

WCF Authentication using basicHttpBinding and custom UserNamePasswordValidator?

Here i am implementing custom usernamepasswordvalidator in WCF RESTfull service.What i need is while invoking this one http://localhost:12229/RestServiceImpl.svc/GetStudentObj through Chrome REST ...
1
vote
0answers
398 views

Mono: WCF Service Timeout with basichttpBinding (Mono 2.10.8.1)

I'm having WCF Client with basicHTTPBinding. That is working fine when running in Windows. but when running from Mono (Debian 2.10.8.1-5, Mono JIT compiler version 2.10.8.1) I immmediately get a ...
1
vote
1answer
160 views

Is it possible to call a WCF service using MTOM encoding in a Windows 8 application?

I have a WCF service whose endpoint uses a basicHttpBinding with the messageEncoding set to Mtom. I'm using transport security with basic credentials. <binding name="basic" ...
1
vote
0answers
98 views

WCF servicebinding able to receive XML with Bare bodystyle

I am building a WCF service that is implementing the SPML standard. This means that one endpoint needs to be able to receive a number of XML request that is interpreted to Add/Modify/Delete commands. ...
0
votes
1answer
187 views

WCF Changing credentials

I have a web app that calls a WCF web application with several services, all using basicHttBinding, on different servers (web server, app server and database server). One of the services has to ...
0
votes
1answer
257 views

Is a good idea to set “leastconn” as load balancing method in HAproxy to handle BOSH connections?

I have an HAproxy instance used as load balancer of BOSH (http-bind, http://xmpp.org/extensions/xep-0206.html) servers. It was running with "roundrobin" load balancing method, but I experimented some ...
0
votes
1answer
154 views

Initialise BasicHttpBinding object from file other than app.config?

I currently have code, in C#, that requires a BasicHttpBinding object to connect to SSRS. As it stands, I initialise this object using values assigned in code, rather than reading it from the ...
0
votes
1answer
184 views

wcf basichttpbinding supports generic list?

I am trying to add a new service method in my existing wcf web service project which uses basichttpbindings. My new service method accepts a class as a parameter and this class has a List<T> ...
1
vote
0answers
303 views

BasicHttpBinding, ServiceReference from WSDL - performance issues

I am currently experiencing some difficulties diagnosing some BasicHttpBinding/ServiceReference performance issues. In some instances, when using a Stopwatch to time a synchronous method call to the ...
1
vote
1answer
214 views

WCF proxy close basicHttpBinding - Help explain behavior

I have the following code on WCF Service and I am using basicHttpBinding public class Service1 : IService1 { public string GetData(int value) { // Sleep for a minute ...
0
votes
0answers
274 views

Generate same basicHttpBinding in WCF Service and Client App

This is my WCF Service binding <binding name="BasicHttpBinding_IDownloadService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" ...
0
votes
1answer
95 views

Unable to send Object while using Web Service

I am trying to send the object through a method api of web service. As service is binded by BasichttpBinding. OneClickOrder OneClick = new OneClickOrder(); OneClick.Mobile = ...
0
votes
0answers
253 views

WCF with netTcpBinding and BasicHttpBinding

I want to host a WCF in IIS 7.5 that allows http and tcp. I followed a few guides from some SO answers but I'm not able to browse to localhost/WcfDirectory/Wcf.svc. It keeps showing "Could not find a ...
0
votes
1answer
202 views

How to upload large file with WCF in MonoDroid

I'm trying to implement WCF into MonoDroid. I think there's no big difference between it and MonoTouch on this issue. And after researching, I counldn't find the supoort for anyother WCF binding mode ...
0
votes
1answer
141 views

Delay invoking method in WCF web service - the first time

I have a WCF Web Service Framework 4 that exposes a very simple method for authentication in BasicHttpBinding Nothing special: [ServiceContract] public interface IAutorizedUser { ...
2
votes
1answer
1k views

WCF client configuration for 3rd party SOAP 1.1 service with plain text username credentials over SSL

I am trying to connect to a third party SOAP 1.1 service that requires SSL security and username/password credentials. An example of what is expected is: <soapenv:Header> ...
0
votes
0answers
163 views

Unable to connect iJabbar with ejabberd server

I am implementing facebook like chat in my JSF app, trying to use iJabbar (a iJab bar style implementation) with ejabberd server... despite all the configurations are done according to the ...
0
votes
1answer
319 views

WCF binding security for encryption

Here is WCF binding and security question I'm quite confused: You are hosting a Windows Communication Foundation (WCF) service at h ttp://www.contoso.com for a law enforcement agency. The agency ...
1
vote
1answer
1k views

Custom binding: The provided URI scheme 'https' is invalid; expected 'http'. Parameter name: via

I have looked all over stackoverflow and internet, still can't find a solution for this I have set up a custom basichttpbinding with a 'https' endpoint. when I call the method, it kept return me ...
0
votes
2answers
1k views

BasicHttpBinding with TransportWithMessageCredential and clientCredentialType=“Windows”

I am using this binding configuration on client and server: <basicHttpBinding> <binding name="BasicHttpBinding_IService1"> <security ...
0
votes
2answers
1k views

C#: Configuration.GetSection(“basicHttpBinding”) not reading that section from app.config file

I have the following property: protected BasicHttpBinding Binding { get { var config = ConfigurationManager.GetSection("basicHttpBinding") as ServiceModelSectionGroup; ...
0
votes
0answers
1k views

How to read basicHttpBinding defined in app.config file

I'm trying to figure out how to read how to read basicHttpBinding section defined in app.config file. I attempted to do it like I did the endpoint address but it does not work. Here is how I did my ...
0
votes
0answers
153 views

Soap Negotiation Exception with BasicHttpBinding

I have a wcf client/server application that I'm trying to get deployed at a client location. I believe it's a cross-domain issue, as we've deployed it successfully on the same computer. I'm ...

1 2 3 4