Firing an external app from flash and pass parameters

Hi all,
I need to fire an exe from flash projector and pass it a lot
of parameters(need to regenerate an image). Could someone tell me
what would be the best solution for this... can I make a php
executable which could use all the gd functions? If yes, can you
please write a brief tut or provide some guidelines.
Thanks

then use:
fscommand("exec", "correctanswer.exe");

Similar Messages

  • How To : Call External Webservice from BPEL and pass SOAP Message to the WS

    Hello All-
    Greetings to all BPEL gurus. I am currently facing difficulties in calling an External Webservice from my BPEL Process and passing SOAP Message to it. The details are below:
    <strong>1. The BPEL process, using database polling feature of DB Adapter, will get the records from the database.</strong>
    <strong>2. Transform the message</strong>
    <strong>3. Call the External Webservice and pass the transformed message as the input to it. However the Webservice expects the BPEL process to send SOAP headers in the input message.</strong>
    I am struggling on how to put the transformed message within a SOAP envelope in the BPEL process.
    If anyone had similar requirements and have successfully been able to send SOAP messages from BPEL process to an external webservice, kindly let me know.
    Also if there is some kind of documentation or any link in the forum that I can refer, please let me know that as well.
    I am new to Webservice integration using BPEL and would really appreciate your help.
    Thanks In Advance
    Regards,
    Dibya

    Hi Dharmendra,
    I am trying to send a SOAP message from my BPEL process to a web service. I have a complete SOAP message in a complex variable defined in the wsdl for the partnerlink (web service). My problem is that when I invoke the partnerlink it fails even though the content shown in the BPEL console looks valid.
    I have set up obtunnel to see what I am actually sending out from BPEL. You mention that BPEL creates the SOAP envelope automatically.
    I think that my problem is a result of this automatic SOAP envelope that BPEL is creating. Do you know if there is a way to turn it off?
    This is what I see in the TCP monitor, please note the double SOAP env:Body:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <RCMR_IN000002NR01 xmlns="urn:hl7-org:v3" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <env:Header>
    <wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://testhost/CCS/Service_Endpoint</wsa:To>
    <wsa:From xmlns:wsa="http://www.w3.org/2005/08/addressing">
    <wsa:Address>http://localhost/CCS/Service_Endpoint</wsa:Address>
    <wsa:Metadata>
    <device xmlns:hl7="urn:hl7-org:v3">
    </device>
    </wsa:Metadata>
    </env:Header>
    <env:Body>
    <RCMR_IN000002NR01>
    </RCMR_IN000002NR01>
    </env:Body>
    </RCMR_IN000002NR01>
    </env:Body>
    </env:Envelope>
    Any help is appreciated.
    Regards,
    Aagaard
    Edited by: Aagaard on Oct 30, 2008 8:59 PM
    Should have mentioned. I am using BPEL 10.1.3.4
    Edited by: Aagaard on Oct 31, 2008 8:43 AM
    I have opened a new thread for this question so as to not confuse the issue more than necessary.
    How many SOAP envelopes do you really need?

  • "no access to the digital certificate" - Trying to export my first iOS app from Flash - Help please

    Hello
    I'm trying to export my first iOS app from flash to my desktop / on the device (Flash Pro CC, Iphone5)
    I followed the instructions on the adobe website to build an air app for iOS but on the last step it
    doesn't export the app.
    What I've done so far:
    - Apple developer account
    - creating the certificate + convert it to .p12
    - app ID / Name etc.
    - creating the provisioning profile from apple
    - iOS Air app in flash (Only Text "Hello world" with a tween)
    Now i have to load the certificates into Flash & enter a password (is it the password that
    i entered in the certificate or from my developer account/ Apple ID password? Both didn't work at the end)
    When i klick on publish in the last step than it loads a while but then i get the Error:
    "no access to the digital certificate"
    What is wrong? Can you help me please.

    Also, I should say, when I go into my phone on the computer and try to install an app, I get this message:
    Unable to start operation. Installer is already in use.
    Any ideas

  • When trying to update apps from iPad and iPhone a previous one time users email keeps coming up. How do I delete their information?

    When trying to update apps from iPad and iPhone a previous one time users email keeps coming up. How do I delete their information?

    delete off any apps that are asking for the wrong apple id and download/sync them over from the correct one

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=&gt;blk,p_attribute_name=&gt;'A_ID');
    if v_id &gt; 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • I downloaded an app from itunes and i do not know how to open it

    i downloaded an app from itunes and i do not know how to open it on my computer...?

    You don't open it on your computer.
    Apps from the itunes store are for ipod/iphone/ipad.

  • Hello Vivek here, i was trying to download apps from itunes and i could get the error message as itunes currently not available for past 2 days

    Hello Vivek here, i was trying to download apps from itunes and i could get the error message as itunes currently not available for past 2 days, is there any problem ideally or, please leave a reply
    <Email Edited By Host>

    Hi vivekanandanganesan,
    Thanks for using Apple Support Communities.  This article has some steps you can try if you are unable to connect to the iTunes Store:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Cheers,
    - Ari

  • HT5085 I have purchased an app from iTunes and now it won't allow me open it? What do I need to do to access this app on my mac?

    I have purchased an app from iTunes and now it won't allow me open it? What do I need to do to access this app on my mac?

    Nothing. iOS applications can't be run on a computer.
    (103423)

  • HT204266 I want to remove all apps from itunes and start again so I can separate ipod and ipad apps

    Is there any way of shifting apps from iphone and ipad category to just iphone and the other way around

    I dont think I explained my question v well. When I sink my iphone all the apps that are in the category of iphone, ipod and Ipad sync. I understand this however is there any way of changing the category the app is listed under so that I have a separate category for ipad and separate for iphone. Its so frustrating.

  • My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    I think many of us need a Defense Against the Podcasts App professor.
    Have you looked at this Apple support page?
    http://support.apple.com/kb/HT6190?viewlocale=en_US&locale=en_US

  • Call safari or external app from BI Mobile App

    Hi everyone,
    Is it possible to call from a link embedded in a Dashboard safari or an external App from Oracle BI Mobile App?

    This question seems to be unanswered all over this forum...I'd love a response.

  • I got a police scaner app from itunes and i cannt get it to work on my computer

    i just got this gift card  i got a police saner 5-0 now i cant get it to go to my computer how do i do that and how do i open it up

    debbiefromduluth wrote:
    i got a police scaner app from itunes and i cannt get it to work on my computer
    i just got this gift card  i got a police saner 5-0 now i cant get it to go to my computer how do i do that and how do i open it up
    Apps purchased from the App Store in iTunes are only for iOS devices such as the iPhone, iPod Touch and iPad.  To use such an app, you need to connect your iOS device to your computer and iTunes will send the app to the device.  You then run the app on the device.
    There is a separate Mac App Store (MAS) available to Macs running OS X 10.6.6 or later.  You purchase apps in the same way as the App Store in iTunes, but apps purchase in the Mac App Store will work directly on the Mac.

  • I used the Free Flashlight O app from iHandy and cannot turn the light off. iPhone 4s, iOS 6.

    I used the Free Flashlight app from iHandy and cannot turn the light off.
    iPhone 4s, iOS 6.
    I've tried everything: Power Down, Reboot, delete to uninstall and reinstall app, turn off in tray, etc.
    Nothing works.

    I cannot see your screen shots for some reason, but here's a suggestion:
    Open iTunes on your computer, look at your playlists there.  Go to your "Voice Memos" playlist, delete all its contents, and then sync your iPhone to iTunes.

  • How can I sync my apps from ipad and iphone to my mac

    how can I sync my apps from ipad and iphone to my mac

    Follow the instructions here or here. Note that while iOS applications can be stored on a computer, they can’t be run on it.
    (115410)

  • HT1311 I want to change app. Store I want buy some app from France and USA store is it possible my country is oman

    I want to change App Store I want to buy some apps from France and USA.is it possible my country is oman

    No. You can not purchase apps from a country other than your own.

Maybe you are looking for

  • Error in deploying Visual Composer model

    Hi experts. We recently got problems with deploying our visual composer applications. It has worked well before. The compilation excecutes perfectly, but when the deployment starts I get the error: "Error in executing a process for Flex compilation,

  • Icloud is not working on my macbook pro

    icloud is not working on my macbook pro and works on both my ipad and my iphone. Not sure why this is, any help would be greatly appreciated. Thanks for your time.

  • How do you know the size of a movie BEFORE you export it?

    I made a project in iMovie 09, then sent it over to iDVD. The DVD won't burn because of the following error: ======================================== Your project exceeds the maximum content duration. To burn this project, remove some content. Projec

  • Photo capacity of PSE 8 vs. PSE 10 and stability

    I currently have approx 35,000 jpg organized in PSE 8 in a single catalog.  I have very few small video clips, maybe less than 100 also included.  My windows pc runs win7 4gb of ram with an i5 processor.  I am starting to notice some slow down adding

  • Problems with Ñ and accents while editing flash template

    Hello Please, someone help! I have been trying to edit the text of a flash template and when i publish it, i cant see the Ñ and the accents i have been looking for a solution and i have found over the internet: system.useCodepage = true; But that doe