coldfusion « wsdl « Java Enterprise Q&A





1. Coldfusion WSDL times out on first call    stackoverflow.com

I have a web service setup for on a small part of a website and while the site overall gets a good amount of traffic this particular service does not. ...

2. Get readable WSDL service method arguments error in ColdFusion    stackoverflow.com

developing service invoking script that looks like:

<cfinvoke webservice="#ServiceURL#" method="AddCustomer" returnvariable="ResponseData" argumentcollection="#stAguments#">
    <cfinvokeargument name="api_key" value="#ServiceKey#" />
</cfinvoke>
stAguments structure filled before this call, obviously. Imagine you've forgot to add one of arguments ...

3. Consume a redirected webservice in ColdFusion    stackoverflow.com

I've been provided a WSDL file that points to a webservice. I use this webservice to log in and create a session. In addition to the session token, the ...

4. ColdFusion, WSDL, and extended complex classes    stackoverflow.com

I am working with a webservice that provides basic CRUD functionality. The Retrieve is easy enough to work with, but I'm having trouble working with the Create (I've not yet ...

5. Unable to read WSDL from Coldfusion9    stackoverflow.com

I've the problem now. I've run the following code in CF8 is ok and everything's fine.

<cfinvoke webservice="http://www.w3schools.com/webservices/tempconvert.asmx?WSDL" method="CelsiusToFahrenheit" returnvariable="strg">
    <cfinvokeargument name="Celsius" value="24" />
</cfinvoke>

<cfdump var="#strg#"> 
But test it in ...

6. Coldfusion web service consumed as WSDL chokes on control characters    stackoverflow.com

Clients upload files in .doc format to a server directory, and the text within them is extracted using POI as per Ray Camdens posting here The content is saved ...

7. Importing FirstData certificate into Coldfusion    stackoverflow.com

I've tried to import the certificate from First Data into my ColdFusion 9 setup using the keytool as so:

keytool -importcert -keystore MYCF9Dir\runtime\jre\lib\security\cacerts -trustcacerts -alias firstdata -file FirstData.pem
The import seems to work, ...

8. How to invoke this webservice method?    stackoverflow.com

I can't wrap my mind around invoking a simple method of 3rd-party service. Here's the chunk of WSDL for this method:

<s:element name="PushRequest">
    <s:complexType>
      ...

9. Help! Wsdl2Java Can't parse a Coldfusion WSDL?    coderanch.com

I'm relatively new to Web services, but I've managed to get several service clients half-generated using Axis2 task in ANT. Now I'm trying to use this same technique on a WSDL file that was "auto-generated" by ColdFusion. I don't know anything about ColdFusion, other than how to spell it. Short story: It's not working. CodeGen barfs, and I can't figure ...