On Wed, 19 Jan 2005 17:00:02 -0400, Matthew Drayer <[EMAIL PROTECTED]> wrote:
> Wondering if someone can shed a little light on the method of communication 
> that is employed when you use <cfinvoke component="">?  ie, let's say you 
> have a CFC connecting to another CFC in the local system -- what is the 
> transmission protocol for this operation?

<cfinvoke component="foo" method="bar" returnvariable="x">

is equivalent to:

<cfset temporaryVariable = createObject("component","foo")>
<cfset x = temporaryVariable.bar()>

Does that answer your question?

> Also, along these lines, what communication methodology/transmission protocol 
> is employed when cfinvoking a remote web service?  I know that the data is 
> transformed into SOAP, but how is it actually transmitted?

HTTP (or HTTPS if the web service URL begins with https: rather than http:).
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 5 invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191134
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to