Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Richard7777 #1
Web Service Output Paramers
How can I create a web service in CF with output parameters. I see how to use CFARGUMENT for input parameters. I need to create a web service that can be consumed by a non-CF client application.
Richard7777 Guest
-
web service ( + WSE 2.0 ) hangs after adding an output filter
Hi, I have a server that returns a dataset of over 10,000 records. i added a output filter to the web.config file and i zip the body,create an empty... -
Referencing web service complex data type within a second web service (like a delegate)
Hi, I am trying to figure out if ASP.NET XML Web Services and the WSDL standard can handle this type of scenario: I have two web services, and... -
win32::eventlog DNS Server, Directory Service, File Replication Service
hello, does anyone know how to scan the special eventlogs on a dc like DNS Server log Directory Service File Replicatoin Service i tried it... -
Carriage returns/output not displayed in output.asp
PLEASE DON'T MULTIPOST. PLEASE DON'T POST ATTACHMENTS. PLEASE DON'T DOUBLE-POST. Ray at work -
#25152 [Opn->Bgs]: output buffering functions don't catch "virtual" output
ID: 25152 Updated by: iliaa@php.net Reported By: msarsale at buenosaires dot gov dot ar -Status: Open +Status:... -
Stressed_Simon #2
Re: Web Service Output Paramers
You need to write a CFC, create a function with the relevant logic, set the
access="remote" in your cffunction tag, use cfreturn to return the data that
you want to return. To expose it as a webservice provide the URL for the CFC
with ?wsdl on the end of it.
Make sense?
Stressed_Simon Guest
-
Richard7777 #3
Re: Web Service Output Paramers
I understand how to create a web service and have successfully done so. I also
understand how to use CFRETURN to return one value. I want to have multiple
output parameters (this is typical in web services). Maybe this can't be done
in ColdFusion.
Richard7777 Guest
-
Stressed_Simon #4
Re: Web Service Output Paramers
Return a structure, then you can return as many variables as you like!
Stressed_Simon Guest
-
Richard7777 #5
Re: Web Service Output Paramers
The problem with returning a structure is that I need to consume the web service with a non-ColdFusion client application. I doubt that a ColdFusion structure would work.
Richard7777 Guest
-
Stressed_Simon #6
Re: Web Service Output Paramers
The whole point of Web Services is that they are universally accessable like
TCP/IP. In this way they are language, platform OS dependant. I don't see why
there would be a problem.
I consume web services created in a variety of languages with no problem at
all.
I suggest giving it a go before assuming it will be a problem.
Stressed_Simon Guest
-
Ro #7
Re: Web Service Output Paramers
Return an XML Object,
Standardize your responses and how they're going to be displayed in a
Manual or specs file that can be downloaded by the prospective
user/consumer.
On Tue, 7 Jun 2005 14:59:50 +0000 (UTC), "Stressed_Simon"
<webforumsuser@macromedia.com> wrote:
>The whole point of Web Services is that they are universally accessable like
>TCP/IP. In this way they are language, platform OS dependant. I don't see why
>there would be a problem.
>
> I consume web services created in a variety of languages with no problem at
>all.
>
> I suggest giving it a go before assuming it will be a problem.Ro Guest



Reply With Quote

