Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MTS - ASP

Status
Not open for further replies.

MTSVBASIC

Programmer
Sep 16, 2002
2
PE
Hi,
I have 1 business component and 1 data component. the first calls to second.

<component><classname> <instancing> <transactional mode>
(1) COMBUSTV.CBTiendaVirtual Multiuse New Transaction

(2)COMDATTV.CDProducto Multiuse Support
(2)COMDATTV.CDCliente Multiuse Support
(2)COMDATTV.CDOrden Multiuse Support

My application is a web page ASP, when it executes:

Set objPdto= CreateObject(&quot;COMBUS04.CBTiendaVirtual&quot;)

Set rstProducto=objPdto_ObtenerOfertaProductos(Session(&quot;CadenaConexion&quot;)) <(line 55)THIS LINE has an ERROR>

and return into the ASP page with this message:

error '8004e00f'
/TiendaVirtual04/Principal.asp, line 55



My server:
Windows NT4
MTS 2.0

Components was developed and compiled in dll file with VBasic 6.0 and registered into package in MTS.

Thanks for your help
PD: I'm sorry, my english is not good, but I hope you understand me

Kimera

 
The error message said:
error '8004e00f'
/TiendaVirtual04/Principal.asp, line 55

But it was corrected loading MS DTC Service in the server.

Thanks

Kimera
 
Error 8004e00f means that COM library cannot talk to MSDTC. That could happen when MSDTC is not running.

Hope this help,
Mitko Andonov
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top