[flexcoders] Re: .NET Webservices

2007-03-09 Thread scott_flex
Here's how i've been calling my web services right or wrong... private var ws:WebService = new WebService(); // handle any error for this web service instance ws.addEventListener(fault, faultHandler); ws.loadWSDL(http://mywebsite.com/service.asmx?WSDL); // MyFunction just takes one

RE: [flexcoders] Re: .NET Webservices

2007-03-09 Thread Brian Holmes
[mailto:[EMAIL PROTECTED] On Behalf Of scott_flex Sent: Friday, March 09, 2007 2:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: .NET Webservices Here's how i've been calling my web services right or wrong... private var ws:WebService = new WebService(); // handle any error

RE: [flexcoders] Re: .NET Webservices

2007-03-09 Thread Andrew Trice
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Friday, March 09, 2007 4:12 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: .NET Webservices Thanks Scott, I guess the stuff I have to call is just a lot more complicated

[flexcoders] Re: .NET Webservices with Structure Parameters

2006-03-09 Thread mvbaffa
Thanks Dave I am using Flex 2.0 Beta 1. Unfortunatelly I must use Webservices, since they are all developed and ready to use. Besides the Enterprise Services are too much expensive, the project cannot afford it. Wouldn't it be easier to use arrays. Is there any problems passing arrays to

[flexcoders] Re: .NET Webservices with Structure Parameters

2006-03-09 Thread Dave Wolf
Arrays of simple types like String, Int etc would work (I believe). The doc/lit issue is a big bummer right now. -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY --- In flexcoders@yahoogroups.com,

[flexcoders] Re: .NET Webservices with Structure Parameters

2006-03-08 Thread Dave Wolf
If this is Flex 1.5 we have seen it have issues with CompelxTypes (e.g. a struct) when using document/literal encoding (the default for .NET I believe). Can you modify the service to use rpc/encoded? If you have a good repro of this using doc/lit you should open a case so Adobe can work it.