Thanks, I posted my own answer to question (1) previously, and for question (2) - asking for example code - well, I'm really only concerned with web service (both unnamed and named) over HTTPS.
Actually, I've got that (WS over HTTPS) working to the point where the service loads the WSDL and initializes; the actual operation RPC times out however, so I'm going to talk to the vendor to determine if the problem is perhaps my definition and call in Flex or their web service's behaviour. I do believe that MM needs to supply (in their documentation or by some other means) a really good, complete, real-world example of using both an unnamed and a named web service over HTPPS. --- In [email protected], Dennis Jackson <[EMAIL PROTECTED]> wrote: > 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: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... > </mx:WebService> > <mx:HBox> > <mx:Label text="Select a department:"/> > <mx:ComboBox id="numProjectID" width="150" dataProvider="{ReconcileWS.remGetReconcileProjects.result}" labelField="NAME"> > </mx:ComboBox> > </mx:HBox> > > 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)? > > > > > Yahoo! Groups SponsorADVERTISEMENT > > > --------------------------------- > Yahoo! Groups Links > > To visit your group on the web, go to: > http://groups.yahoo.com/group/flexcoders/ > > To unsubscribe from this group, send an email to: > [EMAIL PROTECTED] > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

