Re: Problem with web service call after CF8 to CF10 upgrade

2013-04-16 Thread Chuck Stazo
>DING DING DING! > >Adding the following to the original code did the trick. > > > >To those interested, who have seen the WSDL and wondered... note that the >WSDL has two input parameters and two response parameters, but I have to >pass FOUR parameters, the latter two just being empty strings. >

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Russ Michaels
In that case I bet it is a problem with the axis version. When you call an external web service axis creates a bunch of java stub files which handle all the ws function calls, sometimes it is unable to create them due to something in the web service it doesn't understand. Your previous version of

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Rick Root
DING DING DING! Adding the following to the original code did the trick. To those interested, who have seen the WSDL and wondered... note that the WSDL has two input parameters and two response parameters, but I have to pass FOUR parameters, the latter two just being empty strings. The web se

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Dave Watts
> But it did make me think - what if I switched back to Axis 1 ... Yeah, that was my thought - not that you necessarily needed to upgrade to the latest patch, but you might add that switch to your web service call. I don't know if a restart is required. Dave Watts, CTO, Fig Leaf Software http://

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Rick Root
Dave, I figured out what you were missing in the URL above .. probably not related. But it didmake me think - what if I switched back to Axis 1 ... I tried this and re-tested but got the same error. Is this something I'd need to re-start Coldfusion to take effect? Rick ~~

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Rick Root
Dave, that link doesn't seem to work. Updater 8 applied this weekend, so the latestand greatest. Russ - it's an external web service - one written by our SAP peole - whom I don't have the greatest of access to. I am the only consumer of this web service. Rick

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Dave Watts
> Okay I'm really struggling with this, I really need to get this ws call > back up and running. > > I'm now trying to use and I'm getting a slightly different > error message. > > was: > Web service operation zAdvWebServOptOut with parameters > {rick.r...@gmail.com,UDVAE} > cannot be found. > >

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Russ Michaels
Ate you calling a cf web service that you have written or an external web service? Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Mar 5, 2013 6:18 PM, "Rick Root" wrote: > > Okay I'm really struggling with

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Rick Root
Okay I'm really struggling with this, I really need to get this ws call back up and running. I'm now trying to use and I'm getting a slightly different error message. was: Web service operation zAdvWebServOptOut with parameters {rick.r...@gmail.com,UDVAE} cannot be found. with cfinvoke - pass

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Andrew Scott
That is true Ray, I forgot all about that addition to ColdFusion 9. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Tue, Mar 5, 2013 at 10:10 PM, Raymond Camden wrote: > > It isn't always cached. Note this line: > > > > Th

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-05 Thread Raymond Camden
It isn't always cached. Note this line: This was added in CF9 I believe. (There is also a way to do it w/ cfinvoke.) On Tue, Mar 5, 2013 at 12:35 AM, Andrew Scott wrote: > > Not sure this is the issue, but WSDL is always cached, can you log into the > CF Admin and delete that cached WSDL. >

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-04 Thread Andrew Scott
Not sure this is the issue, but WSDL is always cached, can you log into the CF Admin and delete that cached WSDL. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Tue, Mar 5, 2013 at 12:53 PM, Rick Root wrote: > > So I have

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-04 Thread Rick Root
Hm, nope that doesn't work - I tried it with and without the braces (and of course using "OptCode" instead of "OptOut" as that's how the field is defined in the WSDL). Web service operation zAdvWebServOptOut with parameters {rick.r...@gmail.com,MYCODE} cannot be found. It produces this same error

Re: Problem with web service call after CF8 to CF10 upgrade

2013-03-04 Thread Byron Mann
Think you need one parameter with email and OptOut keys. Byron Mann Lead Engineer & Architect HostMySite.com On Mar 4, 2013 8:53 PM, "Rick Root" wrote: > > So I have this wonky SAP web service that I'm calling.. you can see an > example of the WSDL here: > > http://www.it.dev.duke.edu/public/

Problem with web service call after CF8 to CF10 upgrade

2013-03-04 Thread Rick Root
So I have this wonky SAP web service that I'm calling.. you can see an example of the WSDL here: http://www.it.dev.duke.edu/public/wsdl.xml http://www.it.dev.duke.edu/public/wsdl.txt I'm creating my wsdl object: And then calling the web service like this: This was working fine, but n