[cfaussie] Coldfusion Web services

2012-06-15 Thread Steve Onnis
Has anyone run into an issue with reserves words for cfproperty names? I am creating a web service which i want to be able to pass in a username/password. I have added in a cfproperty with the name of username and another named password though i am getting an exception when those names are

Re: [cfaussie] Coldfusion Web services

2012-06-15 Thread Mike Kear
Sorry if it's a dumb question Steve, but like you, I wouldn't have thought 'username' or 'password' would be reserved words. Have you checked that the problem goes away if you change the variable names to something else? (and therefore prove that it's the variable names that are causing the

RE: [cfaussie] Coldfusion Web services

2012-06-15 Thread Steve Onnis
If i rename username and password to _username and _password the problem goes away From: Mike Kear [mailto:afpwebwo...@gmail.com] Sent: Friday, 15 June 2012 5:05 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Coldfusion Web services Sorry if it's a dumb question Steve, but like

RE: [cfaussie] Coldfusion Web services

2012-06-15 Thread charlie arehart
Steve, if you (or others reading this) are ever in a situation where you have no control over the argument names of the web service you were calling, there may be yet another solution. As discussed, the problem is that tags like CFINVOKE, while they do let you pass in arguments to the web

RE: [cfaussie] Coldfusion Web services

2012-06-15 Thread Steve Onnis
Charlie I am using createObject() to connect to the webservice. The error happens during the invocation process, not during the method call. From: charlie arehart [mailto:charlie_li...@carehart.org] Sent: Saturday, 16 June 2012 12:08 AM To: cfaussie@googlegroups.com Subject: RE: