Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
ProWebService #1
Help on calling a webservice - wsdl
I created a sample webservice that can be seen by going to this link:
[url]http://www.oakvilleschool.com/service/helloworld.cfc?wsdl[/url]
I then created the ColdFusion Code to call this webservice from another server
using CFInvoke and this code worked fine:
-------------------------------------------------------------
<cfinvoke
webservice="http://www.oakvilleschool.com/service/helloworld.cfc?wsdl"
method="HelloWorld" returnvariable="result">
</cfinvoke>
<cfoutput>#result#</cfoutput>
-------------------------------------------------------------
The result of this webservice is that it just displays: "Hello World!"
Now if someone has a website and does not have coldfusion on their server, how
do they call this webservice on their site since they can't use cfinvoke? Is
there a javascript call or html call?
Thanks in advance for your help.
Tom
ProWebService Guest
-
WebService WSDL downloading...
I've been slowly building up my web serivce and Flex UI. Over time i noted that sometimes it takes a while for the WebService object to finish... -
Pragmatically Reload WSDL for WebService
Still looking for a response on this. So far we've implemented a webservice call to check if the webservice is active. But i'd be interested if... -
WSDL Webservice Problem - Urgent Help!!!
I have setup a Flash form to use the WebServiceConnector to do credit card authorizations. The connector works when running inside Flash but when I... -
creating ASP .NET webservice from WSDL file
hello dear Group! I need very much to create an ASP .NET webservice out of a WSDL file - it is enough if I would have just empty skeleton... -
Webservice calling a webservice.....Error
Hi Ihave a strange problem .....or?? On one machine 1 i have a webservice A calling an other webservice B on a other machine 2 . the B service are... -
pflynn02 #2
Re: Help on calling a webservice - wsdl
GOOGLE
[url]http://www.codeproject.com/useritems/marcelo888RemoteScript01.asp[/url]
pflynn02 Guest
-
ProWebService #3
Re: Help on calling a webservice - wsdl
Thanks for the response but I am having a hard time following this link since it is mostly written in Spanish.
Any other suggestions?
Thanks,
Tom
ProWebService Guest
-
Dean Harmon #4
Re: Help on calling a webservice - wsdl
Each server side language (ASP, .NET, PHP, ColdFusion) is going to have a
specific way to consume a webservice, but there is no javascript/html way to
do this.
You would need to give the person that will consume the webservice the WSDL
URL and they should know what to do with it.
Dean
"ProWebService" <support@daybreakengineering.com> wrote in message
news:d11uc7$69c$1@forums.macromedia.com...since it is mostly written in Spanish.> Thanks for the response but I am having a hard time following this link> Any other suggestions?
>
> Thanks,
> Tom
Dean Harmon Guest
-
ProWebService #5
Re: Help on calling a webservice - wsdl
Thanks Dean, but that is just the problem - most people that are using this
data will not have a clue as to how to consume a webservice or even know what
that means. That is why I wanted to provide them a solution in mutiple ways or
atleast one way that I know would work on most sites and just tell them to pur
this code on their site and it will display the information.
So to have the code to consume a webservice in ASP, .NET, and PHP would be
very useful. I can provide the ColdFusion code but I don't think most sites
will have ColdFusion installed.
Thanks,
Tom
ProWebService Guest



Reply With Quote

