Questions tagged [mts]

Microsoft Transaction Server (MTS) was a COM-based transaction processing system for developing, deploying, and managing network applications.

Microsoft Transaction Server (MTS, sometimes abbreviated MTx) was a COM-based transaction processing system for developing, deploying, and managing network applications. The main services provided by MTS were automated transaction management, instance management and role-based security.

MTS was released as an add-on to Windows NT 4.0 as part of the NT 4.0 Option Pack. Starting with Windows 2000, new features were added to MTS and the product was renamed COM+.

MTS reference material is located at the Technet archive under Transaction Server.

MTS transactions were reliant on the Microsoft Distributed Transaction Coordinator (DTC).

http://technet.microsoft.com/en-us/library/cc750082.aspx

15 questions
6
votes
1 answer

Differences between .NET application servers vs. Java application servers

I'd like to better understand the reasons for .NET's application server model compared to that used by most Java application servers. In most cases I've seen with ASP.NET web applications, business logic is hosted in the web server's asp.net hosts…
Howiecamp
  • 2,981
  • 6
  • 38
  • 59
4
votes
1 answer

Telnet:WiFi with Telnet-Strange Result while connected

Few days ago I bought a new MTS Wi-Fi Dongle, today while using it, I did a port scan on 192.168.1.1 using my Android device and surprisingly port 23(telnet) was open. After typing telnet 192.168.1.1, below was the result on window of…
Angad Singh
  • 1,032
  • 1
  • 17
  • 36
3
votes
1 answer

Managed and unamanged code updating the DB within one Transaction?

Within C#, I have an OracleConnection that updates the DB, and a reference to a legacy VB6 DLL which the C# calls into to update the DB (within the DLL, it uses an ADODB.Connection object). I need to wrap them both in one big transaction, so that…
TimH
  • 1,012
  • 1
  • 14
  • 24
2
votes
1 answer

ASP, Server.CreateObject, MTS and C# object pooling -- a reuse problem?

I'm trying to debug an "occasional" problem. We've got a classic ASP application that needs to send email. For whatever reasons it's using a C# object exposed via COM to do this send; the c# object is a simple wrapper around MailMessage and…
Walden Leverich
  • 4,416
  • 2
  • 21
  • 30
2
votes
2 answers

Is there Microsoft Transaction Server explorer on Windows 7 Ultimate?

I need to "create packages and deploy components using MTS" for a higher national diploma course (BTEC). Can this be done with Windows 7 Ultimate and VB6? I realize this feat may be outdated but I have no say in the syllabus and I can't find…
mtanti
  • 794
  • 9
  • 25
2
votes
1 answer

How to find out oramts for oracle 12c is installed using registry entry in windows 2008r2 server?

We are using a custom setup program to do our installation. For our application to run we need oramts installed, before we install the application we do a prerequisites test to check if we have all the required components installed. With the earlier…
srivatsa6065
  • 365
  • 1
  • 5
  • 9
1
vote
1 answer

What can be used for a .net application to control video files (especially mts and m2ts)?

I am trying to build an application which will be used for analysing video files; pause, play, slow forward/backward, go to time and get time. I am trying to use MediaElement for Wpf. But it does not support slowing down the movie for some file…
spinodal
  • 4,007
  • 3
  • 29
  • 38
1
vote
1 answer

vb6 why do I want unattended execution and retained in memory set?

14 years ago when I was a green horn, setting up the components for classic ASP was not in my pay grade... Now however, I have gone back to the future and I find myself having to maintain and code against a classic ASP project using a COM…
webdad3
  • 8,893
  • 30
  • 121
  • 223
1
vote
1 answer

Variable shows values but str shows NULL in r. How to check structure of such variable?

require(MTS) rt=rnorm(200) b<-archTest(rt, lag = 10) This code results in the values Q(m) of squared series(LM test): Test statistic: 7.694531 p-value: 0.6586466 Rank-based Test: Test statistic: 20.80503 p-value: 0.02249487 But when the…
gaurav kumar
  • 859
  • 2
  • 10
  • 24
1
vote
1 answer

What is the difference between deploying to com+/MTS using regsvr32?

We have a legacy VB6 component that was com+/MTS and is used by asp classic. Staff is having trouble with deployment. Would there be any harm in just using regsvr32 to register the DLL, which will be used by IIS? Alternatively---I won't touch COM+…
MatthewMartin
  • 32,326
  • 33
  • 105
  • 164
0
votes
0 answers

Transaction error when connecting to Oracle 19c with Oracle.ManagedDataAccess

When connecting to some databases, I get the following error message when opening a connection. The caller is a TransactionScope. From the app: MTSRMManager.CCPEnlistDistributedTxnToSysTxn(OracleConnectionImpl connImpl, Transaction txn, MTSTxnRM…
Vincent
  • 510
  • 1
  • 5
  • 23
0
votes
1 answer

com+ application export problem. application proxy disabled

I have a com + application which I want to export as proxy. The problem is that when I open the export wizard, the "Application proxy..." radio box is disabled. Any idea? Thanks
Itay.B
  • 3,991
  • 14
  • 61
  • 96
0
votes
1 answer

How to split a array to several based on create date and modified date of .MTS video files

i want to make automatic create folder based on Regularity of current fodler's MTS video files. i could get some right info by declare -a CreateArray10digits=$(stat -f "%B" * | cut -c1-10) declare -a ModifiedArray10digits=$(stat -f "%m" * | cut…
cool jobs
  • 103
  • 9
0
votes
0 answers

VB6 COM+ Out of Memory Issue

We have a ASP.Net web application which runs on .Net framework 4.0. Architecture is like, .Net Module --> VB6 COM+ Data Object --> VB6 COM+ Calculation Module --> 3rd party COM+ Finance Factory (installed COM). End user uses this application to…
Sri
  • 11
-3
votes
1 answer

Java Adapter .mts Parsing

I am trying to write an adapter to parse data from an mts file and I don't know where to start the adapter should create virtual tables with the metadata and filter it whenever it recieves a SQL statement to do so. the mts file raw data has keys for…