[flexcoders] Re: WebService timeout to Axis on Tomcat

2011-09-09 Thread pirvulescu_adrian
--- In flexcoders@yahoogroups.com, andrewwestberg andrewwestberg@... wrote: In my flex app, I keep getting a webservice fault after 30 seconds. I've set the requestTimeout property higher, but it doesn't seem to have an effect. It only happens on a long-running webservice call that will

[flexcoders] Re: WebService timeout to Axis on Tomcat

2011-09-09 Thread valdhor
Try setting the request timeout to zero. Also, what is the actual fault that is returned? Add the following to your fault handler to find out... Alert.show(fault.fault.faultString, fault.fault.faultCode.toString()); --- In flexcoders@yahoogroups.com, pirvulescu_adrian pirvulescu_adrian@...

[flexcoders] Re: Animating an arrow into a target

2011-09-09 Thread valdhor
Both of those ideas look promising. I'll have to see if they will work with mx components as I am still using Flex 3.5a. Thanks. --- In flexcoders@yahoogroups.com, Mark Embrey mark.c.embrey@... wrote: check out http://flex4fun.com/2010/11/30/flex4-navigation-menu-using-state-and-timerfor

[flexcoders] Self Signed SSL Certificates

2011-09-09 Thread David Nester
Greetings! I am trying to write a Flex desktop application which connects to a SOAP-based service. Question is - the server uses self-signed certificates and there is no way around having the server listen on an additional (non-ssl) port. I have read that with the desktop applications -

[flexcoders] Can't see scrollbars on an MX list in a Spark TitleWindow

2011-09-09 Thread Nick Middleweek
Hi, Are there any obvious reasons why my MX List won't show scrollbars. It's tucked inside a Spark TitleWindow. The list has verticalScrollPolicy = on, width and height = 100% and the TitleWindow is width = 400, height = 250. There is enough data so the List should render scrollbars. Thanks,

[flexcoders] Re: Can't see scrollbars on an MX list in a Spark TitleWindow

2011-09-09 Thread Nick Middleweek
Mmmm, I must be doing something silly, I've also tried this using MX only components, so MX:TitleWindow with an MX:List. Here's my code: http://pastebin.com/ZkzPQBgJ ... and I'm not getting any Scrollbars on the List... height = 100%, TitleWindow.height=250. Can anyone see what I'm missing?

[flexcoders] Re: Can't see scrollbars on an MX list in a Spark TitleWindow

2011-09-09 Thread turbo_vb
Have you tried setting an explicit height for the List? -TH --- In flexcoders@yahoogroups.com, Nick Middleweek nick@... wrote: Mmmm, I must be doing something silly, I've also tried this using MX only components, so MX:TitleWindow with an MX:List. Here's my code:

[flexcoders] Looking for an example of NTLM proxy support for Flex/Air project.

2011-09-09 Thread scottrowe
Trying to find an example of connecting to an http server via NTLM proxy. Can't seem to find anything but blazeDS specific examples. Can anyone help? Thank you