Help please: deploying simple flex application

I developed a very simple flex application with simple
components. No data base involved, neither java or cold fusion. I
never hosted a website before. I want to host this application. Can
someone guide me if there a service available to host a flex
application. And steps involved. I appreciate anyone who help me
out here. I need to get this done asap.
Thanks.

Put the compiled swf and its html wrapper code in an url
accessible folder. Hit the url.
That's it.
Tracy

Similar Messages

  • Using Weblogic to Deploy Simple Flex App

    Hi,
       I am trying to deploy a simple Flex application in a weblogic8.1  server , so that I can use it locally.
    Can any one please guide me where and how I have to deploy my flex app .
    I am pretty new to this can any body provide me a guide or walk through step wise for me.
    More over What is the url I need to give in the browser to access the flex app I deploy in the Weblogic server.
    (At present I am using the IIS -- just copying the .swf file and wrapper html page in to the C:\Inetpub\wwwroot and giving http://localhost/test.html
    in the browser to access it) ---  How do I do this using Weblogic 8.1
    thanks
    Nash

    Hi again Nash,
    the stuff I am doing at present is not yet permitted to be publicly available, but the principles are very straightforward. Remember that WebLogic is primarily concerned with server-side functionality and Flex with client-side, so there is not really a great deal of overlap. The place where your Flex instantiation code will sit is in one or other JSP, using code very like the templates that Adobe generate. The only thing you have to do is ensure that your JSP (or the controller/code files behind it) generate HTML that contains the necessary. I tend to use the Apache Beehive libraries for UI stuff, but from vague memory I don't think these were around in WL8 - however, it doesn't really matter what tag library you prefer as all you are doing is generating HTML that looks like the usual JavaScript calls to AC_FL_RunContent (or swfobject if you are using that method). Basically, just take the Adobe-generated template and wrap the necessary bits and pieces round the edge to make it a proper JSP.
    When you need to make calls to get functionality, just use something like
                        service = new HTTPService();
                        separator_date = new Date();
                        service.url = "get_tool_list.jsp?sep=" + separator_date.valueOf();
                        service.addEventListener(FaultEvent.FAULT , fault_handler);
                        service.addEventListener(ResultEvent.RESULT, resultHandler);
                        service.resultFormat = "text";
                        CursorManager.setBusyCursor();
                        service.requestTimeout = WEB_SERVICE_TIMEOUT;
                        service.send();
    and then inside get_tool_list.jsp (or whatever...) do the server-side functionality you need, and return the result in a suitable format that the Flex resultHandler method can then interpret and make use of.
    Hope that helps,
    Richard

  • Need help in localizing the Flex Application

    Hi,
    I need help in localizing my Flex Application.
    my Question is: How to make SPANISH as the default language of Flex Application(Progamatically)? By default its taking en_US as the locale but my requirement is to change it to sp_SP(SPANISH)..
    Thanks in Advance..
    Pradeep

    Localization tutorial:
    http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_3.html
    How to change the locale at runtime:
    http://cookbooks.adobe.com/post_Change_Locale_at_the_runtime-11143.html

  • Urgent Help please ---deploying several times an application

    Hi everyone,
    I am trying to deploy an EJB (TestEJB, remote interface is Test) component
    into weblogic 6.1. All the files related to TestEJB are in the package com.myApplication.test.
    In the config.xml, the tag
    <Application Deployed="true" Name="Test" Path=".\config\mydomain\applications\test">
    <EJBComponent Name="test" Targets="server1" URI="test.jar"/>
    </Application>
    is written only once. Initially first time when I start the weblogic server,
    the test.jar will be deployed successfully without any error. When I stop the
    server and check the config file, there will be two <Application> tags
    for test.jar. I do not know how this tag is added once again.
    So when I restart the server now , I get the following error :
    Unable to deploy EJB: Test from test.jar:
    Unable to bind a cluster-aware stateless session EJBObject to the name: ejb.com.
    myApplication.test_EO. Please ensure that the jndi-name in the weblogic-ejb-jar.x
    ml is correct. The error was:
    javax.naming.NameAlreadyBoundException: Can't rebind anything but a replica-aware
    stub to a name that is currently bound to a replica-aware stub; remaining name
    <<no stack trace available>>
    >
    <Nov 11, 2003 1:49:21 PM EST> <Error> <Management> <Error deploying application
    .\config\mydomain\applications\test: java.lang.reflect.UndeclaredThrowableExcept
    ion>
    Again when I start the server, one more <Application> tag will added for test.jar.
    Very weird !!!
    I do not know why this <Application> tag for the componet test.jar is getting
    added each time when I start the server. How to avoid it ?
    Only first time when I start the weblogic server, I do not get this error
    because there will be only one tag in the config file. But when I stop
    the server, the config.xml will be updated with one additional <Application>
    tag for test.jar. This keeps repeated each time when I restart the weblogic
    server.
    Please suggest me how to get rid of this tag getting added repeatedly to the
    config.xml.
    My weblogic-ejb-jar.xml for test.jar :
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <!-- Generated XML! -->
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>Test</ejb-name>
    <stateless-session-descriptor>
    <pool>
    </pool>
    <stateless-clustering>
    </stateless-clustering>
    </stateless-session-descriptor>
    <transaction-descriptor>
         <trans-timeout-seconds>30</trans-timeout-seconds>
    </transaction-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/test</res-ref-name>
    <jndi-name>test</jndi-name>
    </resource-description>
    </reference-descriptor>
    <jndi-name>ejb.com.myApplication.test</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    Thanks and regards.

    I'm not following you anymore.
    The only thing in your applications directory should be test.jar. Is
    that the case?
    When you boot the server, it will add an Application to the domain
    configuration with a path of applications/test.jar.
    If you're still having problems, can you show me your config.xml, or at
    least the Application entries.
    -- Rob
    mogli wrote:
    >
    >
    My first recommmendation would be to stop the server and remove any
    <Application> tags from the config.xml.
    I removed all such <Application> tag for the test.jar
    Next, if you're trying to deploy to the applications directory, then
    it
    should be applications/test.jar, not applications/test/test.jar
    I think the server believes you have 2 different applications, and
    that's causing problems because they both have the same JNDI name.
    I removed "test" from the path.
    But still I am getting the error. The main reason for this error is, When
    I STOP the server, it is adding the tag <Application> for test.jar. (god
    only know why it is adding this tag) and this will be repeated each time when
    i STOP the server.
    Obviously, when i restart the server, the server will come accross multiple
    <Application> tag for this test.jar. That's why it gives error "javax.naming.NameAlreadyBoundException:
    Can't rebind anything ....."
    All my question is why server is adding this tag <Application> to test.jar
    thanks.
    mogli wrote:
    Hi everyone,
    I am trying to deploy an EJB (TestEJB, remote interface is Test)component
    into weblogic 6.1. All the files related to TestEJB are in thepackage com.myApplication.test.
    In the config.xml, the tag
    <Application Deployed="true" Name="Test" Path=".\config\mydomain\applications\test">
    <EJBComponent Name="test" Targets="server1" URI="test.jar"/>
    </Application>
    is written only once. Initially first time when I start the weblogicserver,
    the test.jar will be deployed successfully without any error. WhenI stop the
    server and check the config file, there will be two <Application>tags
    for test.jar. I do not know how this tag is added once again.
    So when I restart the server now , I get the following error :
    Unable to deploy EJB: Test from test.jar:
    Unable to bind a cluster-aware stateless session EJBObject to the name:ejb.com.
    myApplication.test_EO. Please ensure that the jndi-name in the weblogic-ejb-jar.x
    ml is correct. The error was:
    javax.naming.NameAlreadyBoundException: Can't rebind anything but areplica-aware
    stub to a name that is currently bound to a replica-aware stub; remainingname
    <<no stack trace available>>
    <Nov 11, 2003 1:49:21 PM EST> <Error> <Management> <Error deployingapplication
    .\config\mydomain\applications\test: java.lang.reflect.UndeclaredThrowableExcept
    ion>
    Again when I start the server, one more <Application> tag will addedfor test.jar.
    Very weird !!!
    I do not know why this <Application> tag for the componet test.jaris getting
    added each time when I start the server. How to avoid it ?
    Only first time when I start the weblogic server, I do not getthis error
    because there will be only one tag in the config file. Butwhen I stop
    the server, the config.xml will be updated with one additional <Application>
    tag for test.jar. This keeps repeated each time when I restartthe weblogic
    server.
    Please suggest me how to get rid of this tag getting added repeatedlyto the
    config.xml.
    My weblogic-ejb-jar.xml for test.jar :
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <!-- Generated XML! -->
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>Test</ejb-name>
    <stateless-session-descriptor>
    <pool>
    </pool>
    <stateless-clustering>
    </stateless-clustering>
    </stateless-session-descriptor>
    <transaction-descriptor>
         <trans-timeout-seconds>30</trans-timeout-seconds>
    </transaction-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/test</res-ref-name>
    <jndi-name>test</jndi-name>
    </resource-description>
    </reference-descriptor>
    <jndi-name>ejb.com.myApplication.test</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    Thanks and regards.

  • How to deploy a Flex application (Server Type ColdFusion) to production

    I have built a flex application using Flash Builder 4.6.  It utilizes ColdFusion Flash Remoting for its data services.  When first setting up the data services I had to set a bunch of properties in the flex server section.  Which I am not sure are all correct but the app does run and connect to the data services.  They were:
    Application Server type: ColdFusion
    Use remote object access service
         ColdFusion flash remoting
    Server Location:
         Deployed to Java application server
         Web Root: v:\inetpub\testFlex
         Root URL: http://myDevServerIP/
         ColdFusion Was folder: v:\CF9\JRun4\servers\testFlex\cfusion.ear\cfusion.war
    My question is now when I'm ready to deploy to my production machine and load the app onto a tablet or other computer, obviously the Root URL will be different something like http://myLiveURL.com.  Is this the only thing I change?  Do I even change it here or is there some other location?  Any other things I need to change?
    Thanks!
    Your help is much appreciated!

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

  • Help in printing from flex application

    Hi Guys,
    I am working from last few days with the printing via flex application, i face some issues while printing if any have suggestion or help it would be great..
    1. Print which i got is not clear, like fonts are little fuzz or blur like.
    2. Is printing via flex application is like the same as we print from MS WORD ?.
    3. Choosing Flex for printing purpose like labels or A4 paper is right choice or not ?
    Please comment!!
    Thanks in advance,
    Himanshu

    I went first to the Apple Store and tried an App and did not work had to inter the IP which I know  is correct. What I was looking for is someone that is using the 7210 with the Iphone and what App they are using. I may have something else going on.
    Thank you for the response.
    Dee

  • Deploy simple Labview applications without installing the Labview runtime?

    [Labview 8.21 - Windows XP]
    Hello and a happy new year to all !
    I have coded very simple Labview applications that basically read text files (exported from Ms Excel), make some string operations, array sorting and at the end write another text file that is then imported in Ms Access. Now I would like other people from the School parents association to use this application on their own PC but ideally without having to install the Labview run-time;  for various reasons one of them being that they are not administrator of their PC, another reason being that I feel bad to ask them to install 100Mb of programs on their PC to execute my <1Mb applications. All that I can assume is that they have Excel and Access installed on their PC.
    I have read some postings on the Forum and in the Knowledge base from which I understand that the only way to use my application without the Labview runtime is to build a shared library that maybe I could then link via a VBA code from inside Excel or Access. But I cannot find any usable example on how to do that practically. And maybe it is not possible. 
    What is the easiest way to run such very simple Labview compiled applications on a PC that does not have Labview installed? Is Labview not at all built for such use?
    Thanks a lot for your help and ideas.
    Christophe

    You will need to have the runtime installed. There is a lot of other languages that also have the need for there own runtime, but they are commonly installed with the OS, so you don't realize it. Just building a dll won't solve this.
    There might be a hack possible, though. People have managed to strip down the required installation and been able to deploy the required parts of the runtime only. If you want to go this way, search on LAVA. But I'm not sure if it works with LV 8.20, and you will need to invest some time to figure out the minimum requirements. But be aware that it is a hack, so it's on your own risk.
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • Help please deploying Crystal Decisions 10 to Microsoft 2008 R2 IIS 7

    Folks, I need your help please. We've been using Crystal Decisions 10 with MS Server 2003. We're migrating to a VM envirionment with MS Server 2008 R2. I have everything working except for our crystal reports. We are a mostly an ASP Classic enviroment.
    When the report is called it opens, the SP query does not fail but the data does not show in the activex viewer. If there is a tree view associated with the report, you can see the expandable data points on the left but the report does not actually appear. No errors are apparent either.
    This thing is killing my production. Any help would be greatly appreaciated!

    Hi Jack
    I moved your post to the SAP Crystal Reports - Legacy SDKs SCN Space.
    I really doubt that you will ever get this working. As Sastry mentioned, CR 10 did not support MS Server 2008 R2. The only version of CR (using classic ASP) to support anything close (WIN 7) was CR XI R2 (v. 11.5.x), Service Pack 6. See the following wiki for more details:
    Crystal Reports v. 9.1 to SAP Crystal Reports, developer version for Microsoft Visual Studio Runtime Distribution and S…
    For CR XI R2 SP 6 and WIN 7 I wrote a small blog - essentially collating info reported by customers on how to get ASP working - on WIN 7 (sometimes this works, other times...). See:
    Report Designer Component (RDC) in classic ASP applications on Win 2008 Server and Win 7 - Possible Solutions
    Please note that both CR 10.x and 11.5.x are out of support (have been for years). My recommendation, understanding that porting the app to more recent versions of CR and either the .NET or Java SDK is not possible:
    Update to CR XI R2 and keep your fingers crossed. Your chances of getting this to work CR 10 are pretty well zero. Your chance of getting this to work with CR XI R2 SP 6 are better, but still approaching zero. You may be able to obtain CR XI R2 by calling sales (866-681-3435) or check the Worldwide Office Locations | SAP.
    Last note. If you do manage to get CR XI R2, please so keep in mind that:
    1) CR XI R2 is no longer supported.
    2) You will be using CR XI R2 in an unsupported environment (Server 2008).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Need Help regarding a simple mobile application

    Hello friends,
    I am bit newbee to J2ME technology.
    I have basic understanding about MIDLETS.
    Friends,i am designing an instant messenger using midlet.
    Could anyone send some idea's of how to design a CHAT application.IF some one can give a small code of implementing it could be really helpful....
    Looking for your help!!!
    Thanks In Advance !!!
    Regards,
    RAHUL

    You have been no help but I will post again hoping someone else can reply....
    Here is a more exact detailing of what I am trying to do:
    I am hosting a text file here:
    http://www.geocities.com/biocx/entertainer.txt
    And when I open up MMAPI Demo and go to simple player, and then URL and paste this in, it plays the simple rtttl/midi file. It is doing this through RingToneConverter.
    Now all I want to do, and this is the part I need help with, is while it is playing, I want the notes to be displayed on screen. Can anyone help me with this! I have tried and every time is gives me a problem saying that the RingToneConverter Class isn't abstract and I cannot print to screen...
    If someone could help me with this, it would be greatly appreciated.
    Thank you,
    Mike

  • Help please with connecting to applications!! please!!!!

    I have the new 32 gig itouch . when i go to get a a application on my ipod it tells me to enter my acount information, so i do. then it says authorization failed plz connect to itunes...and i had already resigstered with an account on apple so all my information is correct..wht do i do !!

    Or maybe somebody could help with changin whole UnZip class to the method...please :( ?

  • Urgent Help Please - Setting up Flex 14

    Hi,
    I am looking for some urgent help. I bought a friend a new Lenovo Flex 14d but having issues straightaway. Turned it on, got to a screen asking for name of pc, then to a page about wlan connection. He does not have a wlan connection but cannot move on from this screen. What can we do to get the pc set up?
    Thanks !

    Colette,
    This sounds like you are going through the standard Windows setup for a new system.
    Does your friend have any internet connection at all?  Ethernet perhaps?  
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • HELP please - NWDS issue: Customized application based on 'vanilla' SAP DCs

    Hello,
    I am about to deliver a SAP Web-Channel solution and therefore I have to make some developments on the 'vanilla' application as nothing is perfect as it comes out of the box. We have setup all tracks to download & build the SAP standard application (Java, WAR und EAR part), but I do not want to modify the DCs directly instead I like to create my own DC to add my developments on top.
    What I did within the NWDS
    1. I have downloaded the WAR, EAR, and java SC from the NWDI
    2. I have created my own DC such as "CUST/ISA/WAR"
    3. I have assinged the original war "crm/isa/web/b2b" as Used DC
    I performed the build, but when I take a look in the generated WAR file, the source code / JSP files are merged with my own - instead I can find the used DC as JAR file within the lib folder.
    I also followed the instructs as described in the published PDF: How_To_Create_Custom_App_ECO5200.pdf
    I almost tried everything, but I can't see any obvious difference to the setup as SAP did. The original WAR project from SAP also depends on other DCs, which includes their JSP files, but I can't find the difference to the steps I did ..... PANIK!
    Does anyone know what could have went wrong?
    Cheers,
    Andreas

    Problem solved. I just figured out that I need a postbuild.vm within the "cfg" folder. To figure that out, it almost drove me crazy. There is no documentation available and it is getting more trick if you have to retrieve code from a WAR project and not a Java Project as the component is not listed within the dependencies, which are required  for the compilation.

  • Help with a simple Javacard application

    Hi,
    I am new to Java card. We have a project in which we basically have to verify a signature(the key for this would be generated on the card) on data and then have to sign the data with another key(also generated on the card).
    My question is:
    This looks straightforward(at least on paper) and therefore would I need to use the OPEN SC library at all? Javacard alone should be able to handle this..is it not?
    Help in this direction would be greatly appreciated.
    Best

    858087 wrote:
    Hi,
    I am new to Java card. We have a project in which we basically have to verify a signature(the key for this would be generated on the card) on data and then have to sign the data with another key(also generated on the card).
    My question is:
    This looks straightforward(at least on paper) and therefore would I need to use the OPEN SC library at all? Javacard alone should be able to handle this..is it not?Java card alone will take care of it. You just have to use the javacard framework.
    Help in this direction would be greatly appreciated.You will need to learn about the following javacard packages(classses):
    javacard.security.KeyBuilder;
    javacard.security.KeyPair;
    javacard.security.RSAPrivateCrtKey;
    javacard.security.RSAPublicKey;
    javacard.security.Signature;

  • Help with creating first Flex application

    I'm making my first Flex website for a client.
    But - I have no experience!
    Is there any tutorials that someone can throw me to?
    The site is a photographic portfolio.
    Thanks in advance. :)

    Save some time and buy the orilley book on flex2

  • Help please: "Access denied by Application security check"

    I am very new for using Application express 2.2.
    I create a demon application, and want to creat a end user right now.
    The end user has no-dev and no-admin privileges. However when I tried to logon I got error message "Access denied by Application security check", and only option is to log-out.
    What I have done wrong?
    Thanks,

    See http://download-east.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/sec.htm#BABBCIEE
    When you create users in the Apex repository (using an Admin account in the workspace), and give them neither Dev nor Admin privilege, they are not meant to login to the Application Builder. You would use the link above to create an authentication scheme in applications you develop.
    [Read that Chapter 11 Managing Application Security from start to finish]

Maybe you are looking for

  • Certificate not enrolling on Windows XP SP3 clients.

    We set up a computer certificate needed for our SCCM environment for https, we created the template, set it for auto enroll, and created a GPO.  The certificate deployed fine on all of our clients, and working as expected, except for the ones running

  • Install topic: MDM300 Software Component on XI 3.0

    hi, when importing the predelivered softwareware-component MDM300 in the XI.30-Repository it doesn't match with corresponding namespaces of the proxy-classes (transaction sproxy) on the mdm-system. Instead it contains the elements of SAP Basis 6.40 (

  • How can I save my login for website ?

    My iPad no longer saves my login even when instructed to "remember me". It used to before the update last week. Is there a setting that is stopping Safari from doing this.

  • Create database table using Forms Developer 6/6i without using SQL*Plus

    hello there, I need help in creating tables in Oracle using Forms Developer 6/6i without using SQL*Plus interface. your help is appreciated email: [email protected]

  • OLTP and OLAP databases on same SQL Server?

    Would you put OLTP and OLAP databases on same SQL Server or separate? I realize the ideal would be separate, but that means 2 expensive licenses instead of 1.  Most of our OLTP stuff happens during the day while OLTP processing happens at night (so g