Answered
cfobject en Application.cfc
necesita declarar cfobject en Application.cfc, pero me da el siguiente error:

en Application.cfc defino de la siguiente forma:
<cfobject component="geti_des.proc.dominioAD" name="dominioAD">
necesita declarar cfobject en Application.cfc, pero me da el siguiente error:

en Application.cfc defino de la siguiente forma:
<cfobject component="geti_des.proc.dominioAD" name="dominioAD">
You should in fact move from Application.cfm to Application.cfc. In any case, that has nothing to do with the error.
Is the component path /geti_des/proc.dominioAD.cfc valid? Try the following:
<cfif fileExists(expandPath("/geti_des/proc/dominioAD.cfc"))>
<cfinvoke component="geti_des.proc.dominioAD" method="consDominioAD" returnvariable="qDominioAD">
<cfelse>
Componente no encontrado en esta ruta.
</cfif>
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.