[flexcoders] FlexMDI controlling Tab navigation

2009-03-31 Thread raja_s_patil
hello, I am in processing of evaluating Flex to be used for migrating our Desktop Delphi database applications to WEB. Till Date we found very positive features and have opinion that Flex is suiting our many requirements. Our existing application is composed of many forms and some them remain

[flexcoders] Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Hello, We are in phase of evaluating Flex for converting a large delphi-Firebird Client Server database desktop application to a Web application. Till date we have written a small pilot application and is accepted by almost everybody. In Second Phase of evaluation a doubt about download time is

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, RSLs are only really useful if you are making two or 3 different products and want to share the code between them. For a single product, they offer no discernable value. We actually removed RSLs from our product because they were impacting run-time performance.

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, Sounds like one of your DLLs is roughly equivalent to a module in terms of what you want to deliver. Just remember that each Flex module is based off a single mx::Module, so if you want to package up several forms in a single module, you'll need to load the module

[flexcoders] Can Flex Access Database on different web server than application web server

2009-04-13 Thread raja_s_patil
Hello, We plan to do as follows We will keep all application files on a web server say www.xxx.com and we would like to keep our database on all together different web server say www.yyy.com which is at different physical location. By doing so can flex application access data ? if yes what are

[flexcoders] Re: Can Flex Access Database on different web server than application web server

2009-04-14 Thread raja_s_patil
thanks Tracy Spratt Flex does not access any database directly (except maybe SQLServer, via native http endpoints) You must use a server platform for database integration. .Net, php, ColdFusion, java, etc are popular server tier platforms. yes I am aware of that. We plan to use BlazeDS

