Re: Consuming webservices using CF8

2010-09-16 Thread Olav Andreas Antonsen
ecoaa.cfc = >I don't think the problem is related to the proxy, because I get the same >problem >when I try to consume a simple (local) test ws. > > >wsargs = structnew(); >wsargs.refreshwsdl="yes"; >wsargs.saveja

Re: Consuming webservices using CF8

2010-09-16 Thread John M Bliss
If you care to provide a copy of ecoaa.cfc, I'll be happy to test it from here... On Thu, Sep 16, 2010 at 5:14 PM, Olav Andreas Antonsen wrote: > > I don't think the problem is related to the proxy, because I get the same > problem > when I try to consume a simple (local) test ws. > > > wsargs

Re: Consuming webservices using CF8

2010-09-16 Thread Olav Andreas Antonsen
I don't think the problem is related to the proxy, because I get the same problem when I try to consume a simple (local) test ws. wsargs = structnew(); wsargs.refreshwsdl="yes"; wsargs.savejava="yes"; //wsargs.proxyServer = "proxy"; //wsargs.proxyPort = "8080"; //wsargs.wsdl2JavaArgs = "-D -v -

Re: Consuming webservices using CF8

2010-09-16 Thread John M Bliss
I'm thinking it must be the proxy because this works fine for me: wsargs = structnew(); ws = createObject("webservice"," http://ws.fraudlabs.com/zipcodeworldUS_webservice.asmx?wsdl",wsargs); On Thu, Sep 16, 2010 at 9:10 AM, OLav Andreas Antonsen wrote: > > I recently upgraded to CF8 and I’m

Consuming webservices using CF8

2010-09-16 Thread OLav Andreas Antonsen
I recently upgraded to CF8 and I’m not able to consume webservices from my dev edition on my personal PC. I have tried making my own simple test webservice, but I’m not able to consume them using CF. (I’m able to consume the ws using .Net or Java, but not from CF itself). I always get t

RE: consuming webservices

2005-01-17 Thread Adrian Lynch
If using CF Admin is a bind, take a look at this page http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=965 Ade -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED] Sent: 14 January 2005 15:00 To: CF-Talk Subject: RE: consuming webservices Thanks Tim, that&#x

RE: consuming webservices

2005-01-14 Thread Matthew Small
Thanks Tim, that's much better. - Matt Small -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 9:52 AM To: CF-Talk Subject: RE: consuming webservices Matthew, > I've built a webservice in .Net that I intend to > consume

RE: consuming webservices

2005-01-14 Thread Tim Blair
Matthew, > I've built a webservice in .Net that I intend to > consume from CF. As I'm building it, I've noticed that the > .NET Web service's arguments are cached by CF - that is, if I > make a change to the .NET WS, then CF doesn't > "realize" it. CF does indeed cache the webservice

Re: consuming webservices

2005-01-14 Thread Ian Winter
I've had this trouble before as well, I seem to recall it may be something to do with AXIS (bit that actually gets the WS). I'm not sure if clearing out the stubs would do it or if you can change the config somewhere. I know a restart fixes it but that's not a valid solution in a live environment a

consuming webservices

2005-01-14 Thread Matthew Small
Hi all, I've built a webservice in .Net that I intend to consume from CF. As I'm building it, I've noticed that the .NET Web service's arguments are cached by CF - that is, if I make a change to the .NET WS, then CF doesn't "realize" it. I know this sounds sort of strange, but as