Well, that's something I could do (I pored over lots of WSDL files
whilst learning Web Service clients and servers). I have become
somewhat of an expert on building clients based just on a WSDL file.
Post the link to the WSDL.



--- In flexcoders@yahoogroups.com, "Tracy Spratt" <tspr...@...> wrote:
>
> Well, what arguments does the Assess operation/method require?  Don't
> send more or less.
> 
>  
> 
> I have been able to work with WebService because I do both ends, but I
> am not good enough to offer to intrepret your wsdl for you.  Maybe
> someone else here could.
> 
>  
> 
> Tracy Spratt 
> Lariat Services 
> 
> Flex development bandwidth available 
> 
> ________________________________
> 
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of m_ollman
> Sent: Wednesday, February 04, 2009 6:33 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Passing values using mx:WebService
> 
>  
> 
> FYI ws call
> 
> private function button_click():void { 
> var wsOperation:Operation = ws.Assess;
> wsOperation.resultFormat = "e4x"; 
> var atCall:AsyncToken; 
> var sQ2:String = Q2.selectedItem.data;
> trace (sQ2); 
> var sQ5:String = Q5.selectedItem.data; 
> trace (sQ5); 
> var oRequest:Object = {Q2: sQ2, Q5: sQ5}; 
> atCall = wsOperation.send(oRequest); 
> atCall.callId = sCallId; 
> }
>


Reply via email to