RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
This is currently a limitation in the Flash Player ( all versions ). SOAP faults require HTTP 500 to returned. When the FP sees a 500, it stops reading data from the socket. The current workaround is to use the proxy or to use some other mechanism to change the HTTP status code to 200

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
. Is this not being fixed for the final release? :-( From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: 20 June 2006 13:29To: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code This is currently a limitation

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
of this for you. You would have to check with them to see if they are doing this for Cold Fusion. Carson From: flexcoders@yahoogroups.com on behalf of Daniel TuppenySent: Tue 6/20/2006 9:06 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code This sounds pretty

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
HagerSent: 20 June 2006 14:11To: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code Preaching to the choir. :) Believe me...we feel the same way. From everything we have heard from Adobe, this will not be addressed within the player within

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
. I'd hate to see Flex geta bad rap over this. Carson From: flexcoders@yahoogroups.com on behalf of Daniel TuppenySent: Tue 6/20/2006 9:21 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code We're using .NET web services, no cold fusion. Looks like we'll have

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
Clarification...significant experience in web services development. Carson From: flexcoders@yahoogroups.com on behalf of Carson HagerSent: Tue 6/20/2006 9:21 AMTo: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code Sorry

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Dirk Eismann
[mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: 20 June 2006 14:11To: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code Preaching to the choir. :) Believe me...we feel the same way. From everything we have heard

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
we get that far, and see what works best. Thanks for the info! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: 20 June 2006 14:22To: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code Sorry. I

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code If you can get hold of the pure HTTP response in .NET (which I doubt) then you could set the HTTP status code to 200. This way the exception will be handled correctly by Flash Player (and that's how the Flex WS proxy handle this, too

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
of Daniel TuppenySent: Tue 6/20/2006 9:50 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code We've not got many implementations so far, so there's not a great deal to change, it's the fact that it's messy thatI don't like, rather than there's more work involved

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code You can definitely do this so that only the flex app gets the affected response. The FP has a unique user agent name that you can look at to determine if you need to change the http status code or not. That's how we've done this. Carson From