Questions tagged [cfinvoke]

Invokes a component method from within a ColdFusion page or component.

20 questions
0
votes
1 answer

How to fix "Unsupported Schema format for unwrapping! found all but expected sequence" in cfinvoke CF11?

I'm running into an odd issue when invoking a webservice from the cfinvoke tag on ColdFusion 11 Enterprise Edition. The error message I am getting is: Unsupported Schema format for unwrapping! found all but expected sequence The stack trace…
Tantely
  • 59
  • 4
0
votes
0 answers

Issue with invoking a Coldfusion Component

I'm trying to invoke a component from another code file and running into a problem. This is what I have tried. This causes the page to fail.
Alex
  • 443
  • 3
  • 18
0
votes
1 answer

Coldfusion CFINVOKE parameter not working?

I want to invoke a cfc file on my webserver, but I always get the error: The required parameter [UserID] was not provided. Coldfusion code:
Christoph Bühler
  • 2,795
  • 2
  • 28
  • 43
0
votes
4 answers

How to pass a struct to Coldfusion CFC using CFINVOKE?

I have a CFC file which handles all of the emails I'm sending form an application (using Coldfusion8). I was using CFINVOKE to call the respective function inside this CFC and passed a struct with all user data along like so: var…
frequent
  • 27,643
  • 59
  • 181
  • 333
-2
votes
2 answers

Which is faster: CFM page full of CFQUERY calls or CFINVOKE calls?

Which would be faster and more efficient memory-wise? A CFM file containing individual CFQUERY calls A CFM file containing individual CFINVOKE calls to CFC's containing individual methods for each of those same queries I realize there are…
1
2