How to communicate between Flex and JSP and show the result in an Iframe

Hi all
I am trying to send some data from flex to one HTTPService and trying to show the same response jsp in an Iframe. But unfortunately i am unable to get the responce Jsp's url to set as a source for iframe.
let me explain you clearly...I have a mxml where i am having a text box and a button in the left panel and in the right panel i am having an Iframe to display jsp. So once user enters some value in the text box and clicks button then HTTPservice's send method will be called with text box's content as an arguement. So i can fetch that value from request object in jsp and display the value in jsp. So the problem here is i want display that result jsp in my Iframe. I know that , we need that result jsp URL to display in Iframe . But as i am sending POST request to HTTPservice, i am not able to get the result jsp's URL in flex side.
So i need help desperately from great minds.So anyone of you can give me some suggestions!!!!
Regards

Hi all can some one please give a solution ...Any suggestions would be greatly appreciated

Similar Messages

  • A problem that how to communicate between PLC S7-300 and IA Server

    The PC running the OPC server is connected to PLC S7-300 via the RS232 serial port and the Siemens RS232-MPI adapter (product no. 6ES7972-0CA23-0XA0).
    But I encounter such problem when I create an object(S7_HMI)in IA Server:
    Step 1:
    links:http://www.simwe.com/forum/upload/2005/04/30/87472755.jpg
    Error message:
    Protocol error:Unexpected response from PLC
    links:http://www.simwe.com/forum/upload/2005/04/30/48471774.jpg
    When I communicate between S7-300 and PC by LOOKOUT 5.1,it works well.
    Could someone give me help? Thanks a lot.帖子被qzxin在05-08-2005 04:54 AM时编辑过了
    帖子被qzxin在05-08-2005 04:56 AM时编辑过了

    First of all, Thank You very much for Your answer.
    I'm using the TS Adapter that make the conversion from MPI to the serial bus.
    I have made yet control panels to supervisor systems with Omron PLCs and I correctly use the DataSocket with the DSC module: with Omron PLCs I've never had any problems of communications. The problems is now with Siemens. For the communication between control panel and PLC I have to use the internal modem of my computer and the OPC is S7_MPI of IA opc Server.I wondering if this OPC is ok for modem communications (inside there is a form to insert the phone number of the remote station) or if every kind of modem are compatible with S7-300 modem it has inside.I've noted that my computer modem don't do the phone number when i run the front panel!In running mode, if I take a look to the Block Diagram and I click the "Highlight Execution" button I don't see any animation on the code generated by the HMI Wizard to connect the only one tag to the DataSocket URL.
    Have You any other suggestions to solve the problem?
    Massimo Lazari

  • How To Make Search Query Showing the Result As List of Buttons.

    Can some one give me an idea how to start to make a Search Query showing the results as list of buttons.. i have already have my buttons with names. i just dont know how to make a search query.
    this is my on screen keyboard i made..
    im making a system that the result were a list of buttons.. showing like this
    This was supposed to be the output of the query that i need to do..
    Please help me.. i just need a idea or tips how to make this one.

    Here is code I posted recently for another question
    Public Class Form1
    Const BUTTON_SIZE As Integer = 20
    Const SPACE As Integer = 5
    Sub New()
    ' This call is required by the Windows Form Designer.
    InitializeComponent()
    ' Add any initialization after the InitializeComponent() call.
    Dim buttons As New List(Of List(Of MyRadioButton))
    For row = 1 To 6
    Dim newRow As New List(Of MyRadioButton)
    buttons.Add(newRow)
    For col = 1 To 6
    Dim button As New MyRadioButton()
    button.row = row
    button.col = col
    button.Height = BUTTON_SIZE
    button.Width = BUTTON_SIZE
    button.Left = col * (BUTTON_SIZE + SPACE)
    button.Top = row * (BUTTON_SIZE + SPACE)
    button.Name = String.Format("radGr1{0}_{1}", row.ToString(), col.ToString())
    Me.Controls.Add(button)
    newRow.Add(button)
    AddHandler button.CheckedChanged, AddressOf Radio_Change
    Next col
    Next row
    End Sub
    Private Sub Radio_Change(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim button As MyRadioButton = CType(sender, MyRadioButton)
    Dim row As Integer = button.row
    Dim col As Integer = button.col
    End Sub
    End Class
    Public Class MyRadioButton
    Inherits RadioButton
    Public row As Integer
    Public col As Integer
    End Class
    jdweng

  • How to synchronize between DHCP binding table and DHCP snooping table ?

    I clear DHCP snooping table with command "clear ip dhcp snooping binding " , and PC can't communicate with other any more. So how to synchronize between DHCP binding table and DHCP snooping table ?
    dhcp-test#sh ip dhcp bind
    IP address Client-ID/ Lease expiration Type
    Hardware address
    99.1.65.32 0100.1125.353c.25 Mar 02 1993 01:05 AM Automatic
    99.1.65.33 0100.1438.059f.85 Mar 02 1993 12:01 AM Automatic
    dhcp-test#sh ip dhcp snooping binding
    MacAddress IpAddress Lease(sec) Type VLAN Interface
    Total number of bindings: 0
    thanks!

    ip dhcp snooping binding mac-address vlan vlan-id ip-address interface interface-id expiry seconds
    Add binding entries to the DHCP snooping binding database. The vlan-id range is from 1 to 4904. The seconds range is from 1 to 4294967295.
    Enter the above command for each entry that you add
    To delete the database agent or binding file, use the no ip dhcp snooping database interface configuration command. To reset the timeout or delay values, use the ip dhcp snooping database timeout seconds or the ip dhcp snooping database write-delay seconds global configuration command.To renew the database, use the renew ip dhcp snooping database privileged EXEC command.

  • How to use TextField to add two numbers and show the result.

    hi everybody
    i would like to use JTextField to get addtion of two Numbers,
    for example i am trying to type any integer numbers in JTextField like 7
    and press JButton, called( +) to add anthor number like 7 and press JButton called(=) to get addtion fo
    7 + 7 = 14, at same JTextField.
    so there will be two buttons, one for (+),other for (=).
    i have implement ActionListener in (+) button ,to get Text from JTextField (with getText() method),
    now how do i use same getText() method to get the next number that i will add it with previous number in
    (+) button and get the result whenever i press (=).
    1-type integer number like (4) in TextField.
    2-press addition button(+) to get text by using getText() method and clear TextField.
    3-type anthor integer number like(6).
    4-press (=) button to get the number (6) by using getText() method, calculate 4 + 6 and show the result at same TextField (10).
    i hope it is so clear
    thank u in advance for any advice and suggestion.

    Use your first button to
    String x = JTField.getText();
    int y = Integer.parseInt(x);
    this will get your first value on your + button. Make sure you initialise the int beforehand incase nothing is put in (ie error prevention) then clear the JTField prob using setText(""). Repeat the process for the = button using different variables and add them normally and output the result.
    If your putting more than 1 arithmetic button on the GUI then you'll need to distinguish between them!!!

  • How can i get my iPhone, ipad mini and mac to show the same  contacts calendar and notes

    how can i get my iPhone, ipad mini and mac to show the same  contacts calendar and notes

    Plug the phone and iPad into your computer and sync them.

  • Wenn I've made changes on my private home-page and want to see the result, how do I get my Mac to load the new side instead of the "old" one?

    When I've worked on my private home-page and want to controll the results, how do I get my Mac to take the new version instead of the old one? I tried cmd R without any change! Who knows? Nina

    Try clearing the cache - command-option-e in Safari.

  • HT1339 My ipod is stuck at step 9 in this guide. Itunes told me to keep my ipod connected to itunes, and my Ipod shows the Apple logo as it should (though I can´t see any progress bar). Do anybody know how  long step 9 takes. I have turned off my firewall

    My ipod is stuck at step 9 in this guide. Itunes told me to keep my ipod connected to itunes, and my Ipod shows the Apple logo as it should (though I can´t see any progress bar). Do anybody know how  long step 9 takes. I have turned off my firewall.
    Please Help!

    If it happens again and the reset (home + power buttons) doesn't work, just let the battery drain; you'll know when the screen shuts off. Charge it back up and it should be fine. Frankly, I'm surprised this worked for you. Usually I hear people with this problem say that holding both buttons doesn't work, and they have to do the battery drain.
    If the issue is incurable next time, you have a one-year warranty from the date of purchase.

  • HT5621 How do I change the Apple ID stored on my MacBook Air?  I have changed my Apple ID on the Apple ID website, but both my MacBook Air and my iMac show the old Apple ID when accessing iCloud.

    How do I change the Apple ID that is stored on my MacBook Air.  I have changed my Apple ID on the Apple ID website but both my MacBook Air and my iMac show the old Apple ID when accessing iCloud.

    I had this problem on my iMac and fixed it after a  half hour of frustrated trying.  I had changed my Apple ID on my iPad mini while traveling.  When I finally got back home after a few months, I couldn't  log in to iTunes on my iMac.  The old Apple ID was still being used on my iMac.  I tried just highlighting it and deleting it and typing in my new Apple ID.  No dice. The login just defaulted to my old Apple ID.  I tried clicking on the drop down menu that appears when you right right click your Apple ID  that appears at the top of the page after highlighting the 'iTunes Store" in the left side list.  I saw "account" so I clicked on that.  The "account" settings on my iMac showed my new Apple ID but my iMac wouldn't use it. It just kept defaulting to my old ID. I shut down.  I logged back in.  Same result.  Finally I right clicked the same drop down menu and saw "sign out" at the bottom of the list.  Even though I was not signed in to iTunes, I clicked "sign out".  My next log in to iTunes showed my Apple ID as blank and I was able to type in my new ID.  Hope this helps.
    I am a long time 20 year Microsoft user. I am somewhat ( 1 year) new to Apple. With Microsoft, I found that fixing problems was clunky and complex, but there was always a post somewhere that explained the fix. Microsoft's explanations stated even the most obvious fact. Even if everyone knew that the sky was blue, Microsoft's instructions would still tell you that the sky was blue.  With Apple, I find that the obvious is sometimes not so obvious.  But the fix is almost always easy once you find it, without many of the elaborate maneuvers needed in Windows.

  • TS3274 I play candy crush both on my IPad and my samsung android, how do I synch them so they both show the same results?

    I play candy crush both on my IPad and my samsung android, how do I synch them so they both show the same results?

    We went through the same drill.
    First, decide which computer you are going to use.  One or the other.  You can't have it both ways.
    Then plug in the 'foreign' device.   Do not let it sync.  Yet. 
    Give this device a new name in the left pane in I tunes so that you all know which device is which.  You will need to authorise the computer to the new I tunes account.  You will need to transfer any purchases to that computer.  You will need to upload any photos to the photo library.
    Then sync.   Each time you plug it, it will remember the specific device, the old on, or the foreign one, and bring up its own particular arrangement as a starting point.
    You will find that by checking the boxes, you can share apps, and music.   But when you go to do updates, if you are mingling apps, each user will need to know the apple password to get updates.
    We found it to be a little confusing, but once you get used to it, using the same I tunes for 2 different accounts works ok.
    Before you do anything, please make a full backup ofmthe original device.  If something gets out of hand, you can always revert back to where your were.

  • How do i fix my phone it will show the apple sign when i put it on the charger it will show the apple sign and it wont charge and it will not come on how do i fix my phone i have the iphone 4s

    how do i fix my phone it wont charge it will show the apple sign when i put it on the charger and it will show the apple sign and then it will shut right back off and it wont come on and i have the iphone 4s how do i fix my phone

    Check the USB port and the USB cable for any kind of lint, debris or bent pins.
    Try another, working USB cable.
    If still no luck, get it checked by visiting an Authorized Apple Service Provider or contact Apple Support to get it serviced:
    iPhone - Contact Support - Apple Support

  • My iPad was disconnected during upgrade. I've tried restoring and resetting.  I just did an iPad erase in "find my iphone" and it still shows the itunes logo and the fire-wire cable on the screen with an arrow. It's currently plugged into my computer.

    My iPad was disconnected during upgrade. I've tried restoring and resetting.  I just did an iPad erase in "find my iphone" and it still shows the itunes logo and the fire-wire cable on the screen with an arrow. It's currently plugged into my computer. How do I remedy this?

    Unable to update or restore
    http://support.apple.com/kb/HT1808?viewlocale=en_US

  • Error 4013. my iphone 4s with ios 7 suddenly colllapsed. It appears the apple and turns on and off, always showing the apple.

    error 4013.
    my iphone 4s with ios 7 suddenly colllapsed. It appears the apple and turns on and off, always showing the apple.
    I try to connect it to itunes but when it tries to install the software again it appears error 4013. i tried changing the usb port anda the connecting cable buit it doesnt work. what shall i do??

    Did you already check these suggestions?
    Check USB connections
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    Common errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response”, and being prompted to restore again after a restore completes.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you see your error after changing your USB connections, continue to the next section to troubleshoot your hardware.
    copied from Resolve specific iTunes update and restore errors

  • When I'm looking at my recent text messages on my phone, and I'm on the screen where I see a list of people I have texted.  I click on a name to open up the conversation, however it is blank and doesn't show the conversation eventhough we've been tex

    when I'm looking at my recent text messages on my phone, and I'm on the screen where I see a list of people I have texted.  I click on a name to open up the conversation, however it is blank and doesn't show the conversation even though we've been texting back and forth the day before.  So my question is how can I see the conversation?

    Try the following procedure:
    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • Firefox freezes the computer for about 20-30 seconds (not even Alt+Tab works), the screen blinks black and then it shows the desired page. Does that several times at the beginning, then sort of stabilizes.

    Firefox freezes the computer for about 20-30 seconds (not even Alt+Tab works), the screen blinks black and then it shows the desired page. Does that several times at the beginning, then sort of stabilizes.
    This happens even if I simply hover the mouse over bookmarks, not even opening a page.
    And waiting for this to happen some times or closing and re-opening seems to make it work ok again.
    I've already disabled almost all add-ons (I'm using only one for Flash and NoScript right now), reinstalled Firefox (8.0.1), restoring only the bookmarks from an older version.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

