-8
<cfset GetData = integrationcomponent.easySocket(reference,form.PhoneNum,form.Amount,form.networkType)>

where would integrationcomponent.easySocket be defined ?

martin
  • 11
  • 1
  • 8
    Are you asking where you should set the object or where the object might be set in your code base? It's impossible to know where it's defined with the limited info you have provided. – Tony Junkes Oct 08 '15 at 19:16
  • i would like to know where it is set, and what exactly its pointing to ? i am assuming its point to some url ? – martin Oct 13 '15 at 10:08

1 Answers1

1

integrationcomponent would have to be defined on the page, or in the function, you are calling the method since it is not scoped to be anywhere else.

Dakuwan
  • 101
  • 2
  • *would have to be defined ...* Very likely, but it is not absolutely certain. Technically, the variables scope could be modified by something outside the script itself. For example by OnRequest, a custom tag, etcetera... – Leigh Oct 09 '15 at 15:07
  • is it possible to add some code in the page to reveal the location of where integrationcomponent.easySocket maybe pointing to ? or even some code that i may execute the page normally as a web user and log all the data and requests to a file for anlysis ? – martin Oct 13 '15 at 06:24
  • using something like CFDUMP ? – martin Oct 13 '15 at 10:02