Question
Pulling info out of service
I found a quick cfc for creating a service in CF8:
<cfcomponent>
<cffunction name="sayHello" access="remote" hint="I say hi!" returntype="string">
<cfargument name="to" hint="Whom to say hi to." required="false" default="world" type="string" />
<cfreturn "Hello, #arguments.to#" />
</cffunction>
</cfcomponent>
After I view the page ( http://localhost:8500/TestingCF/service2.cfc?wsdl) it shows up with xml tags.
My question is how do I pull info out of the xml tags into a user friendly view?
<cfcomponent>
<cffunction name="sayHello" access="remote" hint="I say hi!" returntype="string">
<cfargument name="to" hint="Whom to say hi to." required="false" default="world" type="string" />
<cfreturn "Hello, #arguments.to#" />
</cffunction>
</cfcomponent>
After I view the page ( http://localhost:8500/TestingCF/service2.cfc?wsdl) it shows up with xml tags.
My question is how do I pull info out of the xml tags into a user friendly view?
