Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

WCF comet and threads

I'm trying to use WCF to implement a comet style server push to an ajax web application. In my WCF service, I've implemented a WaitForEvents method that calls Monitor.Wait to suspend the thread until ...
7
votes
2answers
6k views

WCF readerQuotas settings - drawbacks?

If a WCF service returns a byte array in its response message, there's a chance the data will exceed the default length of 16384 bytes. When this happens, the exception will be something like The ...
6
votes
1answer
263 views

Which collection type should I use for best performance?

While setting WCF client service configuration, there is an option "collection type" which defaults to "System.Array". If I change it to "Generic List", is there any performance loss?
5
votes
2answers
226 views

WCF client causes server to hang until connection fault

The below text is an effort to expand and add color to this question: How do I prevent a misbehaving client from taking down the entire service? I have essentially this scenario: a WCF service is up ...
5
votes
4answers
5k views

WCF Binding Performance

I am using basic HTTP binding. Does anybody know which is the best binding in terms of performance as thats the key issue for our site?
5
votes
4answers
4k views

Renewing a WCF client when SCT has expired?

I am using WCF to a soap endpoint using security mode "TransportWithMessageCredential". The WCF client/server uses SCT (Security Context Token) to maintain a secure connection, and it is working as ...
4
votes
3answers
2k views

WCF Service Layer in n-layered application: performance considerations

When I went to University, teachers used to say that in good structured application you have presentation layer, business layer and data layer. This is what I heard for more than 5 years. When I ...
4
votes
1answer
591 views

What are the internal limits to WCF

WCF has lots of limits imposed on it to protect against DoS attacks and other developer brainlessness. What are these limits? And how can they be overriden? Specifically, if I was to try to send a ...
3
votes
0answers
132 views

Base64 line-breaks causing huge performance hit in Visual Studio

