RE: How to call queued component from VBScript?



Hi Lzorich,

As for .NET created COM+(the serviced component), it can be consumed like a
normal COM object. You need to first deploy it and register it into the
Component services on the server. .NET framework has provided the tools to
do it(the regsvcs tool).

The following knowledge base article provided a simple example:

#HOW TO: Create a Serviced .NET Component in Visual C# .NET
http://support.microsoft.com/kb/306296

the test code it uses to call the component is also vbscript like:

============
set o =createobject("ServicedCOM.SimpleTrans")

MsgBox o.DoTrans()
=================

In addition, I found this code project article which mentioned calling .NET
com+ from classic ASP(script based), I think it will also helpful to you:

#.Net COM+ Interop Component with Classic ASP (Part I)
http://www.codeproject.com/KB/vb-interop/Net_COM__Interop.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@xxxxxxxxxxxxxx

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.




--------------------
From: <Izorich@xxxxxxxxxxxxx>
Subject: How to call queued component from VBScript?
Date: Thu, 24 Jul 2008 10:58:58 -0700


I'd like to create a simple VBScript to invoke a queued COM+ component
written in .NET and I have no idea how to do that. How can one do that?

While we are on the topic here are related questions:
1. How do I invoke standard COM+ component (not a queued component) from
VBScript?
2. How do I put a message into a queue (Microsoft queues) from VBScript?



.



Relevant Pages