web services - flex Gathering the result from my wsdll webservice -


hey have wsdll webservice, im trying result via flex.

but can see im doing wrong attributes, can't seem see error is.

the webservice looks this

  <soap:body>     <getmeetingpictureresponse xmlns="http://picture.zaqsolutions.com/picture">       <getmeetingpictureresult>         <meetingpicture>           <meetingid>string</meetingid>           <image>base64binary</image>           <image1>base64binary</image1>           <image2>base64binary</image2>           <name>string</name>           <name1>string</name1>           <name2>string</name2>           <host>string</host>           <eid>int</eid>         </meetingpicture>         <meetingpicture>           <meetingid>string</meetingid>           <image>base64binary</image>           <image1>base64binary</image1>           <image2>base64binary</image2>           <name>string</name>           <name1>string</name1>           <name2>string</name2>           <host>string</host>           <eid>int</eid>         </meetingpicture>       </getmeetingpictureresult>     </getmeetingpictureresponse>   </soap:body> 

and call im making this

alert.show(wsdll.getmeetingpicture.lastresult.getmeetingpictureresult.meetingpicture.name, "alert box", alert.ok); 

but gives me no result?


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -