Tagged Questions
0
votes
0answers
8 views
How to flow client transaction to a service but use it only for specific code
I have the following requirements with my WCF service :
The client must initiate a transaction and flow it to the service.
The client must throw an exception if a transaction is not found.
The ...
0
votes
0answers
33 views
System.Transaction over zealous row locking?
I've got a .NET 3.5 web app that calls one of our WCF services to update a row and then create a new row based on that updated row, the problem is that the creation of the new row is made on a ...
1
vote
2answers
136 views
NetMsmqBinding: messages are being processed multiple times
My team has a windows service which host a wcf service using http binding. When the wcf service receives a message, it immediately sends it to another wcf service, using NetMsmqBinding, also hosted in ...
0
votes
2answers
358 views
Calling WCF service method from transaction scope
I have code like:
using (TransactionScope scope = TransactionScopeFactory.CreateTransactionScope())
{
*// some methodes calls for which scope is needed*
...
...
...
8
votes
1answer
338 views
How can I implement WCF Transaction support on custom class using CoreService?
I wrote a class to assist in adding & removing Destinations to a Publication Target using the Core Service. Destinations are normally exposed as a string (with XML content) via the Core Service, ...
2
votes
1answer
211 views
Best way to handle transactions dealing with stored procedures, Entity Framework within WCF?
Here's the big picture:
Within our new SOA based information system, we need to build several WCF services. Those services' main goal will be to handle business transactions.
Let's have an example:
...
1
vote
1answer
96 views
Do WCF support Asynchronously operations' invoke within TransactionScope?
I am trying out the WCF Transaction implementation and I come up with the idea that whether asynchronous transaction is supported by WCF 4.0.
for example,
I have several service operations with ...
0
votes
1answer
118 views
Multiple TransactionScope - fetches outdated information
This post is somewhat related to this post of mine:
How to synchronize database access in a WCF Service?
The responses I got there were over-complicated and \ or contradicting ... :(
I have created ...
1
vote
1answer
210 views
NHIbernate IHttpModule and TransactionScope
Just wondering what other's thoughts are on using a TransactionScope in an IHttpModule.
For example:
BeginRequest
//start new TransactionScope
// start UOW
// Begin UOW transaction
// do some ...
2
votes
1answer
151 views
Transactionscope and webHttpBinding
I have a WCF REST service. I would like to write integration tests for the operations. I was thinking to write those by using HttpWebRequest (as described in Why does my C# client, POSTing to my WCF ...
0
votes
1answer
266 views
Transaction scope wcf and avoid unwanted Escalation to Distributed Transactions
i have problem with escalation distributed transactions in wcf application.
My code looks something like this :
LogRepository
public void AddLog(ImportLogDbo log)
{
using (DbManager ...
1
vote
1answer
295 views
Does Castle Automatic Transaction Management create TransactionScope for Transactional methods?
I've got an app which should access its DB (via NHibernate) and perform web service calls (via WCF) in a single distributed transaction (which is propagated to called web services via WS-AT). For now ...
0
votes
1answer
902 views
Issue in Transaction Scope inside WCF
In my Project, DAL Is WCF service .Net4.0. using database oracle 11g. I am using transaction scope in WCF(server side).
I have to call more than one Stored procedure inside the method(operation ...
0
votes
1answer
361 views
Unwanted promotion using TransactionScope
I have a system written in C#.net 2.0,sql 2005 where the business layer and Data access layer are already created and uses MSDTC transactions. The connection creation and opening,closing etc are ...
1
vote
2answers
314 views
Database doesn't update using TransactionScope
I have a client trying to communicate with a WCF service in a transactional manner. The client passes some data to the service and the service adds the data to its database accordingly. For some ...
0
votes
1answer
745 views
WCF Transaction Scope SQL insert table lock
I have two services talking to two different Data-stores (i.e SQL). I am using transactionscope:
eg:
using(TransactionScope scope = new TransactionScope())
{
service1.InsertUser(user);//Insert ...
1
vote
2answers
2k views
Calling WCF with netMsmqBinding inside TransactionScope stopping transaction
I have a WCF logging service that runs operates over MSMQ. Items are logged to a Sql Server 2005 database. Every functions correctly if used outside a TransactionScope. When used inside a ...