web services and included templates

2002-11-15 Thread Brook Davies
I don't know if this is by design, or if I'm doing something wrong, but when calling a CFC/Web Service that has an included file, the arguments scope is not available to the included template. I tested this with a standard call to a component and it worked fine, the arguments scope IS available

Re: web services and included templates

2002-11-15 Thread Samuel R. Neff
This is a known bug. Unfortunately it wasn't fixed in Updater 1 and I don't think it's scheduled to be fixed in Updater 2. At 02:17 PM 11/15/2002, you wrote: >I don't know if this is by design, or if I'm doing something wrong, but >when calling a CFC/Web Service that has an included file, the ar

Follow Up: web services and included templates

2002-11-15 Thread Brook Davies
An easy way around this is to dump the arguments struct into the variables or request scope, which IS available to the calling template. Note, I received errors when I tried to copy a var from the argument scope to the local scope like this: But doing this works: Brook ~~

Follow Up #2: web services and included templates

2002-11-15 Thread Brook Davies
Actually, I was wrong. Using duplicate() does not work..but simply using does work and structCopy() also works. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/

Re: Follow Up: web services and included templates

2002-11-15 Thread Sean A Corfield
On Friday, Nov 15, 2002, at 14:20 US/Pacific, Brook Davies wrote: > An easy way around this is to dump the arguments struct into the > variables > or request scope, which IS available to the calling template. Note, I > received errors when I tried to copy a var from the argument scope to > the >