I'm trying to build a Flex File Manager (based on CFFM) and I'm using
a web service to do all the work (rather than remoting).. I haven't
done the web service thing in a while so I'm a little rusty - on the
flex side, that is.

Here's my MXML for the service:

<mx:WebService id="ws"
wsdl="http://localhost:8500/flexfm/flexfm.cfc?WSDL";
showBusyCursor="true">
        <mx:operation name="init" result="initResult(event)"
fault="genericFault(event)"/>
        <mx:operation name="getDirectory" result="getDirectoryResult(event)"
fault="genericFault(event)"/>
</mx:WebService>

WHen I run ws.init(), I get a kind of generic web service error.

Request implements version: http://schemas.xmlsoap.org/soap/envelope/,
Response implements version null

I don't know what's going on here.  I googled the error result and
there were zero results.

I can load the WSDL just fine.  I can call the methods via http GET
just fine, they return the expected results.

Can anyone offer some help here?

Thanks.

Rick

-- 
CFMBB - Coldfusion Message Boards, Version 1.21 Now Available!
http://www.cfmbb.org

Reply via email to