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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Kees
  • Order by date
  1. Kees

    How to get the calling username in a DCOM object ?

    Howdy, In VB: In a MTS enabled class: Public property Get OriginalUsername() As String Dim objCtx As ObjectContext Set objCtx = GetObjectContext() OriginalUsername = objCtx.Security.GetOriginalCallerName Set objCtx = Nothing End Property Greetz, Kees
  2. Kees

    ASP CreateObject fails on EXE COM Object

    Howdy, I think there are some problems with rights here: An ASP page creates the object with the rights of the IUSR_<Servername> user. The VB project creates the object with the userrights of the currently logged in user. If you're reading from the registry, the IUSR_<Servername> user needs to...
  3. Kees

    How to Port COM to Production server ?

    Howdy, A COM object needs to be registred (has to have an entry in the Registry) on the computer it needs to run on. The code in an ASP page is run on the server, so the COM object needs to be registred on the server. Only when you're behind a console of this server you can register the object...
  4. Kees

    MTS Component instance not getting destroyed.

    Howdy,<br><br>Unfortuniately I have to disagree with Nikolay: the object you created still exists indeed (Object Pooling is NOT, I repeat NOT implemented in MTS v2.0!!!!!! (you can find this in the helpfile of MTS v2.0 SP1)<br><br>I think the problem you have is that not all objects created in...
  5. Kees

    Can I Specify Max No of Objects To Be Created By MTS

    Howdy,<br><br>In the MTS 2.0 Helpfile under 'Object Pooling and Recycling':<br>&quot;...<br><br>Important&nbsp;&nbsp;Object pooling and recycling is not available in this release. MTS calls CanBePooled as described here, but no pooling takes place. This forward-compatibility encourages...

Part and Inventory Search

Back
Top