I have two different types of WCF clients in my test environment sending a file to the WCF service using an operation like the following over basicHttpBinding: void SendFile(string filename, byte[] ...
3
votes
3answers
758 views

Why it's so slow when a wcf client connects to the service?

I met a performance issue when using the WCF service. Here's the story: I wrote a self-hosted WCF service which is hosted by a console application; I wrote a simple client to consume the service; ...
3
votes
5answers
2k views

Very slow performance deserializing using datacontractserializer in a Silverlight Application

Here is the situation: Silverlight 3 Application hits an asp.net hosted WCF service to get a list of items to display in a grid. Once the list is brought down to the client it is cached in ...
3
votes
2answers
2k views

Using WebServiceHostFactory Pros & Cons

When hosting a WCF service on IIS you have an option of manually configuring the endpoint or declaratively by means of WebServiceHostFactory. It doesn't seem to be that difficult to manually create ...
2
votes
1answer
445 views

How to achieve maximum callback throughput with WCF duplex channels

I have setup a basic WCF client/server which are communicating via Named pipes. It is a duplex contract with a callback. After the client "subscribes", a thread on the server just invokes the ...
2
votes
1answer
664 views

Performance tuning a WCF with netTcpBinding

We have a WCF service consumed by an ASP.NET application which is not where we would like it to be with the speed. The slowness is seen at the networking level, not in the processing. So for example ...
2
votes
1answer
894 views

What are the benefits for several servicehosts? Does one ServiceHost support several simultaneous connections on one endpoint?

I'm thinking of self-hosting my WCF service instead of using IIS. A big question for me is whether I need to instantiate multiple servicehosts as IIS does or one wil be enough. Do muptiple ...
2
votes
2answers
717 views

Is there any way to profile performance of a WCF Application?

We're trying to measure performance of our system, which is a .NET 3.5 application that uses WCF calls. Problem is until now, we weren't able to profile the methods inside these calls. A winforms ...
2
votes
4answers
1k views

How can I enable WCF logging so that it writes to a Database?

I'd like to be able to log message information in a database, and I'm trying to decide how best to do that. Is it possible to configure the WCF logging mechanisms to write to a database instead of a ...
2
votes
1answer
512 views

WCF Service Throttling settings

Can anyone point to some good atricles on WCF Service Throttling settings to improve performance. I have a per call service with approx 100 users
2
votes
1answer
499 views

Why does my client send request so slowly?

I have WCF client to send request to a service. And my business code call the client API to send 300+ requests per second. But my client only sends about 50 to service according to te performance ...
2
votes
1answer
572 views

Sending WCF messages being delayed under load

When sending messages from a self hosted WCF service to many clients (about 10 or so), sometimes messages are being delayed significantly longer than I'd expect (several seconds to send to a client on ...
2
votes
2answers
360 views

NetNamedPipe: varying response time when communication is idling

I have two WCF apps communicating one-way over named pipes. All is nice, except for one thing: Normally, the request/response cycle takes zero (marginal) time. However, if there was a time span of, ...
2
votes
1answer
3k views

WCF performance net.tcp versus namedpipes

What the performance benefit is of switching from net.tcp to named pipes binding? Asking since we have had some problems getting named pipes to work, and therefore wondering if it is worth the ...
2
votes
2answers
312 views

Performance penalty to running multiple service hosts?

Following on from this question: http://stackoverflow.com/questions/334472/run-wcf-servicehost-with-multiple-contracts Are there any performance penalties from running multiple service hosts as ...
2
votes
3answers
4k views

Does WCF optimize the client's connection under the hood?

We are currently working on an application that will use a WCF service. The host (the client) is using the excellent WCF Service Proxy Helper from Erwyn van der Meer. What I would like to know... is ...
1
vote
0answers
67 views

Best way to performance monitor for Web services

I would like to monitor web services. I would like to see which methods got called the most and number of bytes sent from a web services. The service is hosted on IIS 7. are there any performance ...
1
vote
1answer
182 views

WCF - factories and channel objects - how to create for better performance

I just want to make sure I'm following the right approach. In my application for particular service I have one static ChannelFactory (as it's instance thread safe), and every time I need to comunicate ...
1
vote
2answers
110 views

MaxConcurrentSessions is by default 10 or 100*processors

http://msdn.microsoft.com/en-us/library/ms731379.aspx says value of maxConcurrentSessions is by default 10 where as ...
1
vote
1answer
139 views

WCF architecture: using callbacks, events, 2x service-client?

I have my main application installed (ServerApp) on a LAN server (which is behind a firewall, so the server can access the internet but it cannot be accessed from internet directly (No static IP)), ...
1
vote
1answer
293 views

Huge Performance Difference when Same Task is Executed in Self-Hosted WCF and in MVC

I have created a Custom ThreadPool which Accepts Jobs from Client, Processes it and Returns the Results. Currently this is running in MVC Application. Where User Uploads the Job to be done using a ...
1
vote
1answer
1k views

WCF Performance Slow for the first call

I have a WCF service installed on IIS7. I noticed that the first call to my service is always very very slow. The subsequent calls are much faster & acceptable. If there are no calls made to the ...
1
vote
2answers
244 views

WCF service monitoring

I am writing WCF service hosted in WinForms application. Is there some way to monitor performance and statistics(count of instances, count of calls to endpoints, duration of calls, etc...) about ...
1
vote
2answers
224 views

WCF Connection faults at DataSet return values

i am working on an intranet application which should able to control sub-applications. As part of the application i want to read the logs of the sub-applications. the sub applications are keeping the ...
1
vote
0answers
116 views

WCF service timeout when not started yet

I have a WCF service that I am self-hosting. It was working fine apart from being slow when the InstanceContextMode was set to PerCall. (the constructor is quite heavy so that makes perfect sense) I ...
1
vote
5answers
6k views

WCF Protocol Exception

