Getting started with Flex Builder, BlazeDS and Eclipse

Hi,
I'm a java developer looking at RIA for the first time. I'm really excited about BlazeDS and object remoting, but I can't get a working dev environment together. I'm assuming I should use Flex Builder for the client code, Eclipse Europa for the java webapp code, and deploy from both IDEs into the BlazeDS-equipped turnkey-Tomcat. I haven't found a tutorial explaining how to deploy a new webapp with this setup.
The turnkey-Tomcat sample app works fine. Trouble starts when I try to create  a new project in Flex Builder. I don't understand the 'debug' deployment that Flex Builder does. Why are there 2 versions of my app, the regular and the debug versions? What is exactly the project structure that I'm supposed to have in Tomcat?
The specific error I encounter when trying to deploy a new Flex project is this:
[MessagingError message='Destination 'productService' either does not exist or the destination has no channels defined (and the application does not define any default channels.)']
I do have a default channel configured for my environment in services-config:
And I do have a valid destination configured in remoting-config (I'm mostly interested in object remoting):
            test.ProductService
Here's the client code:
What am I doing wrong? Where can I get help on these specific topics? Also, does anyone have an Ant build file that would automate this sort of deployment?
Thanks!

Hi Peter,<br />I don't have problems passing JavaBeans to Flex. For collections, I used DataGrid, it displayed my collection seamlessly, except I don't get column headers, just a column index number. For receiving a single JavaBean, I had a little more trouble, until I tried to display it with a DataGrid: it displayed a single row that represented my data, with each java property name used as a column header, and object attributes were displayed as 'object'. These 2 experiences led me to these conclusions:<br />- for the collection, Flex converted each element into an ordered list of attributes<br />- for the single bean, Flex converted it into a hierarchy of Maps of attributes<br /><br />I didn't create a Flex value object. Flex is doing it automatically,very much like in JavaScript/JSON: dynamic objects.<br /><br />Here's the remote object markup:<br /><br /><!-- We target the remote Java object through BlazeDS gateway: --><br />     <mx:RemoteObject id="myRemoteObject" destination="productService" <br />                          fault="Alert.show(event.fault.faultString, 'Error');"><br />          <mx:method name="getProductsCount" result="setProductsCount(event)"><br />               <mx:arguments><br />                    <arg1>{productSC}</arg1><br />               </mx:arguments><br />          </mx:method><br />          <mx:method name="getProducts"><br />          <!-- search params are wrapped in a model, ProductSC (will be converted to a Map on <br />                the server side by BlazeDS): --><br />               <mx:arguments><br />                    <arg1>{productSC}</arg1><br />                    <!-- This works because we declared these to be Bindable: --><br />                    <arg2>{pager.pageSize}</arg2><br />                    <arg3>{pager.currentPage}</arg3><br />               </mx:arguments><br />          </mx:method><br />          <mx:method name="getProduct" result="goToView()"><br />          <!--<mx:method name="getProduct">--><br />               <mx:arguments><br />                    <arg1>{selectedRecordId}</arg1><br />               </mx:arguments><br />          </mx:method><br />     </mx:RemoteObject><br /><br />And here's the dataGrid that displays the bean collection:<br /><br /><mx:DataGrid id="myDataGrid" <br />                               dataProvider="{myRemoteObject.getProducts.lastResult}" <br />                               change="selectRecord();"<br />                               width="100%" height="100%" ><br />               </mx:DataGrid><br /><br />Let me know how it goes, I'd be glad to assist if I can.<br />Miguel

Similar Messages

  • Trouble Getting Started With Flex

    I am trying to go through the tutorials that come with Flex
    Builder 2 and cannot get any custom components to work. Projects
    that have custom components defined in them compile OK but I get a
    run-time error: Error #1009 Cannot access a property or method of a
    null object reference...
    It works OK when I open the .swf file but fails when the .swf
    is embedded in an html wraper.
    If anyone has some idea of what I am doing wrong I would
    really apreciated hearing it.

    The html file:
    <!-- saved from url=(0014)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Main</title>
    <script src="AC_OETags.js"
    language="javascript"></script>
    <style>
    body { margin: 0px; overflow:hidden }
    </style>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 9;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // -->
    </script>
    </head>
    <body scroll="no">
    <script language="JavaScript" type="text/javascript"
    src="history.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to
    start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values defined in globals
    var hasRequestedVersion =
    DetectFlashVer(requiredMajorVersion, requiredMinorVersion,
    requiredRevision);
    // Check to see if a player with Flash Product Install is
    available and the version does not meet the requirements for
    playback
    if ( hasProductInstall && !hasRequestedVersion ) {
    // MMdoctitle is the stored document.title value used by the
    installation process to close the window that started the process
    // This is necessary in order to close browser windows that
    are still utilizing the older version of the player after
    installation has completed
    // DO NOT MODIFY THE FOLLOWING FOUR LINES
    // Location visited after installation is complete if
    installation is required
    var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
    var MMredirectURL = window.location;
    document.title = document.title.slice(0, 47) + " - Flash
    Player Installation";
    var MMdoctitle = document.title;
    AC_FL_RunContent(
    "src", "playerProductInstall",
    "FlashVars",
    "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"" ,
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "Main",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "Main",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.macromedia.com/go/getflashplayer"
    } else if (hasRequestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
    AC_FL_RunContent(
    "src", "Main",
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "Main",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "Main",
    "flashvars",'historyUrl=history.htm%3F&lconid=' + lc_id
    + '',
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.macromedia.com/go/getflashplayer"
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be
    placed here. '
    + 'This content requires the Macromedia Flash Player. '
    + '<a href=http://www.macromedia.com/go/getflash/>Get
    Flash</a>';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    id="Main" width="100%" height="100%"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
    <param name="movie" value="Main.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#869ca7" />
    <param name="allowScriptAccess" value="sameDomain" />
    <embed src="Main.swf" quality="high" bgcolor="#869ca7"
    width="100%" height="100%" name="Main" align="middle"
    play="true"
    loop="false"
    quality="high"
    allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer">
    </embed>
    </object>
    </noscript>
    <iframe name="_history" src="history.htm" frameborder="0"
    scrolling="no" width="22" height="0"></iframe>
    </body>
    </html>

  • Getting Started with Flex 2

    I played with Flex 2 beta 3 a while back, then got pulled off
    into other things, and am now back to looking at Flex again and
    thought I would go through the getting started lessons (on
    http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00000138 .html).
    I got to the second page and immediately got stuck.
    Step 1 reads: "In a text editor, open the
    data-management-config.xml file located in the WEB_INF/flex
    directory of the samples web application. "
    OK, where is this WEB_INF/flex directory located? And what is
    the "samples web application" that is being referred to?
    I THINK I found the right file, but in step 2 it says:
    "Directly above the text <destination id="contact">, make
    sure the following destination definition exists. "
    The quoted text does not exist in the file, but the
    definition it further explains to add already does exist.
    So move on to the next page and it says to "...create an MXML
    (text) file that contains the following text and save it as
    lesson1.mxml in the DSLessons directory of the samples web
    application." There's that samples web application reference again
    - where IS that?
    Oh, well THEN it has a link to a "Before you Begin" section -
    maybe there are some answers in there! I click on that (why isn't
    it in the index on the left?) and it takes me to a page suggesting
    I do a few things. One of the things it says is, "Create a
    DSLessons directory that is a subdirectory of the samples directory
    of the samples web application. "
    OK, well, dammit, now I'm frustrated! WHERE AND WHAT IS THE
    SAMPLES DIRECTORY OF THE SAMPLES WEB APPLICATION?!
    Is it wrong of me to assume that a "Getting Started with Flex
    2" document would provide some foundational information that is not
    based on assumptions of prior knowledge of the inner workings of
    the very product I'm trying to get started with? This isn't even my
    first time playing with Flex! In fact, I was hoping to find some
    good step-by-step introductory material that would help some of my
    coworkers learn a bit about it.
    Where can I find some?

    OK, apparently the primary source of my confusion here is
    that some link I clicked on (I thought from a readme file, but I
    can't find it again) took me to the aforementioned page in the
    livedocs and did not display any corresponding topic open in the
    left column, so I assumed I was on the first page of the getting
    started section (especially since I was actively looking for a
    getting started section when I wound up here). I have discovered a
    more usable thread in the livedocs and am now a happier
    camper.

  • Getting started with Flex ...

    Hi All,
    I've been looking a Flex over the last couple of weeks and have managed to setup a couple of basic projects that can read data from a mySQL database etc...  However when it comes to understanding some of the more advanced frameworks and options to use with Flex it starts to get very overwhelming.
    Does anyone have any pointers/suggestions for good material (online or books etc) to start with Flex.  I come from an Oracle Forms development background and in terms of setting up an application with a connection to a database Oracle Forms seems to a lot simplier than building a Flex database application (although the functionality of Oracle Forms as a lot more limited than Flex/Flash).
    I have taken a look at a the book Enterprise Development with Flex: Best Practices for RIA Developers (Adobe Dev Lib)http://www.amazon.com/Enterprise-Development-Flex-Practices-Developers/dp/059615416X/ref=s r_1_6?s=books&ie=UTF8&qid=1319581262&sr=1-6 by Yakov Fain, Victor Rasputnis and Anatole Tartakovsky (Mar 30, 2010), however the very first code example in the book appears to be dated and I'm having trouble getting it to work and finding the appropriately dated source files for the example project.
    I have also taken a quick look at Adobe Flex 4.5 Fundamentals: Training from the Source by Michael Labriola and Jeff Tapper (Aug 5, 2011) which appears to be a bit more recent, however I am not sure how much is covered regarding database connections to databases like mySQL and Oracle.
    Any suggestions on the best learning materials available would be really helpful.  At the moment it feels like I need to be an expert in Flex, MXML, ActionScript, Java, Spring, Hibernate, AMF, Maven, BlazeDS etc etc just to be able to create a simple database centric application (aarrgghh).
    Ideally I would love to be able to find a recent tutorial that goes through the building a relatively advanced Flex database centric application, that includes information about building a database based login/authentication system (without having to use PHP), and database controlled/stored main menu system and a system for modular sub tabs/screens/programs within a main application.
    Regards,
    Leigh.

    Thanks everyone for the replies.  I guess I'm a bit lazy when it comes to reading up on a technology I am not familiar with :-) .  What makes things worse is the Oracle Forms Builder IDE is very highly coupled to the Oracle database and therefore there is no requirement to know or understand the language or technology under hood (other than PL/SQL), Oracle takes care of that within the IDE and the Forms Java Bean (deployed by default with a middleware installation of Oracle application server).
    @dwaynie Started working through the Flex in a week video training yesterday.  Its really good and probably the best place for me to start as it goes over a lot of the assumed knowledge regarding Flex, MXML and AS (stuff I have probably glossed over up until now)
    @Mansuro noticed that spring has a dedicated page on the Flex/Flash plaform site so I'll probably look into this more down the track.  I guess the thing I am little confused about is that there are many examples online that integrate Spring + Hibernate + Maven + Java etc etc, I guess each framework has different features that the others don't and therefore all can be used at once, or does each one offer a completely different service?  More reading is required here I think.

  • Getting started with flex and Eclipse 3.1?

    Hi all,
    Im a java Eclipse RCP developer and I wanted to work on some small apps using flex.
    I have been searching around on the web for instructions on how to get everything set up, but most of them seem to skip a  few steps.
    I am using Eclipse ganymede (3.1), and have downloaded the flex sdk.  Is there a plugin or something for flex that creates the proper perspectives in eclipse?  Or what exactly do I need to do?
    Also, I see that flex uses mxml, if I want to use flex and java as opposed to flex and php or coldfusion (the only examples I saw) is that possible?  I guess Im slightly confused as to what exactly I am writing this app in... java?  Actionscript?  Php? ??
    Basically my goal is this:
    Use eclipse 3.1 (not flex builder)
    Write an RIA that can also use AIR
    Connect to a MySQL database on the backend
    I have very little experience (or need) for J2EE, but maybe I should use it?
    Can anyone point me to a good tutorial that will get me going to achieve my goal?  Or tell me what exactly I need to install, and how to put it together?
    Thank you!

    You need Flex Builder plugin version.
    Trial version here:
    http://www.adobe.com/cfusion/entitlement/index.cfm?e=flexbuilder3

  • Getting Started with Flex and Java RPC for Free?

    Good Morning,
    Please forgive me if this is the wrong place to post- I'm
    just having trouble wrapping my head around what is and what isn't
    available for free in the Adobe Flex world.
    I've been working on an application for the last few months
    using Open Laszlo (
    http://www.openlaszlo.org/),
    but I've been running into frustrations with their lack of
    up-to-date documentation, and I've found it difficult to bring new
    people into the project, since the set of users who know it is so
    small.
    While I do like that I can compile to DHTML, that's not
    enough to hold me there.
    I've been looking into Adobe Flex, and it seems like a good
    alternative- I'm comfortable paying $500 for the IDE-
    I use Eclipse currently, so having a plugin for it sounds
    ideal. That said, when I look into ways to talk to a Java backend,
    everything points to Flex Data services, which is now part of some
    larger package costing tens of thousands of dollars.
    I don't need advanced messages, or data synchronization, as
    nice as it would be.. All I really need is the ability to call a
    Java method, and get an object back, which I can then work with in
    Flex.
    I see the forum message that asks
    "How
    do I 'do' Flash for free?, but this only talks about RPC very
    broadly. Given that the message is from over a year ago, I thought
    it would be better form to start a new topic, than replying to it.
    Can someone explain to me what components I'd need, both on
    the client side and the server side?
    Is there a set of manuals that explain how to do Flex RPC
    from Java?
    Can Flex compile to any versions of flash earlier than 9?
    (Flash 6/7 is still in wide deployment)
    Do I want to start using Flex 2, or Flex 3? Are the
    components compatible? Will the F3 docs be ready?
    Finally, where can I purchase the Charting components? The
    ability to create charts such as
    this
    overcome a decent price barrier.
    Thank you for any insight you can offer, and direction you
    can provide.

    quote:
    Originally posted by:
    cunparis2day
    On our project they made a proxy in java where they passed in
    the name of the method as a string, and an array of objects for the
    parameters. The proxy then sent the request via RMI and returned
    the result. Kind of a hack but they say it worked (I wasn't here
    when they did it).
    What did the RMI talk to? Are there docs on this?
    quote:
    Another approach, generate the proxy from the java
    interfaces. Or better yet, generate it dynamically with CGLIB.
    quote:
    Finally, I'm investigating using Mule for the integration.
    Let me know what you think about those suggestions.
    We have our own messages, but how would MULE translate them
    to Flex?
    You know quite a bit more about this, can you take a step
    back, and explain?

  • Getting started with Flex - J2EE

    Hello Folks,
    In advance, I already want to thank all of you willing to take the time to read this, or even reply :)
    Furthermore, I'm not 100% sure this is the correct location to ask these questions, but so far I've had a perfect experience concerning Questions I posted here :-)
    Anyway, here's my current situation.
    I've got Eclipse Europa (3.3) with the Flex 3 plugin.
    I've got Tomcat 6 with the LiveCycle Data Services.
    I've got some experience in coding Java classes, contacting Databases (I currently would like to use MySQL) and wiring it all with Spring/Toplink etc...
    Anyway, I'm a bit lost when trying to do the following:
    I want to create a webbased database management thingie. Easy mode. One table, 2 fields etc...
    However, I'm completely lost at how to start.
    I'm perfectly capable to create my Bean, Dao, DaoImpl and even a service layer above that which gives access to my Dao.
    Other then that I'm, after some nice tutorials, capable in creating my FLEX-Gui to show it all.
    What's the problem then?
    Well, I have no idea what I need to do with my Java classes to make sure I can use them in my Flex App...
    How do I need to create the war that needs to be deployed on my Tomcat?
    Do I "NEED" to create JSP pages?
    What is needed in my Service Layer to make it accessible by Flex?
    What do I need to add in my Flex project to use that War? I need to point towards a 'war-location' when creating a J2EE based Flex application in Eclipse...
    Anyway, I hope the explanation and the questions are clear enough and not too 'noob-like' :)
    Lastly, I just want to add, that I've read chapter 5 in the "RIA with Adobe Flex and Java" book by Bruce Eckel, but he starts with a ready to use WAR so that doesn't help either :)
    Any replies appreciated!
    Regards,
    P�eter

    No. I didn't define it, because the lesson didn't ask me to.
    I have however, since receiving your message, tried hard coding it,
    but that doesn't work either. What is port 2037 anyway?

  • How do I get rid of the 3 extra tabs that appear when I start Firefox? they are: Getting Started with Mozilla, Video downloadHelper, and Tab Mix Plus?

    This problem started when i downloaded firefox 8 and is still there with 9.0.1. The Video DownloadHelper and Tab Mix Plus are announcing new updated that were installed weeks ago. How do I stop this?

    See these articles for some suggestions:
    *https://support.mozilla.org/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    *https://support.mozilla.org/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    *http://kb.mozillazine.org/Preferences_not_saved

  • Getting Started with Creating Mobile Apps and Websites with Design and Web Premium CS6 | Digital Design CS6 | Adobe TV

    Adobe Evangelist Paul Trani shows how to create apps and websites for multiple screens using Design & Web Premium CS6.
    http://adobe.ly/Iq676Z

    I have CS6.5 installed through the Adobe Application Manager, Creative Cloud account. There are  no PhoneGap sample pages under Mobile Started, only the ones labelled (Local). Where / how can I get these sample pages?

  • How do I get started with my new Mac and and Iphone?

    I had my Iphone synced with a PC that literally burned up unexpectedly. I replaced it with a Mac and want to sync my phone, however, when I click to manage content manually, a message pops up telling me that my phone will be erased (!!). Because I have lots of music and apps on the phone, I don't want to go back to square one. What do I need to do to make the new computer work with my phone?

    "The help file seems to say that all the music I have ripped from CDs when my old PC was authorized can't be copied into Itunes."
    That is correct. the music sync is one way - computer to ipod. The exception is itunes purchases. Without syncing: File>Transfer Purchases
    The iphone will sync/manually manage with one and only one computer at a time. When you sync/manually mange with another, it will indeed erase the current content and replace with content from the new computer.
    "Another responder cited a help page which suggested that I should back up the phone to writable CDs (why the heck would I want to do that?)."
    I think you misunderstand. You backup your itunes library from your computer, not from the iphone.
    You simply move everything from the old computer, or the backup copy of the old computer, to the new one.

  • Getting started with OIM API'S using ECLIPSE

    Dear All,
    i got this error messages :
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/log4j/Logger
         at com.thortech.util.logging.Logger.createAndRegisterLogger(Unknown Source)
         at com.thortech.util.logging.Logger.getLogger(Unknown Source)
         at com.thortech.xl.util.config.ConfigurationFormatter.<clinit>(Unknown Source)
    somebody help me.
    Thanks.

    In general Add all the jar files present in the xlclient lib folder into your classpath before using any of the Thor API's as these jars are needed.
    In your case i guess the classpath is missing the log4j jar file required.
    You are using com.thortech.util.logging.Logger which references to xlLogger.jar.
    When you decompile this xlLogger.jar present in the lib folder you will be able to see the following import statements.
    import com.thortech.util.logging.helpers.ConfigFileWatchDog;
    import com.thortech.xl.util.logging.FilePrintStream;
    import com.thortech.xl.util.logging.PropertyConfigurator;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.Serializable;
    import java.util.Hashtable;
    import org.apache.log4j.Category;
    import org.apache.log4j.ConsoleAppender;
    import org.apache.log4j.Level;
    import org.apache.log4j.PatternLayout;
    So during runtime it is searching for the log4j jar which is not present in the classpath. usually it is present in the xlclient ext folder. Please ensure that you add this jar into your classpath. The problem will be solved. Let me know if you still face any issue.
    Edited by: Durgaprasad on Dec 4, 2011 4:03 AM

  • Apps built with Flex Builder 2 - 3 not compatible with new Flash Players and/or new browsers, FB4 OK

    My applications built with Flex Builder 2 and 3 do not start in new versions of Flash Player and/or new browsers when run remotely. I have not been able to test all combinations of FP and browser versions but there is no problem with applications built with Flash Builder 4. Does anyone have info on this?

    Hi Dimitar,
    Did you close all the browsers (and applications which use
    Flash Player) when you install Flex Builder 3 Beta 3 or Flash
    Player? You can try manually installing it from <FB install
    location>/player/ directory. Here're some
    installation/unintallation instructions of Flash Player:
    http://labs.adobe.com/wiki/index.php/Flex_3:Release_Notes#Installing_Flex_SDK_3_Beta_3
    thanks,
    Sharon

  • Sorry I do not understand I neeed to get started with elements 10 and so far no help received

    I am trying to get started with Adobe elements 10 and selected organise so as to transfer my many files over
    this I have been unable to do.
    Being asked for ID name ( already registered) which mena scoming out of one page hunting in fact its all very frustrating.. HELP
    Post message sorry how do I get help?????????

        Hi casheasy!
    I sure don't want our first month with you to start off on the wrong foot! I'd be happy to review the charges on your first bill and make sure all is correct. I have followed you in the forums. Please accept my request and follow me back. Then, please send me a DM with your name and mobile number and I'll check it out for you!
    ChristinaB_VZW
    VZW Support
    Follow us on Twitter @VZWSupport

  • Flex Builder 3 and Employee Directory Sample App

    Ok, please be paitent with me.  Just starting out with Flex Builder 3 and Flash Builder 4.
    I have installed Flex Builder 3 and imported the Employee Directory application sample, but I cannot get it to run, nor debug.
    I'm on a Mac Pro and I have not done any other configuration to the Flex Builder 3 installation, yet.
    In order to get the Employee Directory app to run, can someone give me some assistance as to what I need to do in order to get it running within the development environment.
    Any assistance will be greatly appreciated.
    Regards,
    Jeff

    No errors, it just will not run.
    I loaded the employeedirectory.mxml into the editor and simply tried to run it.  The Eclipse editor / employeedirectory canvas blinks, but doesn't execute.
    In addition, when I set a breakpoint and try to debug, I get the following error:
    Process terminated without establishing connection to debugger.
    Command:
    "/Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/adl" -runtime "/Applications/Adobe Flex Builder 3/sdks/3.2.0/runtimes/air/mac" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug/employeedirectory-app.xml" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug"
    Output from command:
    error while loading initial content
    Thanks for the reply...  hopefully it's a simple configuration issue.
    Update:  I created a blank application with no control, notta and it ran fine, i.e. loaded up into Firefox with a blank canvas.

  • Getting started with swept sine

    Hi,
    I'm a new user of labview. I'd like to do a swept-sine analysis on my test devices to obtain FRF. I've heard about the "getting started with swept sine  "Sound and vibration toolkit"...but how can I use that?Should I install it on labview and read the examples?I want to start from scratch.
    I'd appreciate if anybody helps me out.
    Thanks
    Petar

    Hey Petar,
    You can definitely give the sound and vibration toolkit a try for Swept Sine measurements.
    You can download an evaluation by following this link and selecting the download option.
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/209056
    It will ship with quite a few shipping examples that will hopefully get you started.
    Matt W.
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Change the colour of events in iCal

    I need to change the colour of events/appointments in the Mac iCal.  I have imported all of my Outlook calendar via google sync and all my appointments are now just one colour.  I have my medical appointments coloured in orange so they stand out each

  • SQL Server Configuration Manager

    Hello, I have a SQL 2008 SP3 install on Server 2012.  It is clustered active/active.  When opening SQL Server Configuration Manager > SQL Server Services, I receive the following message: The server threw an exception [0x80010105] I have tried restar

  • How to load third party SCORM 1.2 to Adobe Connect 9?

    Can someone please guide me on how to load any third party SCORM 1.2 package to Adobe Connect 9 room?

  • IDOC - SOAP scenario

    Hi Guys, I have configured the IDOC-SOAP scenario and i am sending to the target business partner with the soap receiver adapter. I did not get any wsdl from the business partner instead i got the xml structure, target url and soap action. I have cre

  • Exporting AAC m4a podcast mime type problem

    Hi All, I have a podcast that I use GB3 to produce the enhanced podcast with (artwork podcast with links). When I upload this file to my server it shows up as application/octet-stream for mime type. The extension is still m4a but the desktop icon is