[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 most likely always take longer than 30 seconds.
 
 Is there some timeout happening on the server-side in Tomcat, or maybe
 in the lower-level HTTP request from flex? How can I debug this?
 
 Thanks,
 -Andrew



Any news on this... :)



[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@... 
wrote:

 
 
 --- 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 most likely always take longer than 30 seconds.
  
  Is there some timeout happening on the server-side in Tomcat, or maybe
  in the lower-level HTTP request from flex? How can I debug this?
  
  Thanks,
  -Andrew
 
 
 
 Any news on this... :)





[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
 an idea
 On Sep 7, 2011 4:21 PM, valdhor valdhorlists@... wrote:
  I have a project where I need to show the progress of a, well, project.
 The project has seven specific stages that it must pass through.
 
  What I would like to do is have an animated arrow move from left to right
 across the screen until it hits a target on the right side. At any time a
 user can navigate to the page to see what stage the project is up to. I'd
 like the user to see the arrow move to that point and stop.
 
  Unfortunately I am not a designer nor animator. I have looked at tweening
 but that just seems to be able to move an object (like the arrow) from one
 place to another but I would like the arrow to elongate as it moves (ie. The
 head and tail stays the same but the shaft elongates).
 
  I have PNG images of the arrow and target and can break the arrow into a
 head, a tail and a 1-pixel wide shaft.
 
  If anyone has any ideas on how to accomplish it, examples/tutorials or
 sites I can visit I would be most appreciative. (I have been googling all
 day but can't find anything useful)
 
 





[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 - connecting over ssl is 
not an option.  

Any way around this?

Thanks!

David



[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,
Nick


[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?


Cheers,
Nick



On 9 September 2011 16:31, Nick Middleweek n...@middleweek.co.uk wrote:

 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,
 Nick




[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: 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?
 
 
 Cheers,
 Nick
 
 
 
 On 9 September 2011 16:31, Nick Middleweek nick@... wrote:
 
  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,
  Nick
 
 





[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