[flexcoders] Re: Flex Interview Questions

2008-02-10 Thread Anas Mughal
Last year, I was interviewed for a Flex position. The hiring manager 
kept on asking Java and J2EE questions. So, I asked him politely: you 
are hiring me for a flex position, why do you keep on asking Java 
questions?

His answer was: I don't know Flex So, I will ask you Java 
questions!

Prepare some Java answers as well in case you encounter one of those 
managers!!!


Best of luck.
--
Anas Mughal







--- In flexcoders@yahoogroups.com, Jimmi Prajapati 
[EMAIL PROTECTED] wrote:

 Hello Friends,
 
 From where can I find Flex Interview Questions.
 
 
 
 Thanks in Advance.
 
 Regards  Thanks
 Jimmi





[flexcoders] Re: Newbie : Flex Hosting Question

2008-01-04 Thread Anas Mughal

How does JSP fit in your architecture?
Let us know and we would try to help.
--
Anas Mughal




--- In flexcoders@yahoogroups.com, hardikpandya2000 
[EMAIL PROTECTED] wrote:

 Hello FlexCoders,
 
 I am newbie to Flex and have a very basic question
 
 I need to make Flex Application with Mysql + JSP, what do I need to 
 host this kind of application live.
 
 What are the options / alternatives ?
 
 I would really appreciate any help and suggestions.
 
 Thank you all in advance,
 
 Hardik





[flexcoders] Re: Flex and Server-Side Java classes

2007-09-26 Thread Anas Mughal

Check out WebORB.

There are also some open source alternatives:

Granite
Red5
Flourine (.NET)
PHPAMF (PHP)

--
Anas Mughal




--- In flexcoders@yahoogroups.com, Mark Doberenz [EMAIL PROTECTED] 
wrote:

 All,
   I've been a part of this list for a long time and I'm a pretty 
decent Flex
 programmer.  However, I'm not too familiar with the server-side 
aspect of
 things.
   I wanted to post a server-side noob question for you experts out 
there.
 
   If I have a couple existing applications, one that runs in JBoss, 
one
 that's .NET with a SOAP API, and I want to set up a broker system 
using java
 and JBoss, is it possible to have Flex make Remote Object calls to 
the
 broker system if I DON'T use LCDS?  In other words, do I need LCDS 
to call a
 server-side Java class?
 
   Please no flames regarding this question.  If I've said something
 incorrectly, please let me know so I can learn more about this 
stuff.  I
 hate that I don't even know the questions to ask. :(
 
 Thanks,
 Mark





[flexcoders] Dynamically rendered UI

2007-04-09 Thread Anas Mughal
I read about the possibility of Flex UI dynamically rendered. Could 
some be kind enough to share a code snippet of how they achieved that.

Thank you in advance.



[flexcoders] Logging in Flex

2006-09-28 Thread Anas Mughal



I am wondering if there is some sort of logging mechanism that I could use to log messages/errors from a Flex application. I would like the log to be created on the server.It would be great if there is something like Log4J in Flex.Thank you for your advice.  --  Anas Mughal 
		Stay in the know. Pulse on the new Yahoo.com.  Check it out. 

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Logging in Flex

2006-09-28 Thread Anas Mughal



John,  Thank you very much for your response.  We will give it a try and provide feedback.  Regards.  --  Anas MughalJohn Grden [EMAIL PROTECTED] wrote:  Hey Anas, I've put out a test version of Xray's flex2 logger which comes with a panel component if you don't have the xray interface to see your trace out put. Chris and I modeled it after log4j style of logging.here's an email I sent a while ago about it:
 I'm in the very early stages of getting Xray's connector ported over the AS3 and the first step has been to get the new Logger up and running. So far, it's working great and I've included an OutputPanel.mxml that users can include it in their app if they don't want to use the xray interface ( plus, i've not implemented log level switching with xray's interface yet ).http://mirror1.cvsdude.com/trac/osflash/ xray/browser/downloads/connector/flex/XrayLogger_as3_alpha.zip?format=raw screenshot:http://www.rockonflash.com/ xray/images/XrayLogger_Flex2_withInterface_0.pngsome featurues:1. log level support (debug, info, warn, error, fatal)2. time stamp 3. Calling method is reported4. objects are recursed5. outputs to Xray's interface if you have it runningOutputPanel features (not necessary for running logger):1. runtime log level control2. Resizeable (drag lower right corner)3. Window shade by double clicking header of OutputPanel's header area4. SearchUsage:copy com.blitzagency.xray.logger into
 your classes/src folderif you want to use the OutputPanel (optional): copy OutputPanel.mxml to your src folder or where ever your main app is. Add this line to your app:ns1:OutputPanel id="outputPanel"/Add this property to your mx:Application node:xmlns:ns1="*"Using it in your app:import com.blitzagency.xray.logger.XrayLog;  .public var log:XrayLog;.log = new XrayLog();log.debug(message:String [, dump:object]);log.info(message:String [, dump:object]);log.warn(message:String [, dump:object]);log.error(message:String [,
 dump:object]);log.fatal(message:String [, dump:object]);I've included the FlashDevelop project in the zip. I would love suggestions/comments on implementation and features. Right now, it doesn't color code the output based on the log level, but that is something I'm looking into. Anyway, if anyone wants to give it a whirl, I'd really appreciate the feedback,  On 9/28/06, Anas Mughal [EMAIL PROTECTED]com wrote:  I am wondering if there is some sort of logging mechanism that I could use to log messages/errors from a Flex application. I would like the log to be created on the server.   
 It would be great if there is something like Log4J in Flex.Thank you for your advice.  --  Anas Mughal  Stay in the know. Pulse on the new Yahoo.com. Check it out. -- [JPG]
		Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates starting at 1¢/min.
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Persist Flex session data

2006-09-20 Thread Anas Mughal

Is there a way to persist flex session data on the user's computer? We 
are considering persisting very small amount of data.

Thanks in advance.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Why is import mandatory?

2006-09-07 Thread Anas Mughal



Even when you fully qualify it, the compiler does NOT know about that type.  It needs to be imported.Thanks.  --  Anas MughalTracy Spratt [EMAIL PROTECTED] wrote:  I can’t say “why”, but import IS mandatory, per the docs (migration pdf?), and the fully
 qualified path should only be used for “disambiguation”.TracyFrom: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Franck de BruijnSent: Thursday, September 07, 2006 3:27 PMTo: [EMAIL PROTECTED]ups.comSubject: [flexcoders] Why is import mandatory?Hi,Just a small actionscript question.I have the following interface definition:package a.b.c  {   public interface SecurityWebservice   {   function findUser(userId:String):d.e.f.UserDto;  
 }  } It does not compile (1046: Type was not found), which I find strange since I specify the fully qualified name of the type.When I include the statement ‘import d.e.f.UserDto;’ it compiles. Can someone explain
 why this is?Thanks,  Franck 
		Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Passing data from JSP to Flex

2006-08-24 Thread Anas Mughal



I am new to Flex. Could someone help me with the following question.We have a struts-based application that we are gradually porting over to Flex. Currently, the user authentication (login screen) is done via a JSP page. A new module of the application is wrriten in Flex.We would like to pass the logged-in user information to Flex. How should we do that?Thank you very much for your kind assistance.  --  Anas Mughal 
		Get your email and more, right on the  new Yahoo.com 

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___