On 4/8/07, Douglas Knudsen <[EMAIL PROTECTED]> wrote: > what is Charles or ServiceCapture or some other sniffer telling you is being > returned to the Flash Player.
The trick with Fiddler was to NOT use "localhost" .. so I changed it to the computer name, which seemed to work fine. However, inspecting the response doesn't seem to help. Looks like a normal WSDL. I've included the raw response below... On a side note, I'm using the most recently download of Coldfusion MX 7 (7.0.2) with the daylight savings time update, and the cumulative hot fix. I'm also running Flex Builder 2.0.1 Rick HTTP/1.0 200 OK Date: Sun, 08 Apr 2007 23:22:49 GMT Content-Type: text/xml; charset=utf-8 Connection: close Server: JRun Web Server <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions targetNamespace="http://flexfm" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://flexfm" xmlns:intf="http://flexfm" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://rpc.xml.coldfusion" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <!--WSDL created by Macromedia ColdFusion MX version 7,0,2,142559--> <wsdl:types> <schema targetNamespace="http://xml.apache.org/xml-soap" xmlns="http://www.w3.org/2001/XMLSchema"> <import namespace="http://rpc.xml.coldfusion"/> <import namespace="http://flexfm"/> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> <complexType name="mapItem"> <sequence> <element name="key" nillable="true" type="xsd:anyType"/> <element name="value" nillable="true" type="xsd:anyType"/> </sequence> </complexType> <complexType name="Map"> <sequence> <element maxOccurs="unbounded" minOccurs="0" name="item" type="apachesoap:mapItem"/> </sequence> </complexType> </schema> <schema targetNamespace="http://rpc.xml.coldfusion" xmlns="http://www.w3.org/2001/XMLSchema"> <import namespace="http://xml.apache.org/xml-soap"/> <import namespace="http://flexfm"/> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> <complexType name="CFCInvocationException"> <sequence/> </complexType> <complexType name="QueryBean"> <sequence> <element name="columnList" nillable="true" type="impl:ArrayOf_xsd_string"/> <element name="data" nillable="true" type="impl:ArrayOfArrayOf_xsd_anyType"/> </sequence> </complexType> </schema> <schema targetNamespace="http://flexfm" xmlns="http://www.w3.org/2001/XMLSchema"> <import namespace="http://rpc.xml.coldfusion"/> <import namespace="http://xml.apache.org/xml-soap"/> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> <complexType name="ArrayOf_xsd_string"> <complexContent> <restriction base="soapenc:Array"> <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/> </restriction> </complexContent> </complexType> <complexType name="ArrayOfArrayOf_xsd_anyType"> <complexContent> <restriction base="soapenc:Array"> <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:anyType[][]"/> </restriction> </complexContent> </complexType> </schema> </wsdl:types> <wsdl:message name="initRequest"> </wsdl:message> <wsdl:message name="CFCInvocationException"> <wsdl:part name="fault" type="tns1:CFCInvocationException"/> </wsdl:message> <wsdl:message name="initResponse"> <wsdl:part name="initReturn" type="apachesoap:Map"/> </wsdl:message> <wsdl:message name="getDirectoryRequest"> <wsdl:part name="subdir" type="xsd:anyType"/> <wsdl:part name="recurse" type="xsd:anyType"/> </wsdl:message> <wsdl:message name="getDirectoryResponse"> <wsdl:part name="getDirectoryReturn" type="apachesoap:Map"/> </wsdl:message> <wsdl:portType name="flexfm"> <wsdl:operation name="init"> <wsdl:input message="impl:initRequest" name="initRequest"/> <wsdl:output message="impl:initResponse" name="initResponse"/> <wsdl:fault message="impl:CFCInvocationException" name="CFCInvocationException"/> </wsdl:operation> <wsdl:operation name="getDirectory" parameterOrder="subdir recurse"> <wsdl:input message="impl:getDirectoryRequest" name="getDirectoryRequest"/> <wsdl:output message="impl:getDirectoryResponse" name="getDirectoryResponse"/> <wsdl:fault message="impl:CFCInvocationException" name="CFCInvocationException"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="flexfm.cfcSoapBinding" type="impl:flexfm"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="init"> <wsdlsoap:operation soapAction=""/> <wsdl:input name="initRequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://flexfm" use="encoded"/> </wsdl:input> <wsdl:output name="initResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://flexfm" use="encoded"/> </wsdl:output> <wsdl:fault name="CFCInvocationException"> <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="CFCInvocationException" namespace="http://flexfm" use="encoded"/> </wsdl:fault> </wsdl:operation> <wsdl:operation name="getDirectory"> <wsdlsoap:operation soapAction=""/> <wsdl:input name="getDirectoryRequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://flexfm" use="encoded"/> </wsdl:input> <wsdl:output name="getDirectoryResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://flexfm" use="encoded"/> </wsdl:output> <wsdl:fault name="CFCInvocationException"> <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="CFCInvocationException" namespace="http://flexfm" use="encoded"/> </wsdl:fault> </wsdl:operation> </wsdl:binding> <wsdl:service name="cffm"> <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> Configuration data and methods for CFFM </wsdl:documentation> <wsdl:port binding="impl:flexfm.cfcSoapBinding" name="flexfm.cfc"> <wsdlsoap:address location="http://rick200607:8500/flexfm/flexfm.cfc"/> </wsdl:port> </wsdl:service> </wsdl:definitions> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:3855 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