[flexcoders] Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Hello friends, refer following code sniplet /*** private function onItemClick(event:ListEvent):void { if ((event.target as List).selectedIndex == 0 )

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
thanks Tracy Spratt What error? ReferenceError: Error #1065: Variable Form1 is not defined. at global/flash.utils::getDefinitionByName() at MyFirst/menuSelected()[I:\Flex\RSP_TESTS\MyFirst\MyFirst.mxml:31] at

[flexcoders] Re: Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread raja_s_patil
I am also beginer and have just started writing some exercise applications before we take up a project. No database connectivity, no styling/skinning/effects yet. Plain vanila mxml and actionscript application. This is what i followed 1 Lynda Eccential training 2 Total Training video tutorial 3

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Thanks Tracy Spratt Have you imported Form1 and Form2? I tried import Form1; but no effect. How a import statement if Form1 and Form2 are in same source directory that of application ? The output directory is bin-debug within the source directory. Project directory is same as source

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Thanks Tracy Spratt, Ok, what happens if you just try to instantiate a Form1? If the code is not finding this class then you certainly can't proceed. As I have stated in my earlier posts commenting the onItemClick function the Form1 can not be instantiated if I remove comment on

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-15 Thread raja_s_patil
Thanks Tracy Spratt, The compiler compiles the function regardless of whether it is ever called, If you reference a class that it cannot find it will error. No, if you are using normal classes, then you must have a reference to that class in order for it to be linked in at compile.

[flexcoders] Need Suggestions for database application.

2009-04-15 Thread raja_s_patil
Hello, We are in process of converting a Desktop C/S Database application to web application. Till date we have not developed any web application. We have evaluated Flex as development platform and created a small pilot application without data access and the respective client has admired general

[flexcoders] Re: Need Suggestions for database application.

2009-04-16 Thread raja_s_patil
Thanks Steve and Deane Venske for a valuable suggestion, I would like to take ur suggestions and study it further in details i.e. with a hands on experience before we adopt it in the project. Its nice that Deane Venske has past experience in delphi so his opinion is valuable for us. Well Deane

[flexcoders] Re: Need Suggestions for database application.

2009-04-16 Thread raja_s_patil
Thanks Steve, PHP 6 is not out yet and won't be for a while. The latest Release Candidate is 5.3 and latest stable is 5.2.9. I am using 5.2.3 on Red Hat Linux. For PDO, check out http://us.php.net/manual/en/book.pdo.php. This Link dont work, I think its not complete since ends with a .

[flexcoders] Re: Need Suggestions for database application.

2009-04-17 Thread raja_s_patil
Thanks JC for ur response, PHP is good for server-side and there are frameworks that will help you encapsulate database layer so you can easily switch from one db engine to another e.g. MySQL to PGSQL,etc. May I request u to name good ones so that our study minimizes to few ones for

[flexcoders] Re: Need Suggestions for database application.

2009-04-17 Thread raja_s_patil
Thanks Tim Rowe There might be a few others in PEAR, but start with PEAR::DB http://pear.php.net/package/DB We will search there as quick as possible. Can u tell us more about security and performance issues if there are any, in adopting PHP as server side technology ? Thanks once again

[flexcoders] Re: Need Suggestions for database application.

2009-04-17 Thread raja_s_patil
Thanks Deane Venske and steve for ur valuable guidance, Now the data access ideas are taking some shape. now we have to study PHP first then the PDOs and finally the webORB. As far as PHP IDE is concerned we have to use Some open source solution initially till budget gets approved then we can

[flexcoders] Need Suggestions for Reporting In Flex Applications.

2009-04-17 Thread raja_s_patil
Hello Friends, We are in process of evaluating Flex for Converting a Delphi-Firebird Desktop C/S application to a web application. Till date this list has helped us in two aspects of Application UI and Data access. Now we need help on Third aspect of Application REPORTING. The application under

[flexcoders] Re: Need Suggestions for Reporting In Flex Applications.

2009-04-18 Thread raja_s_patil
Thanks Dean, I have no idea about the dot matrix printers. But generally I do all my reporting using PHP. At the end of the day flex is in a browser and you are going to be limited by that. I'm sure PHP can produce a format that would work well for a dot matrix printer. If not, you could

[flexcoders] Re: Need Suggestions for database application.

2009-04-18 Thread raja_s_patil
Thanks Lee, I have been searching around for a while on different setups for flex and have recently been using the following: A Flex UI with symfony framework on php5.2.8 on MySQL database. Although I have only been trying out the symfony framework for a while it appears very powerful and

[flexcoders] Re: Need Suggestions for Reporting In Flex Applications.

2009-04-20 Thread raja_s_patil
I have no idea. I stream the resultant PDF or Excel file to the user so they can open it in the native application. Well purpose of xls sheets is for further analysis so help of native application is necessary, And as far as pdf are concerned Firefox can show them in another tab I dont

[flexcoders] CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-21 Thread raja_s_patil
Hello, With reference to our topic few days ago and responses there on we are converging on PHP as server side technology. Within that we shortlisted two options 1 CakePHP + CakeAMFPHP - Adapter classes to make AMFPHP work seamlessly with CakePHP. This way, you can leverage your

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-21 Thread raja_s_patil
Thanks valdhor, Sorry, I cannot comment on cake as I have not used it. I do know that WebORB is fast, reliable and community support is very good. I find it very easy to code for (Although I could be biased as I have used it for a long time). I would be reluctant to use CakeAMFPHP as

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-21 Thread raja_s_patil
Thanks Steve, Actually, WebORB includes a lot of examples including CRUD. Once you download and install WebORB on your server, just navigate to http://yourserver/LocationYouInstalledWebORB/ This should bring up the console. Click on the Examples tab and then click on the tree

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-21 Thread raja_s_patil
Thanks Brad Bueche, If you have SLA's in terms of maintenance and production response with your customers you may want to partner with the party that can also offer that contractural level of service to you. (My experience with the webOrb team is that they are very responsive). With that

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-22 Thread raja_s_patil
Thanks Steve, Actually, WebORB includes a lot of examples including CRUD. Once you download and install WebORB on your server, just navigate to http://yourserver/LocationYouInstalledWebORB/ This should bring up the console. Click on the Examples tab and then click on the tree

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-22 Thread raja_s_patil
Thanks Steve, AFAIK no - They give you enough to get going but any further is up to your own development efforts. There should be no reason you can't add to the console for code generation. In my case, I did not use any of the examples or code generation - I just built everything from

[flexcoders] Using some frameworks for PHP serverside

2009-04-24 Thread raja_s_patil
Hi, With lot of help from Steve on this list I could get a Flex test application running with webORB and PHP-Firebird as serverside many thanks to him. We also trying run it with other AMF alternatives just for evaluation otherwise webORB is very satisfactory. Performance is acceptable, Easy to

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-27 Thread raja_s_patil
Thanks Steve, There are a couple problems I have found with AMFPHP. The first is an error that pops up intermittently. I can't remember it exactly but have posted about it before. Suddenly it appears for no reason and you can't get rid of it no matter what you do. Changing to Weborb fixed

[flexcoders] Nested Objects with webORB PHP

2009-07-06 Thread raja_s_patil
Hi, In my project I want to save/retrieve following objects class PurchaseOrderVO { PO_no:int; . other header info ... Items:arraycollection; } The Items arraycollection contains array of following class class POItem { Item_cd:string; Item_rate:number; Qty:Number; Amount:Number;

[flexcoders] Re: Nested Objects with webORB PHP

2009-07-08 Thread raja_s_patil
thanks valdhor Just treat them as you normally would. WebORB's serialization/deserialization should take care of everything for you. I have used nested objects (Or objects containing other objects) when sending from PHP to Flex. I have not done it the other way but would expect it to

[flexcoders] need help to print text file available on server

2009-08-02 Thread raja_s_patil
Hi, If a text file is created on server through PHP Can Flex application print it directly on client's LAN printer ? If yes HOW ? Can it print that in Fast DMP mode i.e. raw text printing to dot matrix printers ? if not what alternative can be used ? I am able to download it from server and save

[flexcoders] Printing in fast DMP modde.

2009-08-02 Thread raja_s_patil
Hi, I would Like to print local/remote plain text files in fast dot matrix mode i.e. raw text output to printer, equivalent to DOS command is copy filename.txt lpt1:. Raw text output to printer is required since its almost 10/15 times faster than equivalent gfx printing. Can It be done in

[flexcoders] How To Print a text File ?

2009-08-12 Thread raja_s_patil
Hi, I am developing a flex application with PHP backend. I have created a Report in PHP in the form of Text file and I would like to print it on client side either on printer attached to client or network printer on Client LAN. How could I do this without disturbing Pagination in text file. The

[flexcoders] How to access web page on own web site.

2010-03-05 Thread raja_s_patil
Hello, I am beginner in flex and developing a test project using flex, spring, spring-flex, spring security and iBatis. The test application is mix of jsp pages and flex. The application is embedded in one of jsp pages. We are using a jsp page for logging in and on successful login page with

[flexcoders] Re: How to access web page on own web site.

2010-03-09 Thread raja_s_patil
thanks Tracy Spratt, You want to use Flex to navigate to html pages? If so, that is a serious waste of Flex RIA technology. Well, Since Flex application is occupying almost whole space in browser to best my knowledge I found only this way to jump to Home Page and Logout from Spring

[flexcoders] How to use blue plastic theme plz. Guide

2010-03-17 Thread raja_s_patil
Hello, I am developing my first flex project and I would like to use Blue Plastic theme to my project. I have downloaded the zip file but I could not make out how to apply to my application. Can Somebody guide me in form of a short how to, URL to related material, a example application etc.

[flexcoders] TitleWindow Show and Hide effects

2010-03-18 Thread raja_s_patil
Hello, In My Project I am Using many TitleWindows as popups via PopUpManager Create and remove popups methods. All is working fine. Now I would like to apply some effects like fade or zoom while the popup is being shown and removed and I would like to define those effects in a central location

[flexcoders] Link button custom look

2010-05-23 Thread raja_s_patil
Hello, I would like to have link button a custom look. e.g when not selected it should have some background color with rounded corners, when rollover it should have other background color and when its in pressed state it should have some other background color. with styles properties I could

[flexcoders] Time Problem flex4 + blazeDS + spring

2010-05-23 Thread raja_s_patil
Hello I am developing my first application in which I have to deal with time. On server side java VO i have defined the field as java.sql.Time and on flex side VO it has to be date. This is happening in windows XP client (browsers Firefox Chrome) while inserting data I am making a fresh copy

[flexcoders] Re: Time Problem flex4 + blazeDS + spring

2010-05-25 Thread raja_s_patil
Evan Klein http://cookbooks.adobe.com/post_Date_time_transfer_in_BlazeDS-13114.html On Sun, May 23, 2010 at 6:57 PM, raja_s_patil kpr.rspa...@... wrote: Hello I am developing my first application in which I have to deal with time. On server side java VO i have defined the field

[flexcoders] Re: Time Problem flex4 + blazeDS + spring

2010-05-25 Thread raja_s_patil
offset when time is 05:30 and letting discrepancy of 23:20 to slip in in converted time. Really this is driving me mad. it seems that time date dealing in flex java has lots of tricks which need to reveal. Thanks and best regards. Raja --- In flexcoders@yahoogroups.com, raja_s_patil

[flexcoders] Defining Style For spark Alert/TitleWindow Header in .css

2012-01-27 Thread raja_s_patil
Hi friends, I am developing a project in FlashBuilder 4.6. I am trying to define style of header with specific colors for its background and Font. The thing which I have tried is as below but I am able to change the background color and apply flat looks (solid Color) to the title. Please guide

[flexcoders] Flex, BlazeDS, Spring BD Integration, Spring, Java In Tomcat Cluster.

2012-12-31 Thread raja_s_patil
Hello, I have Flex, BlazeDS, Spring, java application working in Standalone Tomcat Instance. For scalability we decided to test in Vertical Cluster of three Tomcat Instances. Initially we tested a simple JSP maintaining session attribute of counter in HAProxy, Memcached-Session-Manager (MSM)

[flexcoders] Spring Security Login From AIR Application

2013-02-21 Thread raja_s_patil
Hello, I am in process of Converting Flex-BlazeDS-Spring-SpringSecurity application to AIR-BlazeDS-Spring-SpringSecurity Stack. The main reason is the client's requirement needs some local data storage and client feels it inconvenient to use application in browser. Backend Application server

[flexcoders] Re: Spring Security Login From AIR Application

2013-02-21 Thread raja_s_patil
Please do not mind I figured out How to do it. Its simple. Just use URLLoader, URLRequest, URLVariables Classes and emulate what HTML form does. here is the code var urlVar:URLVariables; var urlReq:URLRequest; urlVar = new URLVariables(); urlVar.j_username = CEO;