Issue in passing value to java method.
hi
i having issue in cf9 while passing cfset value java. here code snippet:
<cfset abcurl='ldap://abc.dce.com:1111 ldap://xyz.abc.com:2222'>
<cfset obj = createobject("java","getxyz")>
<cfset objresp = obj.abc(#abcurl#)>
when passing abcurl value not parsing in java, when giving 1 url working.
like : <cfset abcurl='ldap://abc.dce.com:1111'>
but need put both url.
please give me solution.
thanks in advance
anshul
if try pass string java function, think should be
<cfset objresp = obj.abc("#abcurl#")>
when passing abcurl value not parsing in java, when giving 1 url working.
like : <cfset abcurl='ldap://abc.dce.com:1111'>
that sounds java functionality isn't workin expect, not coldfusion part.
More discussions in ColdFusion
adobe
Comments
Post a Comment