[flexcoders] Re: HotFix 2 - Flex Encoding Error - brakes my WS Simple Header

2007-06-08 Thread paulwelling
, username); ws.addSimpleHeader(UsernameToken, , password, password); Anyone with an idea on how to get this to work? Thanks, Paul --- In flexcoders@yahoogroups.com, paulwelling [EMAIL PROTECTED] wrote: Hello List, Under 2.0, 2.0.1, and 2.0.1 HF1 my simple header was being Encoded correctly

[flexcoders] Re: HotFix 2 - brakes my WS Simple Header

2007-06-08 Thread paulwelling
guys did your best to be backwards-compatible, but it's clear that there are some holes and it's tripping people up. Regards, Dave. Cynergy Systems, Inc. On 6/7/07, paulwelling [EMAIL PROTECTED] wrote: Hello List, Under 2.0, 2.0.1, and 2.0.1 HF1 my simple header was being

[flexcoders] HotFix 2 - brakes my WS Simple Header

2007-06-07 Thread paulwelling
Hello List, Under 2.0, 2.0.1, and 2.0.1 HF1 my simple header was being Encoded correctly: ws.addSimpleHeader(UsernameToken, , username, username); ws.addSimpleHeader(UsernameToken, , password, password); creates... SOAP-ENV:Header UsernameToken username paul /username

[flexcoders] WebService and ArrayCollections - only 1 is being sent ..!

2007-06-01 Thread paulwelling
Hello List, I am sending up a complex object in a WebService. The complex object has an attribute that is an ArrayCollection, with the ac having multiple items that have been .addItem(object); The WSDL has the objects's attribute in question defined as a Set of these objects. No matter how I

[flexcoders] Re: Date - Timezone with WS

2007-05-17 Thread paulwelling
a timezone specified. Pete From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulwelling Sent: Wednesday, May 16, 2007 6:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Date - Timezone with WS Hello, I have a WS

[flexcoders] Date - Timezone with WS

2007-05-16 Thread paulwelling
Hello, I have a WS that returns a date. Our server is in EDT. Using Charles to sniff the date: 2007-05-15T00:00:00-04:00 When debugging the resultset in Flex, it appears that Flex has ignored TZ info passed and has applied the client's TZ to the date..! (I changed my PC's TZ to GMT and the

[flexcoders] Re: DataGrid and complex objects..

2007-05-04 Thread paulwelling
Hello Alex, Sorry being such the nob... but couldn't find the mentioned post at http://blogs.adobe.com/aharui/ .. Thank you for all the help! Paul --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: No plans. It slows down everybody. However, I posted a solution on my

[flexcoders] Dispatching Event Question?

2007-03-30 Thread paulwelling
Hello, Question on disipatching events that I hope someone can clear up... I have two custom components, A and B created at the Application level. I want to send a custom event from A to B. Inside of B creationComplete, I have addEventListener(myEvent, myBListenerFunc); Inside of A, on a

[flexcoders] Re: Dispatching Event Question?

2007-03-30 Thread paulwelling
(...) then 'a' will dispatch it. What you need is smth like: instanceOfA.addEventListener(myEvent, myBListenerFunc); inside of the B instance. R. On 30 Mar 2007 08:25:28 -0700, paulwelling [EMAIL PROTECTED] wrote: Hello, Question on disipatching events that I hope someone can

[flexcoders] WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread paulwelling
Hello, I just examined the latest FP9 Update Fixed Issues web page, and see no mention of the WebService Fault Handling Issue (fault body not passed to player) that has been discussed many times here... This is a really big issue for people not using a proxy, and I'm surprised that more of us

[flexcoders] Re: WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread paulwelling
vendors. We are in discussions with them to try to have the right information accessible to plugins in some of their next versions. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulwelling Sent: Tuesday, March 20, 2007 8:59

[flexcoders] DataGridColumn not handling property.property references in Webservice Result

2007-03-19 Thread paulwelling
Hello, I have a WebService that returns an ArrayCollection of ObjectProxys. Each ObjectProxy in the collection contains primative data types as well as other complex ObjectProxys. I have no problem accessing the primative data types at the top level in an ObjectProxy, for the 'datafield' of the

[flexcoders] Re: DataGridColumn not handling property.property references in Webservice Resul

2007-03-19 Thread paulwelling
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulwelling Sent: Monday, March 19, 2007 12:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGridColumn not handling property.property references in Webservice Result Hello, I have a WebService

[flexcoders] Re: problem in parsing xml return by HTTPservice, could it be namespace issue

2007-02-19 Thread paulwelling
Hello, Has anyone found out why the parsing of a XML document fails when using a node's name (but succeeds when using an index [n]) when there is a namespace definition in the node..? var xml:XML = foo bargood/bar bar xmlns=http://model.gts.com;bad/bar /foo trace(xml..bar); //good good

[flexcoders] Re: View State - How to call a function on a custom component???

2007-02-08 Thread paulwelling
: I don't believe there is a way to do this. Is your function something that you could turn into a setter? -Sho From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulwelling Sent: Wednesday, February 07, 2007 6

[flexcoders] View State - How to call a function on a custom component???

2007-02-07 Thread paulwelling
Hello, I would like to be able to call a function on a custom component when adding a child to a View State. There is a setProperty tag. Any way of call a function on that component from within the AddChild tag of a View State??? Thanks, Paul

[flexcoders] Re: Could it really take so much code to color a row in a DataGrid..?

2007-02-01 Thread paulwelling
@yahoogroups.com, paulwelling pwelling@ wrote: Hello, I'm sure I've missed it, but is there a straight forward way to color the background of a DataGrid row..? Thanks for the info, Paul

[flexcoders] Could it really take so much code to color a row in a DataGrid..?

2007-01-28 Thread paulwelling
Hello, I'm sure I've missed it, but is there a straight forward way to color the background of a DataGrid row..? Thanks for the info, Paul

[flexcoders] Help needed working with backgroundImage

2007-01-27 Thread paulwelling
Hello, I need a little help from the Flexperts on this list... This seems like it should be easy, so I'm feeling that I've missed something... I have a .jpg that I want to use as our backgroundImage, 600x800, for the Application. I do NOT want it to be stretched to fill up larger browser

[flexcoders] Re: webservice SOAP envelope

2007-01-10 Thread paulwelling
Hello mw, There maybe others, but Charles works great: http://xk72.com/charles/ Paul --- In flexcoders@yahoogroups.com, mrinal.wadhwa [EMAIL PROTECTED] wrote: Is there a way to see the outgoing/incoming SOAP envelopes when I call an operation in a webservice from a flex app

[flexcoders] Securing Flex / SWF - WS question

2007-01-09 Thread paulwelling
Hi all, Being new to the Flex/Flash world... I'm looking to secure our WSs so that only our SWFs can call them, in a non-proxied configuration. I'm thinking of placing some auth. token in the SWF that gets sent with all the requests. Can the .swf format be decompiled in any meaningful way,