How do Cookies work in Flex?

Let's start with the goal. I need cookies to work as they do in any 'normal' browser.
I have a Flex application that will be calling a webservice(REST service at url http://www.abc.xyz/setcookie) and the service returns a response and a cookie.  The service actually only records any cookies that it gets and returns another cookie along with a message of what it got in the cookie and what it set in the cookie. If I call this service in a browser (Mozilla) then the first time through there is no cookie but one is set and returned.  The 2nd time calling with Mozilla I get the message that there is 1 cookie in the request and one is set and returned. All is well.
I code a flex application to simply call this service and try to decode the response. But am having problems.
1. Can't find the cookie in the ResultEvent. Look in the headers that are available (using Debug) but they don't seem to be there. Are they in the container? (Browser)?
2. When I make an HTTP Request using an HTTPService
    <mx:HTTPService id="restServiceSetCookie"
        url="http://localhost:8080/SimpleRESTapp/setcookie"
        result="resultHandler(event)"
        fault="faultHandler(event)"
        />      
... and then call it multiple times, the server always records that 0 cookies were sent with this request. I would have expected that it would be 0 the first time and then it would be 1 the next time as the cookie that was set by the server the first time was returned. The result handler simple prints out the text message from the server saying how many cookies it got with the request and the cookie data.
Am I missing something fundamental in how Flex or the container (Browser) works with regard to cookies? Do you really have to reimplement cookie handling with every Flex application? I don't want to use Local Shared Objects as I would have to change the services that are being used presently. Any help or direction to look would be appreciated.
Thanks
Cam

Thanks Richard. I was aware of that library but was really wishing that Flex would handle cookies in some built-in/reasonable fashion since they are so ubiquitous.  Just for giggles, what actually happens to the cookies? I.e. it looks to me like the HTTPService class must make it's call to the remote service without including cookies that would normally be passed by the browser and the same in response. ie. the browser or someone must strip the cookies from the response before passing it to the Flash VM. A complete HTTP response would include the cookies would it not?
I ran the response from the server in debug mode and hunted through the ResultEvent to the my call to this remote service that sets a cookie in the response and there was no where in the ResultEvent  that had the cookie or anything resembling a cookie. So something is actively stripping them. It may just be the browser/container but it seems very strange to me that the response would not be complete when it is returned to the Flex VM.
Does anyone have any further information on this?
Thanks
Cam

Similar Messages

  • Ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    On the MBP, in iTunes, switch to Song view and enable the iCloud Status column by pulling down View > View options and selecting the option for "iCloud Status." Close the small window. Look for any tracks that have a status of "waiting." If you see several of them disable iTunes Match while holding down the Option key. Quit iTunes, wait a few seconds, then open it again and turn iTM back on. Let it compelete the scan. Wait until all tracks that are "waiting" have a status of either "matched" or "uploaded."
    On the iPad, turn off iTunes Match then launch the Music app and let the contents clear out. Power cycle the iPad for good measure, then re-enable the service once all the tracks in iTunes have been processed.

  • Customizing a VScrollBar is not working in Flex sdk 4.6?

    Hi,
    I have updated my Flex sdk from 4.5 to 4.6 in my application. I have faced a strange issue this sdk 4.6.
    In my application I have designed a Custom VScrollbar for customizing the vertical scroll speed of a mouse wheel to smooth-en the scrolling . This was working fine when using Flex sdk 4.5.
    Since I have updated to Flex sdk 4.6, the vertical scroll bar in not visible in UI. Whereas it was visible and working fine using Flex sdk 4.5.
    How to make it work in Flex sdk 4.6?
    The usage of the Customized Scroller is given below.
    In Main Page:
    <components:CustomScroller id="homeUIScroller"
                                   width="100%" height="100%">
            <s:VGroup >
            </s:VGroup>
    </components:CustomScroller>
    CustomScroller.as:
    public class CustomScroller extends Scroller
            public function CustomScroller()
                super();
                this.verticalScrollBar = new CustomVScrollBar();
    CustomVScrollBar.as
        import flash.events.MouseEvent;
        import mx.core.mx_internal;
        import mx.events.FlexEvent;
        import spark.components.VScrollBar;
        import spark.core.IViewport;
        use namespace mx_internal;
        public class CustomVScrollBar extends VScrollBar
            private var distance:Number = 78;    // default scroll mover value
             *  Override mouseWheelHandler to scroll by a fixed amount
             *  See superclass for example of how this normally works
            override mx_internal function mouseWheelHandler(event:MouseEvent):void
                const vp:IViewport = viewport;
                if (event.isDefaultPrevented() || !vp || !vp.visible)
                    return;
                var delta:Number = event.delta;
                var direction:Number = 0;
                if (delta < 0){
                    direction = 1;
                } else if (delta == 0){
                    direction = 0;
                } else {
                    direction = -1;
                if(direction == -1 && vp.verticalScrollPosition <= 0)
                    return;
                if(direction == 1 && (vp.verticalScrollPosition + distance) > maximum)
                    return;
                vp.verticalScrollPosition += distance * direction;
                event.preventDefault();
    Any help would be appreciated.
    Thanks In advance.

    Thanks for the response. I am using spark TextInput components as you can see in the code above. I've used these conrtols in other apps in FB 4.5 and have had no problems so it seems like something may be different in 4.6, or it's a bug.

  • How to display reply in flex data grid?

    Hello All,
    Frompast couple of months i am working on a Flex Application which used MySQL databse and PHP as server side language. In this application user can login and they can post their comments which will be displayed in a datagrid. This will have a reply button where other users can send their reply. My problem is how i will be displying the reply of a msg in a datagrid. Here is the screenshot of my datagrid
    I thought of 2 options:
    1. Displaying the reply in the datagrid and disaply in the same row: i don know how we can do this.
    2. Store all the replies in data base and display in toher panel though a button. From flex side it is easy to do but i don know how i can store them in database.
    Please let me know if you have any ideas/tutorials on this

    This is only in theory, haven't actually checked it but I think it could work
    If each one of those posts is done by an itemrender, your renderer can have 2 states stateone and statetwo for example.
    The reply state (statetwo) being bigger and containing space for the reply post.
    Store your replies in the database and have another boolean column ( Tinyint(1) or something) in your MySql db indicating that a particular post has a reply . When you pull your data from the database and put in in an arraycollection check this column for each post and use it to set the state of the itemrenderer.
    That way posts with no reply with be state one, and posts with replies will be state 2 and you can populate the reply field with data from the object in your arraycollection.
    I suppose it all does depend on how you get your data from MySQL and how you store it in Flex but I think states is a way you could accomplish things like this.

  • Menu.createMenu is not working in flex 4.1.

    Hi,
    I have created a menu bar with menu item using flex 4. My problem is that the meubar is not clickable on left and right side. How to make it clickableon both sides? For this problem i have found a solution by clicking a button using Menu.createMenu but it is not working in flex 4.1. can anyione help me with this?
    Thanks,
    Karthick K.

    find my code below,
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[
                import mx.controls.Menu;
                import mx.events.FlexEvent;
                import mx.events.MenuEvent;
                protected var menu1:Menu;
                protected function showMenu():void
                   menu1 = Menu.createMenu(null, menuItem, false);
                    menu1.labelField="@label";
                    menu1.iconField="@icon";
                    menu1.show(0, 35);
            ]]>
        </fx:Script>
        <fx:Declarations>
            <fx:XML format="e4x" id="menuItem">
                <root>
                    <menuitem label="MenuItem A">
                        <menuitem label="File" icon="topIcon">
                            <menuitem label="New"/>
                            <menuitem label="Open"/>
                            <menuitem label="Save" icon="top2Icon"/>
                            <menuitem label="Save as..."/>
                            <menuitem label="Close"/>
                            <menuitem label="Print"/>
                            <menuitem type="separator"/>
                            <menuitem label="Quit"/>
                        </menuitem>
                        <menuitem label="Edit">
                            <menuitem label="Undo"/>
                            <menuitem label="Redo"/>
                            <menuitem type="separator"/>
                            <menuitem label="Cut"/>
                            <menuitem label="Copy"/>
                            <menuitem label="Paste"/>
                        </menuitem>
                        <menuitem label="View"/>
                        <menuitem label="Document" icon="top1Icon"/>
                        <menuitem label="Tools">
                            <menuitem label="BasicToolsSubToolBar">
                                <menuitem label="SelectMenuItem"/>
                                <menuitem label="HandMenuItem"/>
                                <menuitem label="ZoominMenuItem"/>
                                <menuitem label="ZoomDragMenuItem"/>
                            </menuitem>
                            <menuitem label="AnalysisToolsItem"/>
                        </menuitem>
                        <menuitem label="Window"/>
                        <menuitem label="Help"/>
                    </menuitem>
                    <menuitem label="MenuItem B"/>
                    <menuitem label="MenuItem C"/>
                    <menuitem label="MenuItem D"/>
                </root>
            </fx:XML>
        </fx:Declarations>
        <s:Panel title="Menu Control Example" width="553" height="238">
            <s:Button x="10" y="174" label="Show Menu" click="showMenu()"/>
        </s:Panel>
    </s:Application>
    The above code is not working in Flash builder 4 sdk used is 4.1 especially the code snippet in red.
    Thanks,
    Karthick K..

  • How to pass  variables into flex movies form the url

    I used to do this in Flash 8 using swfobject, but it does not
    seem to work with Flex.
    Anyone can provide an example on how to do this.
    Thanks,
    Gilbert

    ZClaes,
    Thanks. But where do i put the following code on the html
    page (from the example of your link):
    <%
    String fName = (String) request.getParameter("firstname");
    String mName = (String) request.getParameter("middlename");
    String lName = (String) request.getParameter("lastname");
    %>
    Gilbert

  • How to receive XML from Flex HTTP POST

    Hi,
    We curreontly have a setup where we have a FLEX frontend send an XML through a HTTP POST and awaiting a response also in XML. On the backend this is handled relatively simply by a PHP script that basically does the following:
    read data (in XML)from FlEX HTTP POST into a new temp XML file.
    execute a c++ program with the XML file as one of the parameter.
    return the result to FLEX
    We have decided to move to BlazeDS for various reasons.
    Looking at the examples bundled with BlazeDS they have a jsp example that returns an XML result to FLEX so that part is fine. I am trying to find an example of JSP (or Servlet) that is able to read the XML data from FLEX and write it into a temp XML file. I would then try to use runtime.exec to invoke a local C++ program to process the XML file the result of which will be sent back to FLEX.
    Any help will be very much appreciated!

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>I&#8217;d avoid calling an executable just to process XML &#8211;your<br />application server would provide enough support for reading and writing XML, no?<br />Also, if you&#8217;re only planning on working with XML then even BlazeDS might<br />be overkill because its focus is on sending strongly typed ActionScript data efficiently<br />to and from a client (it&#8217;s true that it does have a proxy service, but<br />that is not involved with processing the actual XML data).<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>How complex is your XML? Do you need to resolve ids and<br />references or can you parse it top down in a single pass? There are several<br />well known libraries in Java for dealing with XML &#8211; the choice depends on<br />how you need to interact with the XML. Most of them take an InputStream as a<br />source for reading XML and you can get the InputStream from the servlet<br />request. Googling should turn up numerous examples.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Pete<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-left:solid blue 1.5pt;padding:0in 0in 0in 4.0pt'><br /><br /><div><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> khwong<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Sunday, September 28, 2008 12:09 PM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> How to receive XML from Flex HTTP POST<o:p></o:p></span></p><br /><br /></div><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new discussion was started by<br />khwong in <br><br /><br><br /><b>General Discussion</b> --<br><br />  How to receive XML from Flex HTTP POST<br><br /><br><br />Hi, <br><br /><br><br />We curreontly have a setup where we have a FLEX frontend send an XML through a<br />HTTP POST and awaiting a response also in XML. On the backend this is handled<br />relatively simply by a PHP script that basically does the following: <br><br /><br><br />read data (in XML)from FlEX HTTP POST into a new temp XML file. <br><br />execute a c++ program with the XML file as one of the parameter. <br><br />return the result to FLEX <br><br /><br><br />We have decided to move to BlazeDS for various reasons. <br><br /><br><br />Looking at the examples bundled with BlazeDS they have a jsp example that<br />returns an XML result to FLEX so that part is fine. I am trying to find an<br />example of JSP (or Servlet) that is able to read the XML data from FLEX and<br />write it into a temp XML file. I would then try to use runtime.exec to invoke a<br />local C++ program to process the XML file the result of which will be sent back<br />to FLEX. <br><br /><br><br />Any help will be very much appreciated! <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b69b23">How to receive XML from<br />Flex HTTP POST</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b69b23!folder=.3c061a83">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div><br /><br /></div>

  • How make custom window with flex 3 ?

    Recently version, I was maked custom window by used
    <mx:Application> instead of <mx:WindowedApplication>
    but <mx:Application> script does not work in flex 3
    beta 3 ...
    when I changed WindowedApplication to Application. design
    view was black out ..
    ofcourse, I changed systemchrome and transperate tag in
    app-xml .
    how make custom window ?
    sorry for my poor english ...

    Have you tried changing your root tag to WindowedApplication?
    I think AIR may not support using Application as the root tag. Is
    there a reason you want to avoid WindowedApplication?
    - Peter

  • How to load images in FLEX datagrid using Actionscript

    Hello friends,
    I need a small help from you. i am working in flex and in flash builder 4. Now my requirement was, i want to display images inside datagrid. I found a solution in mxml when searching in net. But i need a solution in actionscript. Can anyone help me out. I am new to flex environment.
    i am attaching the mxml code along with this.
    your help will be appreciated.
    Rajesh
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    Derrick Grigg
    [email protected]
    http://www.dgrigg.com
    created on Nov 3, 2006
    A sample of how to extend and use a data grid to allow custom drag images instead
    of the default 'row' based image.
    -->
    <mx:Application
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="absolute">
        <mx:ArrayCollection id="dataSource">
            <mx:Object image="assets/ibmlogo.jpg" name="Spy Camera" description="James Bond spy camera"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/cantena.jpg" name="Antena" description="Can shaped antena"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/globe.jpg" name="Floating globe" description="Gravity defying floating globe"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/orb.jpg" name="Orb" description="Blue glowing orb"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/putty.jpg" name="Putty" description="Reshapable putty"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/radiowatch.jpg" name="Radio Watch" description="Dick Tracy style radio watch"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/rover.jpg" name="RC Rovers" description="Battle RC Rovers"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/ufo.jpg" name="Flying UFO" description="RC UFO for indoor-outdoor"/>
        </mx:ArrayCollection>
        <mx:VBox>
            <mx:DataGrid dataProvider="{dataSource}">
                <mx:columns>
                    <mx:DataGridColumn headerText="Product" dataField="name"/>
                    <mx:DataGridColumn headerText="Description" dataField="description"/>
                    <mx:DataGridColumn headerText="Image" dataField="image">
                        <mx:itemRenderer>
                            <mx:Component>
                                <mx:Image source="{data.image}"/>
                            </mx:Component>
                        </mx:itemRenderer>
                    </mx:DataGridColumn>
                </mx:columns>
            </mx:DataGrid>
        </mx:VBox>
    </mx:Application>

    Hi Rajesh,
    The link worked for me ...May be that sight might have been blocked due to firewall in your ComputerSettings or so.
    May be you can try copy and paste the link in the browser instead of directly clicking the link.
    Make sure when you copy your link is not break I mean you shouldn't have any spaces in between url.
    Thanks,
    Bhasker

  • How the balance works for http/https in CSS?

    I want to understand how the balance works for http/https in the CSS.
    As per doc,
    - http/1.0=single URL per TCP connection
    - http/1.1=persistent connection.
    Q1. my understanding is http is stateless connection so needs TCP session for each URL. how the http/1.1 works with persistent. keep the same TCP session for a multiple URL request?
    Q2. https is using single URL and continue processing until terminate the https instead of open another URL in the middle of transaction. in this case, I think the client can stick into same service based on the assumption the CSS support persistent. if then, no advanced sticky(ex, srcip) required?
    Q3. looks below both are analogy. what's difference between them?
    - balance srcip(same src IP to the same service)
    - advanced-balance sticky-srcip
    Q4. what's balance decision mechanism for "balance roundrobin" to distribute evenly? ex, in case of multiple URL request coming from same client. evenly distribute URLs?
    Regards,

    Hello,
    first let me clarify 1 point.
    HTTP/HTTPS are standards that are defined in RFC.
    For HTTP/1.1 you can check the following RFC
    http://www.faqs.org/rfcs/rfc2616.html
    Therefore, the behavior of HTTP 1.1 is not defined by the CSS.
    Q1- HTTP/1.1 simply keeps 1 TCP connection to send a received mutiplie HTTP request/response.
    HTTP/1.0 will open 1 TCP connection for every HTTP request.
    Q2- HTTPS is just HTTP over SSL.
    So basically the same rule as above applies.
    HTTP/1.1 can use 1 SSL connection for many HTTP request/response while HTTP/1.0 will use 1 SSL connection for each HTTP request.
    Therefore, if you have customer using HTTP/1.0 you need some form of stickyness to guarantee that every connections will go to the same server.
    Even if only using HTTP/1.1 you may need stickyness.
    A user could disconnect and reconnect and require to be loadbalanced to the same server as before.
    Q3- There is a big different between balance srcip and sticky-srcip.
    The balance srcip simply hash the source ip address to find the destination server.
    The problem of this method is that the loadbalancing is not guarantee to be evenly distributed between the servers.
    With sticky-srcip, you use a normal balance method like round-robin, and then you create a sticky entry in a sticky table.
    Next time this user comes back we first check the sticky entry to find the destination server.
    The advantage is that it guarantess your users will be evenly distributed among the server.
    Q4- roundrobin is applied to connection - not url [by default].
    So if you have 2 users and they both open 1 connection, the CSS will send 1 connection to 2 different servers.
    So each server has 1 connection.
    If one user sens 10 URL and the other 1 sends only 1, one server will have 10 url to process while the other only one.
    That's if you are using HTTP/1.1 and use persistent mode on the CSS.
    You can break persistency and split the url.
    I run out of space and time to explain you everything.
    I suggest you go read the RFC or a book on HTTP.
    Also read the CSS configuration guide.
    There is much more you need to know if you want to take full advantage of the CSS like cookie, ssl offloading, L7 rules vs L3/4 rules, ...
    Regards,
    Gilles.

  • How to achieve modularize in flex using cairngorm framework?

    Hi,
    I have seen many articles on flex and cairngorm but haven't found enough information on how to achieve modularization in flex using cairngorm framework.
    Please let me know any information regarding this.
    Thanks in advance.
    Vishnu

    Hi Sumit,
    I am also working similar kind of requirement. In my case I tried to add new tab subtab using personalization , how ever the add new item button is not enable.
    So I created new stacklayout and tried to add this to new tab in the existing subtablayout by using co process form request code:
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OracleCallableStatement oraclecallablestatement = null;
    OracleConnection oracleconnection = (OracleConnection)oapagecontext.getApplicationModule(oawebbean).getOADBTransaction().getJdbcConnection();
    try{
    oracleconnection.setAutoCommit(true);
    oraclecallablestatement = (OracleCallableStatement)oracleconnection.prepareCall("begin GLO_TMPVIJ_PRCV(:1); end;");
    oraclecallablestatement.setString(1,"In the custom co process request");
    oraclecallablestatement.execute();
    }catch(SQLException sqlexception)
    throw OAException.wrapperException(sqlexception);
    OASubTabLayoutBean subTabLayout =
    (OASubTabLayoutBean)oawebbean.findChildRecursive("ApplicationDetsTabLayout");
    OASubTabBarBean subtabbar = (OASubTabBarBean)oawebbean.findIndexedChildRecursive("subTabBar");
    OALinkBean link = (OALinkBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    OAWebBeanConstants.LINK_BEAN, null,
    "link");
    OAStackLayoutBean commentsRN =
    (OAStackLayoutBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    "/xxhr/oracle/apps/irc/candidateManagement/webui/CommentsRn",
    "CommentsRn", // always specify name
    true); // region created in Oracle9i JDeveloper OA Extension
    subTabLayout.addIndexedChild(commentsRN);
    subTabLayout.addIndexedChild(link);
    in this I am not ale to add the new tab.
    Regards,
    Vijay Reddy.

  • How can i integrate adobe flex into muse?

    Working with Flex and changing the skins is just not my thing, so please tell me how can i create a website thru Muse and still use flex developers applications running on the site?

    Since flex publishes SWF files. Muse support SWF (Flash) files. Embed the codes generated in flash builder (Not the entire HTML but the codes starting from the flash embed stuff, you should be familiar with those codes) that would be found in the HTML as arbitrary HTML into Muse and your Flex application will run smoothly. (Except their is a bug in Muse, it should work).

  • Working with Flex and Central

    Hi,
    I am new in Flex and Central and interested in working with
    Flex and Central and I'm currently trying to run one of the samples
    from the "Central Flex SDK", the HelloFlexCentral. I have an error
    when trying to run the application. The "import.mx.central" line is
    not recognized.
    I don't understand how to connect Flex and Central. My
    questions are :
    - Do I have to install a JRun environment to run/develop this
    kind of application or can I develop the application without a JRun
    Environment ?
    - Can I deploy my application on a IIS server for example
    (and then all the users will install it in central by accessing
    this webserver) ?
    - Where do I have to put all the "CentralIntrinsics" stuff to
    avoid this error I encounter ?
    Thank you for your answers.
    Olivier

    If you want three distinct notes, I suggest you cut it into three samples, then using flex pitch drag the notes to the pitches you desire. Keep in mind that the farther away a note is from it's actual sampled pitch, the worse it's quality will be.

  • Cookies (working with another application)

    Hello,
    I am currently working on a project. I finished everything in the project but there are many requests to bypass the login page. Currently users log on to a facutly site which then gives them the link to my application. The password for the faculty site and my own differ. They are requesting that the login page can be avoided when opening the application from the faculty site.
    I read a similar thread at Re: How to co-work with another application with Cookie or something
    So, the faculty page would authenticate. My application uses the same database, but should work well as is. There is no transfering of information between applications. Basically all my application needs to do is log the user in automatically.
    I believe this is done via cookies. I've tried some OWA_COOKIE procedures, but I think I am doing it all wrong. It is an area that I've never covered.
    Any help would be great. Thanks
    -Tim

    On a further note,
    I used the same logic as in the thread Re: How to co-work with another application with Cookie or something
    On page 150 I set the cookie using:
    begin
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
    expires => sysdate+10,
    name=>'TEST',
    value=>lower('testing'));
    wwv_flow.g_unrecoverable_error := true;
    owa_util.redirect_url('f?p=&APP_ID.:200:&SESSION.');
    exception when others then null;
    end;
    Then on page 200 I read it using:
    declare
    v varchar2(255) := null;
    c owa_cookie.cookie;
    begin
    c := owa_cookie.get('srprt');
    :TEXTFIELD1 := '';
    :TEXTFIELD1 := c.vals(1);
    exception when others then null;
    end;
    this works. So what I would like to do now is read in a cookie from the other site. Is this at all possible?

  • [svn] 3051: actually, for some reason this cast is changing how this method works so

    Revision: 3051
    Author: [email protected]
    Date: 2008-08-29 19:19:32 -0700 (Fri, 29 Aug 2008)
    Log Message:
    actually, for some reason this cast is changing how this method works so
    I'm backing it out!
    Modified Paths:
    blazeds/trunk/modules/core/src/java/flex/messaging/io/BeanProxy.java

    As I said in your original post, iTunes U is not available to any institution, government or otherwise, in South Korea. If or when Apple will extend iTunes U to your country is something none of us here can say, and Apple will not until such time as they're ready to make an announcement. What Apple's criteria and requirements are for being able to open iTunes U in a given country is unknown; there is no "procedure" that any of us here can state or direct you to that you could initiate. It's totally up to Apple, and if they are working on this, I'm sure they know who in the SK government they would need to work with.
    Sorry, but you will just have to wait and hope that something develops in the future.
    Regards.