Maybe you are looking for

  • How do I get my data from my old iphone to a new iphone?

    Hi I backed-up the data from my old iphone via itunes onto my computer.  Now, I have "restored" the replacement iphone- or so I thought.  There is none of my old info onto this new phone.  Help.  I am at a loss.  Where do I go to get all of my old da

  • IPOD I NEED HELP!

    MY COMPUTER RECENTLY CRASHED AND AFTER I DID A COMPLETE RESTORE,I CONNECTED MY IPOD TO TRANSFER THE MUSIC STORED ON IT TO MY ITUNES LIBRARY AND IT ERASED ALL THE SONGS ON MY IPOD.DO I HAVE TO RELOAD ALL THE MUSIC FROM MY CD'S?

  • I want to cancel an order

    I dearne would like to cancel an order  could someone please help me do that order number w240438161

  • IPod flashing orange though disk use is disabled

    Hello, my iPod Shuffle (4th gen) is flashing orange (and the windows safely remove hardware thing appears) until I sync it with iTunes or safely remove it (the led changes to solid green and the hardware removal thing disappears), though disk use is

  • Cannot create information center web archive for tomcat 7

    I'm upgrading the help of a commercial product from tomcat 5 to tomcat 7 and am not able to get help deployed as a war, which was working previously. I have followed the directions here: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.pla