Tagged Questions

7
votes
3answers
626 views

MSMQ wcf activation issue with .net 4.0 and server 2008

I have .net 4.0 application ported from net 3.5 that uses net.msmq running on server 2008 x64 Setup net.msmq Service with address "net.msmq://localhost/private/msmqdataservice.svc" net.msmq ...
2
votes
4answers
1k views

What WCF binding is most performant?

I have to get the maximum throughput performance in my WCF service. In one of my tests the service below got only 50k data items per minute using NetTcpBinding. Would a disconnected binding like ...
0
votes
1answer
26 views

Is there a way to set AdministrationQueue property when using net.msmq (MSMQ) binding on WCF?

We are are thinking how to monitor MSMQ queues that are used from WCF services (with net.msmq binding). Searching for alternatives like Journals, triggers or Administration queue, the last one seems ...
0
votes
0answers
49 views

WCF MSMQ binding , calls getting block

I am using WCF netMsmqBinding. My application runs 24x7, and it pick calls from msmq and insert it in database. After around 20,000+ inserts due to some database issue(I am using Nhibernate), call ...
0
votes
1answer
96 views

Random MSDTC exception with WCF over MSMQ

We have a service that is performing WCF calls over MSMQ using the NetMsmqBinding. Unfortunately we're seeing a random (every few days after thousands of calls) AccessViolationException coming out of ...
0
votes
1answer
49 views

why doesn't server.connect() work when server.create() does?

In setting up a simple streaminsight app, I am running into the issue where server.create() works and server.connect() fails. I am not sure what could be a potential cause. EDIT: Source code here: ...