<?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 - 6.1 - htmldocs - tags-p43.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-25T02:04:22</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#45905" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#33914" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#27830" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#21681" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#19712" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#15963" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#14930" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10099" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10019" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5564" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5048" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4602" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4452" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4450" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3904" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3902" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2805" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2801" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#45905">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#45905</link>
		<description>If you are returning a string with the cffunction, make sure to set the output to false or characters will be added to the beginning of the string. http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=3&amp;threadid=952492&amp;highlight_key=y&amp;keyword1=cffunction</description>
		<dc:creator>RanchMan</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-03-08T16:34:34</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#33914">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#33914</link>
		<description>FYI, a developer has reported that he had a problem using cfinvoke to&lt;br /&gt;call a web service with multiple arguments, but was able to solve it&lt;br /&gt;by using cfscript instead.</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-05-24T10:00:24</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#27830">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#27830</link>
		<description>Has any one noticed that  if there is any character between CFOUTPUT or a line return and CFFUNCTION call an extra white space is added to the left of the CFRETURN value?  If I set the return value to another variable, I get the output I expect. This is what I get when I run the code below. Anyone know why this is? I can find any documentation on this affect.&lt;br /&gt;&lt;br /&gt;Some text here: THE TEST STRING&lt;br /&gt;THE TEST STRING&lt;br /&gt;Some text here:THE TEST STRING&lt;br /&gt;&lt;br /&gt;&lt;cffunction name=&quot;myFunction&quot; returntype=&quot;string&quot;&gt;&lt;br /&gt;	&lt;cfargument name=&quot;myFunctionString&quot; type=&quot;string&quot; required=&quot;yes&quot;&gt;&lt;br /&gt;	&lt;cfset whatItDoes = UCase(myFunctionString)&gt;&lt;br /&gt;	&lt;cfreturn  whatItDoes&gt;&lt;br /&gt;&lt;/cffunction&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfset temp = myFunction('the test string')&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfoutput&gt;&lt;br /&gt;Some text here:#myFunction('the test string')#&lt;br&gt;&lt;br /&gt;#myFunction('the test string')#&lt;br&gt;&lt;br /&gt;Some text here:#temp#&lt;br&gt;&lt;br /&gt;&lt;/cfoutput&gt;</description>
		<dc:creator>January26</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-02-14T11:13:33</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#21681">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#21681</link>
		<description>To return a component from cffunction, use the dot notation &quot;folder.folder.cfcname&quot;.  btw, slash &quot;/&quot; doesn't work here.&lt;br /&gt;&lt;br /&gt;&lt;cfcomponent&gt;&lt;br /&gt;&lt;cffunction name=&quot;myMethod&quot; returntype=&quot;myVersion.myPackage.myComponent&quot; access=&quot;public&quot;&gt;&lt;br /&gt;    &lt;cfset result = CreateObject(&quot;component&quot;, &quot;myVersion.myPackage.myComponent&quot;)&gt;&lt;br /&gt;    &lt;cfreturn result&gt;&lt;br /&gt;&lt;/cffunction&gt;&lt;br /&gt;&lt;/cfcomponent&gt;</description>
		<dc:creator>awetiaue</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-09-23T15:50:56</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#19712">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#19712</link>
		<description>I needed to know if we could pass more than 1 arguments and return long strings...wondered for a while, tried to search for examples for a while and then decided to give it a shot. Here is a function I used to populate a &lt;select&gt; menu:&lt;br /&gt;&lt;br /&gt;in the main program sequence, here is how I call the function:&lt;br /&gt;&lt;br /&gt;&lt;cfoutput&gt;#createoption(&quot;yan&quot;,&quot;Yankton&quot;)#&lt;/cfoutput&gt;&lt;br /&gt;&lt;br /&gt;in the function, I compare a form element called stationz with &quot;yan&quot; (or any other short form for a station). If they are equal, I return an &lt;option&gt; tag with &quot;selected&quot; property otherwise I simply return the &lt;option&gt; tag.&lt;br /&gt;&lt;br /&gt;Here goes the function:&lt;br /&gt;&lt;br /&gt;&lt;cffunction name=&quot;createoption&quot; returntype=&quot;string&quot;&gt;&lt;br /&gt;  &lt;cfargument name=&quot;whatstation&quot; type=&quot;string&quot;&gt;&lt;br /&gt;  &lt;cfargument name=&quot;propercasewhatstation&quot;&gt;  &lt;br /&gt;  &lt;br /&gt;  &lt;cfif #stationz# eq #whatstation#&gt;&lt;br /&gt;    &lt;cfreturn &quot;&lt;option value='#whatstation#' selected&gt;#propercasewhatstation#&lt;/option&gt;&quot;&gt;&lt;br /&gt;  &lt;cfelse&gt;&lt;br /&gt;    &lt;cfreturn &quot;&lt;option value='#whatstation#'&gt;#propercasewhatstation#&lt;/option&gt;&quot;&gt;&lt;br /&gt;  &lt;/cfif&gt;&lt;br /&gt;&lt;/cffunction&gt;&lt;br /&gt;&lt;br /&gt;This helped me reduce coding of 19 stations and it is going to help me for 180 more stations. I hope someone can get the idea from here and modify it to their own use.&lt;br /&gt;&lt;br /&gt;Chirag Shukla.</description>
		<dc:creator>zedfox</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-08-06T20:52:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#15963">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#15963</link>
		<description>The void entry was incorrectly removed from the list of cffunction returnType attribute values. &lt;br&gt;You can use void as a returnType attribute value for all cffunction tags except for those where the access attribute is remote. &lt;br&gt;A function that is accessed remotely, such as by a web service, must return a value; otherwise, attempts to use the function remotely will cause errors.</description>
		<dc:creator>halL</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2004-06-02T13:33:39</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#14930">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#14930</link>
		<description>The question about &quot;void&quot; return type still have no answer... I'm interested too: it's supported or not? It's deprecated? If I use it could I run into problems with newer versions of CF?&lt;br /&gt;&lt;br /&gt;I miss the &quot;history&quot; part of this tag too, like in &quot;cfinvokeargument&quot;, for example, we read: &quot;ColdFusion MX: Added this tag.&quot; Several tags in the documentation doesn't have this history information (like cfargument, cfcomponent, etc). You could review it.</description>
		<dc:creator>fstrevisan</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-05-17T13:02:16</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10099">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10099</link>
		<description>I think the information you want is available from this link: http://www.macromedia.com/support/coldfusion/ts/documents/cfmlhistory.htm</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2004-03-08T05:47:22</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10019">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#10019</link>
		<description>Does this tag available in ColdFusion 5, I am sure not after spending 4 to 5 hours.&lt;br /&gt;&lt;br /&gt;Along with the tag documentation Cold Fusion provides the versions as well on which these tag works!</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-03-07T10:23:54</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5564">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5564</link>
		<description>Got a problem with understanding returnType = a component name although I am not new to CF. Never seen it used (or didn't noticed). Could someone post an example of when to use it and how to use it?</description>
		<dc:creator>michalg</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-01-20T09:20:26</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5048">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#5048</link>
		<description>I use void all the time w/o a hitch</description>
		<dc:creator>Dross.2</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-01-09T08:20:28</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4602">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4602</link>
		<description>Is returnType=&quot;void&quot; still valid and supported? The MX doc includes it, but the MX 6.1 doc here does not  (see MX doc page http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/Tags-pt145.htm#2852457 )</description>
		<dc:creator>cfdevel</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-12-16T11:10:55</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4452">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4452</link>
		<description>Allen's comment has to do with the wording of the error message.</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2003-12-11T11:15:08</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4450">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#4450</link>
		<description>Why is that a bug?  It should be a wanted feature to have the type Integer but Allen should use type Numeric until then.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-12-11T11:03:51</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3904">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3904</link>
		<description>This has been entered as bug 53756.</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2003-11-18T08:44:47</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3902">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#3902</link>
		<description>Hey guys.  Love the livedocs.&lt;br /&gt;&lt;br /&gt;CFFunction gave me a confusing error when I tried to pass in a return type of integer: &lt;br /&gt;&lt;br /&gt;&lt;cffunction name=&quot;AddCustomer&quot; access=&quot;public&quot; returntype=&quot;integer&quot;&gt;&lt;br /&gt;&lt;br /&gt;it should say that 'integer' isn't a valid return type rather than the return type isn't of type integer.&lt;br /&gt;&lt;br /&gt;HTH,&lt;br /&gt;Take Care,&lt;br /&gt;Allen Manning, Prismix Ltd.</description>
		<dc:creator>Allen Manning</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-11-18T08:27:43</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2805">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2805</link>
		<description>For more information, see the related discussion in the Developing ColdFusion MX Applications book:&lt;br&gt;&lt;br&gt;UDFs: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/udfs.htm&lt;br&gt;ColdFusion Components: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/building.htm</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2003-10-16T08:06:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2801">
		<title>coldfusion/6.1/htmldocs/tags-p43.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p43.htm#2801</link>
		<description>here should be nice example about cffunction to use a package and component type. &lt;br /&gt;Honestly we need indepth example rather than kids plays show</description>
		<dc:creator>sanaullah</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-10-16T07:41:10</dc:date>
	</item>
	</rdf:RDF>

