here is the code I used.
obviously it refers to an internal webservice for us.
it points to a cold fusion component. the return from it is a cfquery.
the method is called on initialize.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" verticalGap="10" initialize="ReconcileWS.remGetReconcileProjects.send()">
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" verticalGap="10" initialize="ReconcileWS.remGetReconcileProjects.send()">
<mx:WebService id="ReconcileWS" wsdl="http://devppcintranet/sitecomposer/globals/cfcomponents/reconcile/reconcile.cfc?wsdl"
showBusyCursor="true"
fault="alert(event.fault.faultstring)">
<mx:operation name="remGetReconcileProjects">
</mx:operation>
...edited...
showBusyCursor="true"
fault="alert(event.fault.faultstring)">
<mx:operation name="remGetReconcileProjects">
</mx:operation>
...edited...
</mx:WebService>
<mx:HBox>
<mx:HBox>
<mx:Label text="Select a department:"/>
<mx:ComboBox id="numProjectID" width="150" dataProvider="{ReconcileWS.remGetReconcileProjects.result}" labelField="NAME">
</mx:ComboBox>
</mx:ComboBox>
</mx:HBox>
extensive_systems <[EMAIL PROTECTED]> wrote:
extensive_systems <[EMAIL PROTECTED]> wrote:
I'm trying to invoke an unnamed web service and the fault string
"Could not load WSDL" is returned. (typing the URL in a browser
returns valid (WSDL) XML).
A couple of questions:
(1) Does anyone have an idea why the WSDL could not be loaded?
(2) Does anyone have a complete, working example of invoking a Web
Service, from a separate server, over HTTPS (with flex-config.xml,
etc., settings)?

