Microsoft KB Archive/246825

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 13:50, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


How to configure a COM+ application for queued components

Article ID: 246825

Article Last Modified on 7/15/2004



APPLIES TO

  • Microsoft COM+ 1.0



This article was previously published under Q246825

SUMMARY

This article provides steps for configuring your component as a COM+ queued component.

MORE INFORMATION

To configure a component as a COM+ queued component, follow these steps:

  1. Install the component in a COM+ application.
  2. Navigate to the component's interfaces. Select the interface you want to enable for queuing, right-click on the component and select Properties.
  3. Select the Queuing tab and select the Queued attribute. (If the attribute is disabled, see below for more information).
  4. Select OK to close the Properties window.
  5. Navigate to the COM+ application your component is in. Right-click on it and select Properties.
  6. Select the Queuing tab and select the properties for Queued and Listen.
  7. Select OK to close the property sheet for the application.

Now you can call your objects using Queued Components.

If your interface happens to have the Queued attribute disabled check that it doesn't have any functions with OUT parameters, or any Function, Property Get method or ByRef parameter (which is the default in Visual Basic). Since the queued function calls should be "one way', interfaces that return values back are not allowed for queuing.

There are more settings you can specify for your objects which will set the way they handle exceptions or errors. See the "References" section for more information.

REFERENCES

For more detailed information about Queuing exception handling and other issues, see the Queued Components documentation on the following MSDN Web site:


Additional query words: QC COM+ VB

Keywords: kbhowto kbcomplusqc KB246825