Using Flex 2 with/without FDS

I am presently designing a web architecture for a client, and
ideally I would like to employ a Flex2 UI on a Tomcat/Java web
server/server component framework (possibly Spring). I am trying to
get a good handle on the necessity of Flex Data Services (FDS) in
this architecture.
What am I really losing should I choose *not* to employ FDS,
and is rolling the entire server side with standard Java technology
fairly doable? Does anyone have any first-hand experience doing
this which they could share?
Given an expert-level server-side Java experience level, I
need to determine whether employing FDS is a necessity or not.
Thanks,
Brad

quote:
Originally posted by:
holmes_z06
only if you want to pay the licensing costs.
We don't use FDS on our project, we just export XML. Might
start using some SOAP in the future. There's no way we could
justify the cost of FDS.
-Jason
Jason,
Thanks for the reply. How have you found the effort required
to manage the XML transmitted by the Flex 2 app to the server-side?
Has this effort been minimal, or have you found this minor? For the
most part, unless I can identify something major that FDS provides
to an org already versed in doing enterprise-class (J2EE) server
development, I'm not quite seeing the need for FDS. I understand
the description of FDS, and the synching / JMS capabilities, but
I'm not sure that this can't be fairly easily managed with standard
Java server objects (servlets, EJBs, or Spring POJOs). I don't want
to get into discussing licensing, but there needs to be
justification for such, especially at a per CPU rate, which is a
common need for everyone.
I'd love to hear from anyone who has employed FDS, or is
familiar with an org who has, who can speak specifically to the
value add experienced through use of this product.
Brad