Maybe you are looking for

  • Dual Monitors no longer working

    Hey there, I've been without net for a few weeks so I haven't done a full system upgrade in about a month. I normally have two monitors running just great using TwinView but I've recently picked up a new monitor that I'm using to replace one of my ol

  • How to keep short dumps for a longer time

    Hi All, I need to write a program to fetch all the below mentioned fields from the system dump tables and insert into a user defind table. Please help me with the code. Thanks in advance.... PROBLEM DESCRIPTION ABAP runtime errors (also known as shor

  • Bug report iMovie '11 Title, Picture, Transitions Location Duration bug

    In iMovie '11 version 9.0.1 (1095) there is a very annoying bug if you use Norwegian or Dutch. I presume in other languages as well, but in English I can't repeat the bug. Set System Preferences > Language & Text to Nederlands or something else (not

  • Block Vendor Invoice payment & Block Vendor Invoice

    Dear Colleagues, How can Vendor Invoice payment be blocked using  F-53 / F- 58 ? any config. req ? I know that at F110 level payment can be blocked if in the Vendor Master , payment block is ticked. How Vendor invoice be blocked at FB60 level ? any c

  • Is there a "recent pages" button in the new FF

    I updated FF, but went back to the older version 'cuz I couldn't find a "recent pages" button, which is on the end of the back/forward buttons...I use it constantly! Is there an option on FF 5 to select recent pages to view?