No, I think I'm doing something blatantly wrong. Originally I tried the xmethods.net
one because I couldn't get my internal web service to work, and figured I'd go with
more of a known quantity to double check my syntax.
So now I have a different (unrelated?) problem:
I've got a CFC/Web Service, and I added a test method to it called "testfunc" that
looks like so:
<cffunction name="testfunc" output="true" returntype="string" access="remote">
<cfreturn "hi" />
</cffunction>
...and I get an error about "testfunc with parameters {} could not be found". The
WSDL is updated correctly, but when I call it, I think it's getting cached somehow.
I've gone in and made changes to the CFC to cause a recompile (and the fact that the
WSDL is correct leads me to believe that worked) but nothing changes.
Any ideas?
-nolan
-----Original Message-----
From: Matt Liotta [mailto:[EMAIL PROTECTED]
Sent: Monday, April 26, 2004 12:33 PM
To: [EMAIL PROTECTED]
Subject: Re: [CFCDev] CFC stupidity
Have you tried sending raw SOAP to the service in question? Below is an
example SOAP request and the SOAP response I am currently getting from
the service.
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:n="urn:xmethods-Temperature"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body
soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<n:getTemp>
<zipcode xsi:type="xs:string">30307</zipcode>
</n:getTemp>
</soap:Body>
</soap:Envelope>
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<ns1:getTempResponse xmlns:ns1="urn:xmethods-Temperature"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xsi:type="xsd:float">59.0</return>
</ns1:getTempResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Matt Liotta
R337 Consulting LLC
http://r337.com
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev'
in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev'
in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]