Similar Messages

  • Please help me, I need to use Flex with CF

    Hi everyone,
    I am starting to retract my brain from an intense 2 days to
    figure out how to use Flex with Coldfusion. I am using Coldfusion 8
    Beta (this part is good, don't need help for CF itself). I am also
    using Flex Builder 2 (with chart but this not the topic). I
    installed FDS 2.5 before to install ColdFusion 8 but I think CF8
    have is own FDS or something like that... anyway, it might help to
    mention it!
    Well, I tried HTTPService, RemoteObject, WebSer vice -
    NOTHING WORKS!!! Argh! Did I mention I spent 2 days? ;-)))
    Well, I start with the basic: a login form with an email (as
    a username) and a password to be validated. I have a CFC to do the
    validation and return a simple message (string): "OK' when it is
    valid and a custom message when it is not valid; depending if it is
    the password and/or the email which is not valid.
    I always got an error. Since the error is different depending
    of the method I use, I will explain the latest method I used in
    this message and try to concentrate on that method specifically!
    The method is WebService and here is the error:
    faultCode:Server.Error.Request
    faultString:'HTTP request error'
    faultDetail: 'Error: [IOErrorEvent type="ioError"
    bubbles:false cancelable=false eventPhase=2
    text="Error #2032: Stream Error .
    URL=http://localhost:8501/iDashboard/login.cfc"].
    URL: http://localhost:8501/iDashboard/login.cfc'
    Any help will be very useful!!!
    Thank's

    Cyber,
    This may be what you are looking for. It worked well for me.
    Flex is sweet, but with the number of people confused about setup
    with CF they sure aren't making any friends.
    Flex/ColdFusion
    setup

  • Using Flex with JSPDynPage

    Hi,
    Can we develop a JSPDynPage component, using Adobe Flex as the UI instead of using HTMLB? (by embedding flex components in the jsp file). Is it possible to call methods in other java files from a flex application?
    Did anyone try to develop a JSPDynPage component this way?
    Regards,
    Sudhir

    Hi,
    Pls check out these links below for this info -
    Adobe Flex with RFC - 
    Binding Data through function module in adobe to display charts
    How to connect to SAP Database from a Adobe flex application?
    Adobe flex and Sap
    Adobe Flex within SAP NetWeaver Developer
    Regards
    Lekha

  • Using Flex with Microsoft Project

    I am absolutely brand new to FLEX. What I saw on the Adobe
    site was a data chart that could be drilled down to expose
    additional layers of "contriburory detail" for the master graph.
    What I am wondering is if it is possible to do something
    similar using Micrsoft Project Data as the basis. MS Project will
    allow users to save the file as XML. So, all the data should be
    available in a form understandable to FLEX.
    Here's the tricky part (and I can add more detail if needed).
    Project will create a summary line (at some level of indentue) and
    show you a calculated %Complete such as 47%. So, level of indenture
    1 I have the major summary tasks of the project at various status
    of %Complete. I believe FLEX can make some type of bar or pie chart
    out of that for me. What I want to do is click on a "Level1"
    indenture and have it expose the Level2 indure that contributes to
    that 47%. Then drill on one of the Level2's to Level3 .... to Level
    "n".
    This needs to be accomplished in "stand alone" fashion so the
    ultimate user can launch a desktop application and tell the
    application the name of the Microsoft Project XML file. We will not
    be able to use Client/Server ... client side only with the file
    located either locally or at least on a network drive.
    Can this be done? Has anyone looked at a MS Project XML
    schema to see if there is sufficeint information available?
    OK, now the blunt truth. It ain't %Complete that I care
    about. What I care about is BCWS, BCWP, ACWP, %Complete, and a few
    other parameters. These are the "Earned Value Fields". If you do
    not know what they are, don't worry about it just now .... it is
    really all just time phased data.
    Can anyone give me some advice or an opinion? TIA.
    Jim

    Hi,
    Pls check out these links below for this info -
    Adobe Flex with RFC - 
    Binding Data through function module in adobe to display charts
    How to connect to SAP Database from a Adobe flex application?
    Adobe flex and Sap
    Adobe Flex within SAP NetWeaver Developer
    Regards
    Lekha

  • Anyone use Flex with php for file upload? PHP Notice:  Undefined index:  Filedata

    My code works. It uploads the file and inputs the file name into a database, but I can't shake this php notice. I think php is looking for multipart/form-data from the HTML form tag.
    <form action="upload.php"  enctype="multipart/form-data"/>
    But I am using flex. The multipart/form-data info is sent as the second default argument of the upload() function. Does anyone have experience with this? Thanks.
    PHP Notice:  Undefined index:  Filedata
    $filename = $_FILES['Filedata']['name'];
    public function selectHandler(event:Event):void {
                    request = new URLRequest(UPLOAD_DIR);
                    try {
                        fileRef.upload(request);
                        textarea1.text = "Uploading " + fileRef.name + "...";
                    catch (error:Error) {
                        trace("Unable to upload file.");
                        textarea1.text += "\nUnable to upload file.";

    Hi, Thanks for your reply !
    Im not getting any errors Flex side, as i say i get a alert message saying the file has been uploaded so . .
    I am using a Wamp server on a windows machine, how do i check the file permissions on both the folder and the php file ?
    Also how do i debug a php file ?
    ANy help would be thankful !

  • Can I use Flex with Adobe Media Encoder to automate encoding?

    I am thinking about learning Flex assuming I can do the following.
    Can I use Flex to automate the process of converting/encoding videos from many formats to FLV format?
    If so, what encoder do I use for this process? Flash media encoder?
    Can Flash Media Encoder interface with Flex (PHP/XML/ActionScript) to automatically with presets configuered convert/encode videos that have been uploaded and placed into a folder into FLV format?
    Thanks.

    Guys,
    I have developed a simple script ( batch file  *.bat)) that will  check if encoding is still being done ( every 60+ secs ) and if the process is over, it will shutdown the  PC. I tried to keep the code very very simple so that others can improve it.
    For now , i have tested this on Windows 7 SP1 -  64 bits  and it wokrs well.
    Here is the code, copy  and paste it into notepad - i named it AutoPowerOff-AdobeMediaEnCoder.bat
    ..........copy code below ..........
    @echo off
    echo.
    date /t
    time /t
    echo.
    :StartMonitoring
    echo.
    echo.
    echo.
    color 0f
    echo Start monitoring Adobe Media Encoding Process
    echo Check every 60 secs via KeepMonitoring
    ping 127.0.0.1 -n 60 > nul
    Goto Check
    :KeepMonitoring
    echo.
    echo.
    echo.
    color 0f
    echo Continue Monitoring Adobe Media Encoding Process - every 60s
    ping 127.0.0.1 -n 60 > nul
    Goto Check
    :Check
    echo.
    echo.
    echo.
    color 0e
    echo Checking If Encoding Process Over ?
    echo.
    echo.
    color 0a
    tasklist | find /i "PProHeadless.exe"
    IF ERRORLEVEL 1 GOTO AutoPowerOFF
    IF ERRORLEVEL 0 echo. && echo Encoding Still In Progress && GOTO KeepMonitoring
    :AutoPowerOFF
    echo.
    echo.
    echo.
    color 0c
    echo Process  PProHeadless.exe does not exist anymore
    echo Assume Encoding DONE
    echo PC Poweroff Initiated
    echo.
    echo.
    echo ShutDown PC After 60 sec
      shutdown /s /t 60
    :END
    ....... end of code ..............
    If some of you can check it out on other platforms and report back, i can maintain this thread.
    Regards,
    Marco.

  • How to use Flex with EJB3?

    Anybody know how to integrate Flex with Java?
    I have a EJB3 project with JPA etc...
    Have to use Eclipse with Flex plugin or can i use Flex Builder and Eclipse only for java classes? (preferring the second option)
    I'm getting crazy, because need this for my college work, too fast as possible.
    Please any explanation or sample.
    Thanks everyone.

    Matt you say, i do not need to write servlet, create wsdl...
    But if i dont do this, my Java Business Rules will be visible to client ?
    If yes...
    1- I need to write Servlet to use HTTP protocol to connect with Flex, then create wsdl of my EJB3.
    2- This wsdl will create client side of my application, then i create my Flex interface normally using HTTP Blaze DS ?

  • Error 99 using Flex with FileInfo SDK

    Hello
    I am creating a new XMP panel for CS4 using Flex 3.0.1 and the FileInfo SDK 4.4.2. When I create a new Wizard project (using XMP Custom Panel project), at the end the Design tab shows the message (I have not edited anything from the generated files):
    There is an error at line 99 of your MXML document.
    The "Sample" tag has invalid syntax.
    The line 99 contains the following generated code:
    Anyone tried to use Flex and the FileInfo XMP Wizard and know how to solve this issue? The Project compiles and executes well but this message is quite strange.
    Thank You
    Massimo

    Hi Massimo,
    you try to watch the *wrapper code* in the design mode. Problem is
    that the design mode of Flex still has some bugs when it comes to the display of own components.
    But what you can do is: open the actual panel class "Sample" and switch
    to the design mode -- that works and that should be the thing that you actually wanted to see.
    Hope this helps.
    -- Stefan

  • My pass of information for the people looking to use Flex with BlazeDS

    I when approaching Flex Data Services (BlazeDS and Live Cycle
    Data services ).. I noticed there was a huge gap of understanding.
    So here are a few things I noticed which may help:
    BlazeDS is a java based meaning it needs a Java program such
    as Tomcat or JBoss to run..
    By standard blazeDS comes with tomcat that will run on your
    computer… And LCDS (live cycle data service) comes with JRun
    (for local development use only)…
    Remoting needs you to create a Java classes in order to pass
    data, for example from a database… Now this side of things is
    quite JAVA and therefore you’re probably going to need to do
    a lot of Java programming.
    However the messaging side of BlazeDS works well with
    flex… If this is what you’re looking into, you should
    concentrate on the produceer and consumer mxml objects:
    <producer/>
    <consumer/>
    At first glance, these two seem stupidly simple and
    un-powerful, but as you start to understand how to use them between
    multiple applications, you will see how powerful they are.
    And the config files...!
    To get you pointed in the correct directions, review this
    blog and focus on the tutorial section:
    http://www.flexlive.net/?cat=6
    Also remember that before live cycle, it was Flex Data
    Services, try searching for some tutorials or learning materials on
    that.
    And also if your new to all this start with BlazeDS as it
    seems more user friendly. Its just like using a restricted version
    of LCDS. But works very much the same.!
    Hope this helps, JC

    Thanks prasoon.
    I only had a few mins to write it, was in work lol.. What
    helped you from that blurb, if you don't mind me asking?
    JC

  • Flex editing without quantizing

    Is there any way to use Flex and ignore the song tempo? I don't want my music to snap to logic's grid, i just want to move transients forward or backward in time.
    I tend to record without a click and with constant tempo variations. Can I still use Flex?
    Also I like to use beat mapping after the fact to align Logic's grid to follow my performance. With this, all synced effects, like delays, follow my performance. But if I then want to go in and move a few transients around, I enable Flex and all is out of wack.
    Is there a way to use Flex with Beat Mapping?
    Thanks
    Message was edited by: JoeBeans

    Beat Mapping prior to Flex's transient analysis totally wrecks Flex. I just wasted several hours because of this but I think I found a solution.
    Since you don't want to throw away your tediously created Tempo Map:
    - disable Flex
    - Select All Audio FIles in the Arrangement
    - choose +Options>Tempo>Remove Tempo Information from Audiofile+
    - choose +Options>Tempo>Export Tempo Information to Audiofile+
    This first clears the default, constant Tempo from the files (it got embedded probably when you imported them into an empty song) and then writes the current Tempo Map into the files.
    Now, enabling Flex will re-analyze the files according to the new Tempo Map and no more shift should occur unless you actively create it.
    Tell me if this works for you.
    Christian

  • Flex with ADF

    Hi,
    I'm new to both flex and adf technologies. It would be helpful if anyone brief the possibility of using flex with ADF.
    And also it'll be helpful if someone helps out with any links of tutorials or documentation regarding to use flex with ADF.
    Thanks in advance,
    Parameswari
    Edited by: user12952392 on May 24, 2010 6:13 AM

    Hi Shay,
    Thanks for the reply.
    In our case we will be getting pre-designed Flex UI pages with separate components. We have to logic in Business Layer to do the CRUD operations with displaying of Graphs.
    Just read Edwin Biemond [http://biemond.blogspot.com/2008/07/crud-operations-in-flex-with-adf-bc.html] posts on the same. (integration using Adobe livecycle or blazeDS).
    But still not sure how to manage and maintain this whole stack for an application having 50+ pages.
    So bit curious how to start the same.
    I have posted the same in [http://forums.adobe.com/thread/646720?tstart=0] Flex forum also. Hope to get the reply soon
    Thanks.

  • Flex with WebDynPro

    hi all.
    can anyone tell me ..if we can use Flex with WebDynPro.....?
    can we develop flex in NWDS....?
    Regards,
    Sudheer

    Well you can use Flex inside plain HTML pages.  It isn't really much different when using them inside JSP.  I'm really just talking about embedding and hosting the flash player.  If you want greater interactivity between the Flex portions and the JSP I suggest that you search on the internet for FABridge (Flex Ajax Bridge).  This allows you to use JavaScript to interactive with the flex component.  I've used this technology within BSP quite a bit:
    [/people/thomas.jung/blog/2007/11/14/an-introduction-to-flob-flex-on-bsp|/people/thomas.jung/blog/2007/11/14/an-introduction-to-flob-flex-on-bsp]
    Since BSP and JSP are so similar, the same concepts could easily be applied in JSP.
    As to the Web Dynpro Islands - the development of the first version is complete and will start to ship in a controlled rollout with Web Dynpro ABAP in NetWeaver Enhancement Package 1 (Q3 2008). I believe that at first we plan to only have SAP delivered components, but will eventually open it up so that anyone can create components that run within the Islands.

  • Flex with jsp?

    can anyone tell me if flex can be integrated with jsp and if yes, can i get a small example of it... plz help.. its uugent

    http://flex3.info/using-flex-with-javaserver-pages/
    http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_2.html
    http://www.coderanch.com/t/478820/Flex/Application-Frameworks/Flex-recive-data-JSP-submitt ed
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com

  • How can I change the password in the iBook donated to our nonprofit.  No password was given with the iBook?  We need to put in printer and other software.  Help, we can use the laptop without changing the password.

      How can we change the password in the iBook donated to our nonprofit?  No password was given with the iBook and every time we try to install items, the password window pops up.  We need to put in printer and other software.  Help! We can use the laptop without changing the password.

    If you did not get an OS X install-restore DVD with the computer you may need
    to buy one from somewhere, and you may be lucky to get a retail OS X 10.5.x
    version. The original grey-label install set of software and OS X it shipped with
    likely would be an older system than Leopard 10.5. Last versions of G4 Mac, &
    G5, shipped with a Tiger 10.4 system; so did early Intel-based Mac. Grey discs
    which accompanied other computer build models generally do not interchange.
    The last OS X version a PowerPC architecture can use, if supported, is 10.5.8.
    A PPC processor at 867MHz & faster should be able to run OS X 10.5 Leopard.
    {With the correct disc installer, you can use it to change a password and other
    things including re-install, and perform disk utility functions, etc.}
    There is a chance you may be able to get a white-label Replacement 10.4 DVD
    or Replacement 10.5 DVD from AppleCare or the online Apple Store (800myapple)
    from a Mac OS X system specialist; these have been available yet hard to get
    as not all persons involved with them seem to know if they still exist until someone
    is asking. These aren't retail stock, are special discs for computers who could use
    a system later than original old discs; these are complete install discs not for one
    specific series of Mac. Generally they'd work in supported PowerPC G4/G5; but
    do not replace specialized original install DVD, such as an early Intel mac requires.
    You'd need to have a serial number of the computer, and a method of payment
    when seeking some replacement system media from Applecare or Apple sales
    and these discs are not available in a retail store. The original Retail discs are
    labeled differently and shipped in a retail box with a big X on the front. Other
    sources for retail 10.4 Tiger or 10.5 Leopard may be online via amazon sellers
    or computer resellers who handle repaired Macs. Avoid mystery grey label ones
    that were intended to be sold and kept with their original computer kits.
    Good luck!

  • Problem in creating client side PDF with image using flex and AlivePD

    I need a favor I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the image disappeared from that pdf.I am taking the image inside a canvas . How do i control my images so that they come fit on that pdf file for any image size that i take.
    Thanks in advance
    Atishay

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

Maybe you are looking for

  • Safari hangs for ~7 seconds when loading some pages

    I noticed when I click on certain links, Safari hangs for a moment: a blue line moves, when stops, hangs where for about 7 seconds, and eventually it loads a website. It happens on theweathernetwork.com website when I brows photos and open each in a

  • Can any one tell me how to delete pictures on a 3G IPhone?

    Can any one tell me how to delete pictures on a 3G IPhone?

  • Send XML file to Webservie datasource without XI - Urgent

    Hi, Can anyone send me the JAVA or .Net code to send the XML file to Webservice data source. I have tested it with Navigator test pagae and it works fine. Kindly send me the piece of code to trigger the webservice,since i am not good at JAVA. Thanks,

  • Lighting effects stopped working

    Whenever I go to use lighting effects (filter> render> lighting effects) in my Photoshop CS6 for Mac, there is no adjustable circle anymore like below: Mine only shows up like this: How can I get it to like it was before?

  • Installing Airport Express

    I can't install Airport Express on my Mac. It says "you cannot install Airport on this volume. The Version of Mac OSX on this volume is not supported" The Airport disc says 10.4 or higher is required and I'm running 10.5.6.