Have you installed any apache/axis updates other than the ones that come with coldfusion? Or are you using a jvm other than the one supplied?
Roland -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Venezuela, Otoniel Sent: Tuesday, June 27, 2006 5:32 PM To: [email protected] Subject: RE: [CFCDev] consuming CFC as web service But why my version generate a different wsdl? -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roland Collins Sent: Tuesday, June 27, 2006 5:28 PM To: [email protected] Subject: RE: [CFCDev] consuming CFC as web service You're missing the declarations for the "impl" namespace - they *should* be included as part of the wsdl: definitions block. Take a look at the wsdl that m version of cf generates. Roland -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Venezuela, Otoniel Sent: Tuesday, June 27, 2006 4:48 PM To: [email protected] Subject: RE: [CFCDev] consuming CFC as web service This is the wsdl generated by CFMX: ------------------------------------ <wsdl:definitions targetNamespace="http://cas" name=""> <!-- WSDL created by Macromedia ColdFusion MX version 7,0,1,116466 --> <wsdl:types> <schema targetNamespace="http://rpc.xml.coldfusion"> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> <complexType name="CFCInvocationException"> <sequence/> </complexType> </schema> </wsdl:types> <wsdl:message name="IsIERequest"> </wsdl:message> <wsdl:message name="CFCInvocationException"> <wsdl:part name="fault" type="tns1:CFCInvocationException"/> </wsdl:message> <wsdl:message name="IsIEResponse"> <wsdl:part name="IsIEReturn" type="xsd:string"/> </wsdl:message> <wsdl:portType name="listing1"> <wsdl:operation name="IsIE"> <wsdl:input message="impl:IsIERequest" name="IsIERequest"/> <wsdl:output message="impl:IsIEResponse" name="IsIEResponse"/> <wsdl:fault message="impl:CFCInvocationException" name="CFCInvocationException"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="listing1.cfcSoapBinding" type="impl:listing1"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="IsIE"> <wsdlsoap:operation soapAction=""/> <wsdl:input name="IsIERequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://cas" use="encoded"/> </wsdl:input> <wsdl:output name="IsIEResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://cas" use="encoded"/> </wsdl:output> <wsdl:fault name="CFCInvocationException"> <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="CFCInvocationException" namespace="http://cas" use="encoded"/> </wsdl:fault> </wsdl:operation> </wsdl:binding> <wsdl:service name="listing1Service"> <wsdl:port binding="impl:listing1.cfcSoapBinding" name="listing1.cfc"> <wsdlsoap:address location="http://localhost/listing1.cfc"/> </wsdl:port> </wsdl:service> </wsdl:definitions> ---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [email protected] with the words 'unsubscribe cfcdev' as the subject of the email. CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting (www.cfxhosting.com). An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
