I have the main methods, which I know how to call and what attributes to
pass, but that's it.
I have use oleview, but that also is not telling me much more.

interface _Export : IDispatch {
        [id(0x60030000)] HRESULT _stdcall GetCustomerDomains(
                        [in] BSTR Username,
                        [in] BSTR Password,
                        [in] BSTR CustomerAccountName,
                        [out, retval] IXMLDOMDocument2** );
        [id(0x60030001)] HRESULT _stdcall GetDomainResources(
                        [in] BSTR Username,
                        [in] BSTR Password,
                        [in] long DomainID,
                        [out, retval] IXMLDOMDocument2** );
        [id(0x60030002)] HRESULT _stdcall GetUsers(
                        [in] BSTR Username,
                        [in] BSTR Password,
                        [in] BSTR ResellerAccountName,
                        [out, retval] IXMLDOMDocument2** );
    };



On Fri, Sep 2, 2011 at 8:32 PM, Dave Watts <[email protected]> wrote:

>
> > I have a COM object I am calling with cfobject, that works fine, no
> errors.
> > however I don't seem to get any data back from it, I am expecting XML,
> but
> > if I cfdump the result it just seems to be an empty object.
> > getmetaData(object) also doesn't show me anything useful, just a bunch of
> > default java methods.
> >
> > Also cannot cfloop over the collection either, that result sin an error.
> >
> > Not really done anything with COM object before so perhaps I am
> > just missing something.
>
> The object generally won't have anything in it that you can access
> directly. You need to call the appropriate method of the object (which
> may or may not appear when you CFDUMP the object itself). Do you have
> the documentation for the object? Do you have a code sample showing
> how to invoke the object from MS environments (VB, etc)?
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online, or onsite.
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347195
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to