How to invoke webmethodsdll COM in ColdFusion MX

Hi,

Can somebody please translate this to CFMX?

-VB-----------
Dim wc As New Context
Dim inputs As New Values
Dim outputs As New Values

wc.Connect "xxxx:5555", "xxx", "xxx" 
 
'sql string 
inputs.put "strSQLStatement", "select blahblahblah" 
 
'invoke   
Set outputs = wc.invoke("folder01", "flow01", inputs) 

'return value 
return_string = outputs.get("strXMLResult") 

-CFMX-----------
<cfobject
type = “com”
action = “create”
class = “???”
name = “myDBAccess”
context = “local ???”
server = “xxxx:5555 ???”>

Not sure with the values of ??? and how to get the returned value from the

Thanks,
harris