el metodo en el cfc se ve de la siguiente forma:
<cffunction name="setUserInformationCookie" access="remote" returntype="boolean" output="true">
<cfargument name="username" type="string" required="yes">
<cfargument name="password" type="string" required="yes">
<cfcookie name="USERNAME" value ="#Arguments.username#" expires="never">
<cfcookie name="PASS" value="#Arguments.password#" expires="never">
<cfreturn true>
</cffunction>
el detalle es que no me guarda el cookie, cuando intento recuperarlo
<cffunction name="getUserAndPasswordFromCookie" access="remote" hint="Return Username and AccountId" returntype="struct">
<cfscript>
theReturn=StructNew();
theReturn.UserId= Cookie.USERNAME;
theReturn.Password= Cookie.PASS;
</cfscript>
<cfreturn theReturn>
</cffunction>
me da el error de
Element USERNAME is undefined in COOKIE.
parece quen o la guarda y no se que pueda ser. Alguien tiene alguna idea? que me pueda ayudar porfavor!
saludos
