Skip to content

Instantly share code, notes, and snippets.

@virtix
Created May 31, 2009 04:05
Show Gist options
  • Save virtix/120748 to your computer and use it in GitHub Desktop.
Save virtix/120748 to your computer and use it in GitHub Desktop.
function loserJavaWeanieInvocationUsingCfJspPage(){
var page = getPageContext().getPage();
var actual = page.createObject('java','java.lang.String').init(chr(0));
var args = ['hey, loser, you suck.'];
actual = createObject('java' ,'coldfusion.runtime.CfJspPage')._invokeUDF(page._get('plainOldComponent.echo'), 'echo', page, args);
debug(actual);
assertEquals( 'hey, loser, you suck.', actual );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment