0
votes
1answer
23 views

Enable Windows Authentication to AJAX Enabled WCF service in Firefox not woring

My website Windows Authentication and Anonymous Authentication enabled and database connection string is also windows authentication (based on user login). I called AJAX-Enabled WCF Service and it ...
0
votes
0answers
19 views

IIS 7.0 WCF Web Config Error

I created WCF Service Application in Visual Studio, copied the DLL's to IIS and all was working fine - I could connect to the service with a client. I have made changes to the Web config file to use ...
0
votes
1answer
68 views

Host WCF in IIS

Hello all you smart people. So, I've dared to make myself a WCF-service. It works as is should, when i run it in the WCF testing utility. But with the next step I've run into some troubles. Hosting ...
0
votes
1answer
14 views

maximum message size quota exceeded, why is that?

I have a web service which I am testing with WcfStorm. When calling a function which my service exposes I keep getting the error "The maximum message size quota for incoming messages (65536) has been ...
4
votes
0answers
45 views

ServiceHostFactory.CreateServiceHost is called multiple time WCF

I have a wcf service which hosted at IIS <%@ ServiceHost Language="C#" Debug="true" Service="MyService" Factory="InitializableServiceHostFactory" %> my problem is that the CreateServiceHost ...
0
votes
1answer
42 views

IIS default datetime format

We have a WCF web service returns back some xml containing a datetime value as a string. The value is first read out from a database and then appended to an xml string using .ToString(). We have a ...
0
votes
2answers
41 views

IIS WCF Config: service only uses default behavior

I am learning about WCF deployment in IIS and I have found something strange. Basically my service only uses the default behavior regardless of how I set the behaviorConfiguration attribute of ...
-2
votes
1answer
15 views

wcf data sevice can work on iisexpress, but not in iis

I wrote a very simple WCF data service. But I find that can't work when I deploy on IIS7.5. It just only can work on IIS Express. [System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = ...
0
votes
1answer
23 views

WCF REST service hosted in Windows service not working without IIS installation

I have developed a REST service using WCF and hosted it in a windows service and that works fine on a machine which has IIS installed, but not on a machine which does not have IIS. On the machine ...
1
vote
3answers
63 views

Does Windows Identity Foundation (WIF) Require IIS? (Rather than Development Server)

I need to know if developing a Windows Identity Foundation (WIF) solution requires IIS installed. I would like to be able do develop a WIF solution using the built-in Visual Studio Development Server ...
0
votes
1answer
27 views

WCF Service and Concurrency

I have a driver that I need to access via a web site that is not thread-safe. Since many people can be on the site at a given time I figured I would create a WCF service that would handle all the ...
0
votes
1answer
69 views

How to send data to and from ASP.NET 4.0 website and C# WCF (Web Service)

I am wondering - in my ASP.NET 4.0 website how to connect to the web service I have running? This is essentially what I would like to accomplish, for testing before I apply it on a larger scale. I ...
0
votes
2answers
34 views

How to host Windows Service (like) in IIS

How to host a Windows Service in IIS and keep that service runing like it is running on Windows? Could I use some feature from WCF service? I've not access to the Windows itself, only to IIS. Inside ...
0
votes
2answers
100 views

WCF Error - Method Not Allowed

When running the WCF test client and debugging the WCF service locally, everything works fine. After I deploy it to IIS on a remote server and then try loading it with the WCF test client I start ...
0
votes
0answers
29 views

.NET Memory Cache 4.0 performance counter showing phantom cache entries

I've been monitoring a WCF API service, that's installed on 2 of our servers running under IIS 7.5, using the .NET Memory Cache 4.0 "Cache Entries" performance counter, and I happened upon some ...
0
votes
1answer
39 views

WCF services couldn't read configuration file

I have created some WCF services in class library. These services need some configuration values to work properly. So i added these configurations to the web.config file after deploying the services ...
2
votes
1answer
39 views

.Net Web Application app startup workflow for IIS

Okay, so let's say I have a web application that absolutely has to perform some kind of startup and has to remain running indefinitely regardless of the communication it receives from the clients (as ...
3
votes
3answers
77 views

