err hopefully i'm not off topic but in Visual Studios, they make it easy to handle stuff like this
e.g if you want to use a webservice that has complex types, it'll generate proxy objects (web references) for you to use so your web service calls are almost like normal methods/objects in your code e.g. a client (e.g. an ASP.NET app) can call a webservice through generated proxy objects: Demo_WS ws = new Demo_WS(); ComplexModel model = ws.getMyComplexModel(); txtFirstName.Text = model.FirstName; etc etc Is anyone planning a Flex type plugin for Ecilspe to do something similar? it'll make consuming web serivces quite trivial :) --- In [email protected], "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I don't know .NET that well, can you take a HashMap or something similar > as the parameter into the web service? You'd then just create the > object and pass it as the single param to the service. > > Matt > > -----Original Message----- > From: [email protected] [mailto:[EMAIL PROTECTED] On > Behalf Of nmsflex > Sent: Wednesday, March 22, 2006 8:24 AM > To: [email protected] > Subject: [flexcoders] flex 2 integration with .net web service > > Hi there! > > i'm playing around with flex 2 beta last two month, then i love it but > i have hard time to find details document about passing complex object > from flex to .net web service. There have very good couple articles > discuss about it but no one can explain deeply detail how this > integration part work.simple Example. > > at client side i have 3 field data need to pass to web service. > 1. first name. > 2. last name. > > > after i get this information from user , then i create my own xml format > > <register> > <userfirstname>first name</userfirstname> > <userlastname>last name</userlastname> > </register> > > then i have to covert this to string xml then passing it that's the > way i work right now. > > at back end i have function to receive string xml for input. > > > My question is: > > is any way i can pass real xml object into web service tags in flex 2 > and then at back - end i use XmlDocument parameter for input. > > if it is possible? then how exactly it work. i know in flex 2 i can > write as3 function to call web service and passing object for > parameter input but after i pass that object then what happen? > > i'm really looking for documents for this. > > thanks for you help. > > > > > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 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: http://docs.yahoo.com/info/terms/

