cleanair4me47
Technical User
I am using ColdFusion 8 and I would like to fetch a JSP Hello World message in ColdFusion. I tried both attempts below where the hello.jsp is a simple Hello World message.
and
Both came back with error on the GetPageContext() method with no further explanation of the ColdFusion error.
Please advise.
Code:
<cfscript>
GetPageContext().include("[URL unfurl="true"]http://myserver:8080/myapp/hello.jsp");[/URL]
</cfscript>
and
Code:
<cfoutput>
#GetPageContext().include("[URL unfurl="true"]http://myserver:8080/myapp/hello.jsp")#[/URL]
</cfoutput>
Both came back with error on the GetPageContext() method with no further explanation of the ColdFusion error.
Please advise.