Hi...
I m newbies to CF.. .. ..
currently, i facing some issue regarding CF.. .. ..
Would appreciate, if any expert would share their knowledge to help me on my issue...
Thanks in advanced.. .. ..
Below is my code :
<cfoutput>
<cfif NOT isObject(wsReturnStruct)>
structure not returned.<cfexit>
<cfelseif NOT structKeyExists(wsReturnStruct,"getStudentStatus")>
status not returned.<cfexit>
<cfelseif wsReturnStruct.getgetStudentStatus() EQ "I">
ERROR : "#wsReturnStruct.getmsg()#"<cfexit>
<cfelseif NOT structKeyExists(wsReturnStruct,"getStudentReturnObject")
OR (NOT (isObject(wsReturnStruct.getStudentReturnObject)
OR isArray(wsReturnStruct.getStudentReturnObject)))>
PASS!!! But no returnObject found!<cfexit>
<cfelse>
<cfset wsReturn = wsReturnStruct.getStudentReturnObject>
</cfif>
</cfoutput>
From the ColdFusion, when running, the output returns at "status not returned."
Actually, may i know, what condition that posible to return the output at "status not returned."???
Regards
kc