AppDomain.CurrentDomain.UnhandledException does not get called

I have a WCF service that has the following code in Global.asax: protected void Application_Start(object sender, EventArgs e) { // Make sure that any exceptions that we don't handle at least get ...
0
votes
0answers
140 views

Visual Studio 2010 Add Service Reference (WCF) “Proxy Auth” (407)

I'm having an issue adding a service reference to a sample client project using .NET 4.0, VS2010 and WCF. The WCF service is deployed to IIS (6 at present) and I can browse the WSDL exposed by the ...
0
votes
0answers
64 views

MVC4-WCF - async loading of data from 3rd party

I'm setting up a server-client solution with ASP.NET MVC4 and a WCF-service, and was thinking you might have some input to a couple of questions. The WCF-service get its data from a 3rd-party service ...
0
votes
0answers
54 views

Deploying local WCF service using Powershell

I have a wcf service with multiple endpoints which I would like to deploy locally using powershell. Does anyone know how I would go about this? Additional functionality - Only deploy specific ...
0
votes
0answers
48 views

WCF Web service is not working when i access it from other server. Its working fine on same machine and 2 other server

I have wcf web service to get total unread messages. this web service is not working when try to access it from another machine. However it work for same machine and also 2 other machines. Below is ...
0
votes
0answers
20 views

A WCF project that works on Windows 7 fails with a 404 Error on Windows 8

Hi everyone and thank you for taking the time to consider my problem. I have a JQuery/ajax/WCF project in Visual Studio 2012 that has run just fine on my Windows 7 / IIS 7.5 environment and the same ...
2
votes
2answers
26 views

IIS Manager displays a stopped service as started and prevents me from starting it

My IIS service is stopped. However, according to IIS manager the service status is 'started'. Therefore I cannot start it because the "start" option is off. When trying to stop or restart the service ...
3
votes
1answer
30 views

Renaming a WCF service hosted on IIS

I have renamed a WCF service and everything works just fine on my test/development environment. However, the service is not accessible on my production environment, which is IIS. When trying to access ...
0
votes
0answers
59 views

MSMQ messages are not getting processed by the WCF service

I have a WCF service which will fetch messages from MSMQ and inserts data from that message to a database, it was working well until i received a message of size 9 KB and more. I have debugged and ...
0
votes
0answers
30 views

Assemblies not loaded in time for WCF host

We're encountering a strange issue with a WCF application startup. We have some custom initialization that needs to be done (setting up IoC container, retrieving settings from db, etc) before the ...
0
votes
2answers
31 views

Mix SSL with client certificate and without client certificate in one application pool

Is it possible in WCF to have an endpoint with SSL and a client certificate and an endpoint with another contract with SSL and without a client certificate within the same application pool in IIS? If ...
2
votes
0answers
58 views

WCF Service proxy creation error from remote server

I have a WCF Service hosted in a Windows XP machine with Visual Studio 2008. When I am trying to browse the wcf service from local machine it is behaving perfectly alright. When I am trying to add the ...
0
votes
0answers
37 views

Error while consuming WCF from class library from an application deployed on IIS 7.5

I am new to WCF services and getting an Error while consuming WCF from Class library, pls correct if i wrong somewhere; I m explaining my problem in steps 1.separate WCF project that is deployed in ...
0
votes
2answers
64 views

How to Host My Websocket

I have a websocket server application like the bellow. private static void InitializeSockets() { _sockets = new List(); var server = new WebSocketServer("ws://localhost:1234"); ...
1
vote
0answers
64 views

Installed WCF service with Installshield generated setup Error

I've just generated the installer for a WCF Service and I'm trying to use: The structure installed at the wwwroot is the following: http://bit.ly/11zZ85E In the bin folder are included all dlls in ...
0
votes
1answer
44 views

WCF service doesn't connect after publishing

I receive a HTTP 400 Bad Request from the server, using Fiddler2 I can see that the reason is The server encountered an error processing the request. The exception message is 'Access is denied.'. ...
0
votes
1answer
42 views

WCF service as internal and internet exposed on different servers

I have to distribute several applications in 2 servers. Currently both servers have public IPs and they can be accesed across internet requests. Both servers are hosting several Web Applications. Now, ...
3
votes
2answers
48 views

How do I set the user identity for tasks when calling Task.WaitAll()?

I'm having a problem invoking WCF services in parallel. I'm trying to use Tasks to invoke two services in parallel to save some time (I'm NOT trying to make this async), but my tasks are being run as ...
0
votes
0answers
26 views

IIS application - mix WS with WCF

I have a legacy server which is deployed in IIS. All calls to this server are made through the old fashioned Web service calls. Now I want to add new code in WCF. My question is how to deploy the ...
0
votes
1answer
99 views

IIS WCF net.tcp binding error

I know there are many questions about this, I'we tried them all and it didn't work... I'm using IIS8 on WS8, added net.tcp to protocols list and binding to 808 and I still get this error: ...
0
votes
1answer
71 views

FileLoadException during activation of WCF service

After deploying my WCF service in IIS, I get this error when accessing the service: Server Error in '/MyService' Application. The given assembly name or codebase was invalid. (Exception from ...
0
votes
1answer
39 views

Unable to get wsdl from service with multiple bindings hosted in IIS

I have a WCF 4.5 Service hosted in IIS7.5. The service is using netTcpBinding for Net 3.5+ clients and basicHttpBinding for Silverlight 5 clients. The address on this binding is specific ...
0
votes
1answer
41 views

IIS appears to not be authenticating my request

Okay so full disclosure I am new to IIS and WCF so I bought a book and am stuck. I can develop on my dev box at work as it is Windows 7 with IIS 7 but at home on Windows 8 and IIS 8 I believe there ...
0
votes
0answers
21 views

Multithreading IIS Issue - Enabling ISAPI

I've just started a new position about a week ago and I've been asked to investigate an issue they have had for sometime. I don't have access to the code yet as it is hosted with an outsourcing ...
0
votes
0answers
40 views

Entity Framework WCF IIS issue

I have created a WCF service and hosted in IIS. In my entity framework when using Windows authentication getting exception "underlying provider failed on Open". When it is SQL authentication or incase ...
0
votes
1answer
31 views

How do you set the maxreceivedmessagesize wcf setting in code on a wcf service with no config file that is hosted in IIS

I have inherited a project that contains a set of wcf services that is hosted in iis with no config file entries. I need to increase the maxreceivedmessagesize wcf setting. How would I do this in ...
0
votes
0answers
46 views

WCF WebGet method fires multiple times

I have a WCF WebGet method setup as follows: <OperationContract(), WebGet(UriTemplate:="/Authorise/")> Public Function AuthoriseSuccess() As ServiceResponse End Function On my local instance ...
1
vote
1answer
75 views

WCF Service. Can't host in IIS7

I have a very simple WCF service and I am trying to host it in my local IIS. I get this error all the time: HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its ...
0
votes
0answers
32 views

Web App not passing CustomProfile properties to WCF service in AJAX call

We have an IIS hosted web app that uses a custom profile provider to retain and pass authentication information. The web app has a single aspx page that hosts an ExtJS 4 MVC javascript application ...
3
votes
1answer
225 views

WCF Service Application and MVC4 Application hosted on local IIS (not express) throwing connection string erro

There are already a handful of questions out there but none seem to have gotten any attention or answers to what is causing this error, and how to fix it. Background I have created an ASP.NET MVC4 ...
1
vote
0answers
82 views

WCF Service only works when Enable 32-bit applications is true in IIS 7.5 App Pool

When running the service, everything seems to be working when that option is enabled. I've searched if there were any 32-bit assemblies running with the service with corflags and I didn't find any. ...
0
votes
0answers
70 views

Deploy WCF service on IIS 7.5 web farm

I have a WCF application which I successfully host it on multiple IIS servers separately. Following this link (http://technet.microsoft.com/en-us/library/jj129390.aspx) I managed take a step further ...
-1
votes
1answer
120 views

How to add net.tcp protocol support for IIS Express used by Visual Studio?

I'm using the default configuration of Visual Studio to host my wcf service in a development scenario. I want to add a net.tcp endpoint, but I always get an error.

1 2 3 4 5 21