> I must automate a procedure of files exchange with a
> server SOAP but I have any idea of how that functions.
> In fact I received the instruction to execute a function
> which is on SOAP server.
> I have got the equivalent of the code in PHP (see below), I
> would like to make the same thing but in coldfusion,
>
> ...
>
> there are the instructions I receive:
>
> To test I've to execute the function GetPinCLIInfo
>
> The input is an array as follows
> MSISDN=>'44484238701'
> username=>'test'
> password=>'testpass'
Assuming your remote SOAP service has a WSDL URL:
<cfinvoke webservice="{URL to remote service's WSDL}"
method="GetPinCLIInfo"
returnvariable="response">
<cfinvokeargument name="MSISDN" value="44484238701">
<cfinvokeargument name="username" value="test">
<cfinvokeargument name="password" value="testpass">
</cfinvoke>
If it doesn't, you won't be able to consume it nearly so easily. You could
write your own WSDL for the remote service, and point CF to that.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four
times a year.
http://www.fusionauthority.com/quarterly
Archive:
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251993
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe:
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4