IIRC: The way it works in BlazeDS is not that it acts as an actual "http proxy" where you make fully qualified requests over http, but you send requests down a flash-remoting socket connection, and it makes requests and pipes back the result. The end result is that the browser doesn't get to intercept your http requests and throw out the body of 500s, and it should just turn up in your fault event.
**Note that we're using servlet filters to return 200s as we're using SOAP and the fault envelopes work fine that way, so we're not actually using BlazeDS, but I'm fairly certain that's how it works. -Josh On Tue, Jul 29, 2008 at 3:53 AM, ron_mori <[EMAIL PROTECTED]> wrote: > Josh, > Thanks for the reply - the mystery is how to access the server > response body content for a faultEvent. My proxy server does a great > job of forwarding requests and responses but my client still can not > access the response xml body content for an 'error' (status 500) > server response. > > I'm guessing that my proxy will somehow transform 'error' responses by > wrapping them in a 'good' response.. or maybe not. > > Any insight on the mechanics? > Thanks. > > --- In [email protected], "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > > > That should be taken care of automatically when using BlazeDS as a > proxy. > > > > -Josh > > > > On Mon, Jul 28, 2008 at 3:43 PM, ron_mori <[EMAIL PROTECTED]> wrote: > > > > > The fault handler is being call. (server 500 status) The good news > > > is that my research points me towards the BlazeDS proxy server which I > > > have successfully set up to make my remote server calls. > > > > > > Now the trick is to get the proxy to grab the remote error msg and > > > return a "status 200" good msg back to the client so I can process the > > > body of the error msg. > > > > > > thanks. > > > > > > > > > ------------------------------------ > > > > > > -- > > > Flexcoders Mailing List > > > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > > > Search Archives: > > > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups > > > Links > > > > > > > > > > > > > > > > > > -- > > "Therefore, send not to know For whom the bell tolls. It tolls for > thee." > > > > :: Josh 'G-Funk' McDonald > > :: 0437 221 380 :: [EMAIL PROTECTED] > > > > > > ------------------------------------ > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups > Links > > > > -- "Therefore, send not to know For whom the bell tolls. It tolls for thee." :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED]

