<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 7 - htmldocs - 00000281.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T06:13:59</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83604" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83398" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#42588" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39124" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39069" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83604">
		<title>coldfusion/7/htmldocs/00000281.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83604</link>
		<description>I agree that it would be much easier to find the information that Dinghus wants if we had it on this page, and we'll consider that for a future release.&lt;br&gt;For now, see http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00000281.htm for ColdFusion 7.&lt;br&gt;(The equivalent ColdFusion 8 Livedocs page is http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=basiconfig_32.html.</description>
		<dc:creator>halL</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2008-05-01T06:30:26</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83398">
		<title>coldfusion/7/htmldocs/00000281.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#83398</link>
		<description>Nowhere does the documentation say WHERE to put the cfc or how CF knows where to find it.  I've tried all the normal ways and it keeps telling me it can't find the component. Even hard coding the full path does not work.  This should be clearly explained in the documents.</description>
		<dc:creator>Dinghus</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-04-24T17:11:36</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#42588">
		<title>coldfusion/7/htmldocs/00000281.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#42588</link>
		<description>If you put a cfinvoke in a Dreamweaver template you must include the closing slash like this: &lt;cfinvoke stuff /&gt; or &lt;cfinvoke&gt;&lt;/cfinvoke&gt; or DW will not parse the page correctly in design view. In other words, if you do not include it, the template will be blank in design view.</description>
		<dc:creator>Xuan Mai</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-11-22T12:46:34</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39124">
		<title>coldfusion/7/htmldocs/00000281.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39124</link>
		<description>Hi davcamer, the value you have in your component attribute of the cfinvoke tag is incorrect. Try this:&lt;br /&gt;&lt;br /&gt;&lt;cfobject component=&quot;VCPTemp.Components.Installation.cfc.Installation&quot; name=&quot;myComponent&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfinvoke component=&quot;#myComponent#&quot; method=&quot;doLogon&quot; returnVariable=&quot;logonId&quot; userLogin=&quot;#FORM.txtUsername#&quot; password=&quot;#FORM.pwdPassword#&quot;&gt;&lt;br /&gt;&lt;br /&gt;The component attribute expects the name of a component or reference to a component instance.  There's an implicit invocation of components using cfinvoke and a component name, so I highly recommend the syntx above as it instantiates the component using cfobject and then access a method of the component using cfinvoke - without re-instantiating.  If you were to use more cfinvoke's on the page, you would still access the same component instance without taxing the CF server with additional instantiation.</description>
		<dc:creator>Trajik</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-09-01T08:51:34</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39069">
		<title>coldfusion/7/htmldocs/00000281.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000281.htm#39069</link>
		<description>I'm experiencing an error with this tag that seems to be a bug. The error is:&lt;br /&gt; Attribute validation error for tag CFINVOKE.&lt;br /&gt;The tag requires the attribute(s): METHOD .&lt;br /&gt; &lt;br /&gt;The error occurred in D:\CFusionMX7\wwwroot\VCPTemp\Components\Installation\cfc\FormProcessing.cfm: line 156&lt;br /&gt;Called from D:\CFusionMX7\wwwroot\VCPTemp\Components\Installation\cfc\FormProcessing.cfm: line 150&lt;br /&gt;Called from D:\CFusionMX7\wwwroot\VCPTemp\Components\Installation\cfc\FormProcessing.cfm: line 1&lt;br /&gt;&lt;br /&gt;154 : 	&lt;!--- DBLOGIC: doLogon - check the login data, and return -1 if incorrect... or userid if successful ---&gt;&lt;br /&gt;155 : 	&lt;cfinvoke component = &quot;VCPTemp.Components.Installation.cfc.Installation&quot; method = &quot;doLogon&quot; returnVariable=&quot;logonId&quot;&lt;br /&gt;156 : 		userLogin=&quot;#Form.txtUsername#&quot;&lt;br /&gt;157 : 		password=&quot;#Form.pwdPassword#&quot; /&gt;&lt;br /&gt;158 : 		&lt;br /&gt;&lt;br /&gt;But, as you can see the tag has the METHOD attribute. Using the alternative syntax involving &lt;cfinvokeargument&gt; tags produces the same error. How can I resolve this?</description>
		<dc:creator>davcamer</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-08-30T11:35:15</dc:date>
	</item>
	</rdf:RDF>