We are getting some weird behavior from a service we have deployed on a remote system which we are using to access and post data to. Retrieving information from the service doesn't seem to be an ...
1
vote
1answer
106 views

How do you determine the values in a binding?

I have defined a binding that I use to connect to two different services. One I call my Master service that provides configuration information to my program and tells it which Local service to ...
0
votes
1answer
46 views

Poor WCF performance when running on a VM

I'm working on a self-hosted WCF application which runs just fine on my PC; however, when I try running it on a VM hosted locally using VMware Player, the service takes some two minutes to return ...
0
votes
0answers
105 views

WCf Data Service Performance. Query VS Service Operation

My applicattion consumes data from a self hosted (in IIS7) WCF DataService in both ways. In the first way, by the OData query, like this: DataServiceQuery<Businesses> _query = ...
0
votes
2answers
66 views

Reading too many rows using WCF [closed]

Best way to manage user requests for reading too many rows from a table in database by using a WCF service call I mean what is performance tips what is the best way?
0
votes
0answers
55 views

NetTcpBinding with WSASend in WCF

We use NetTcpBinding to transfer large binary files from the WCF service to clients in the form of a series of callbacks. In hopes of speeding up the transfer times, does anyone know if WSASend() can ...
0
votes
1answer
60 views

Upgrading my self hosted WCF service from 3.5 to 4.0 Slowed down the stratup of the service on system boot

In My winform application I have implemented self hosted WCF service accessible only on LAN. Previously my app was in framework 3.5, now I have migrated to 4.0. My application is ment to start on ...
0
votes
1answer
259 views

WCF Operation Performance Counters

I want to use wcf performance counters per operation , like here: http://msdn.microsoft.com/en-us/library/ms731052(v=vs.90).aspx how can I add them to perfmon of windows service 2008 ?
0
votes
1answer
100 views

How can I test multiple fake users accessing my WCF service?

I'm building a WCF service I'm concerned about performance and scalability. In order to test multiple users accessing my WCF Service, what should I do? create a Thread Pool to run separated threads ...
0
votes
1answer
252 views

Set username credential for a new channel without creating a new factory

I have a backend service and front-end services. They communicate via the trusted subsystem pattern. I want to transfer a username from the frontend to the backend and do this via username credentials ...
0
votes
1answer
32 views

Windows Workflow runs very slowlyh on my DEV machine

I am developing an app using WF hosted in IIS as WCF services as a business layer. This runs quickly on any machine running Windows Server 2008 R2, but very slowly on our dev machines, running ...
0
votes
1answer
161 views

Get Number of active service instances?

Is there anyway of getting the number of active instance of the service I've tried adding a static int counter in the constructor and this works and implemented Idisposable to decrement the counter on ...
0
votes
4answers
696 views

What counters (PerfMon) to add to find performance issues in a C# WCF web service?

I am looking into Performance issues of an Asp.Net 2.0 Web Site which uses a WCF service. On the Web and the WCF Host Service I am adding some Perf Counters to analyse the application behaviour. What ...
0
votes
1answer
119 views

WCF writing directly to the response channel

is there a way to write ( a string for example ) directly to the output stream, when implementing a regular WCF interface like this: [ServiceContract] public interface ISearchInterface { ...
0
votes
1answer
76 views

WCF: Efficiently consuming large numbers of singleton requests via SQL job?

I'm planning to build a console app to run as part of a SQL 2005 job which will gather records from a database table, create a request object for a WCF service, pass this object to the service for ...
0
votes
1answer
270 views

WCF Trace and Performance

I just wonder is there is sensible explanaition to such an issue: I have turned on trace on WCF Console host. When I analyze that trace, I can see that individual activities duration is maximum 4 ...
0
votes
1answer
568 views

WCF Http to Tcp Proxy

I have a number of WCF services on my internal network which are hosted by IIS 6 using the basicHttpBinding. There are several existing applications which use these services by using the dynamic ...

1 2