WSS4CF: Secure Webservices with ColdFusion
The new project WSS4CF aims to provide WS-Security for CF webservices:
So far both plain and digest username/password tokens are implemented. Hopefully more can be provided in the future.
The new project WSS4CF aims to provide WS-Security for CF webservices:
So far both plain and digest username/password tokens are implemented. Hopefully more can be provided in the future.
WSS4CF: Secure Webservices with ColdFusion
Paul said: Yep, I ended up just stuffing the security headers into the XML packet, then cfhttp'd it. Worked wel...
[More]
WSS4CF: Secure Webservices with ColdFusion
James Holmes said: The CFC isn't really designed to be used with CFHTTP, since it leverages the AXIS Java jars under th...
[More]
WSS4CF: Secure Webservices with ColdFusion
Paul said: Hi James,
Do you have an example of how WSS4CF would work with a <cfhttp> call to a...
[More]
Getting the CFAJAX Suggest examples to work locally
guillermo Pinillos said: Unfortunately this don't work for me. I did everything the recommends until I changed my browser IE...
[More]
Generating Barcodes with Barbecue and Coldfusion
mercedes said: Hi, I need to print a barcode and, below this, one line with text. I don“t know how to print the l...
[More]
Do you have an example of how WSS4CF would work with a <cfhttp> call to a specified endpoint, e.g. with the following (it needs WS authentication with username/password):
<cfhttp
url="https://ws.staging.training.gov.au/Deewr.Tga.WebSe..."
method="post">
<cfhttpparam type="header" name="content-type" value="application/soap+xml" />
<cfhttpparam type="header" name="SOAPAction" value="http://training.gov.au/services/IOrganisationServi..."/>
<cfhttpparam type="header" name="accept-encoding" value="no-compression" />
<cfhttpparam type="xml" value="#trim(sXML)#"/>
</cfhttp>
http://wss4cf.riaforge.org/wiki/
However you might be able to make use of the code to get the security headers you need and attach them to the http call. Alternatively, try adding the info to the underlying axis object; this would require a small modification to the cfc to allow access to that object.