Launching applications via URL

I want to try and investifate whether tarantella easily supports the
launching of applications direcitly via an html page / url.
Are there any example instructions that give users examples on how this
can be done?

Dave,
One of the new features in SGD EE 4 is the ability to launch an app from
a URL. See
     http://www.tarantella.com/support/documentation/sgd/ee/4.0/help/en-us/base/gettingstarted/whats_new.html#urls
http://www.tarantella.com/support/documentation/sgd/ee/4.0/help/en-us/base/customizer/url_app_launching.html
Regards,
Dave Cory wrote:
I want to try and investifate whether tarantella easily supports the
launching of applications direcitly via an html page / url.
Are there any example instructions that give users examples on how this
can be done?

Similar Messages

  • Launch application via run menu rather than dos...possible?

    hi,
    we're trying to find a way to launch a application, such as MS Word, from our java app via the run menu in start menu, rather than through dos. currently our program reads the start menu and gets the lnk file paths, the problems is that it displays them as:
    C:\WIN98_SE\start menu\programs\Microsoft Word.lnk
    but dos needs them as:
    C:\WIN98_SE\startm~1\programs\Micros~3.lnk
    so to execute it from java we would need to write it as:
    Runtime.getRuntime().exec("start C:\\WIN98_SE\\startm~1\\programs\\MICROS~3.lnk");
    since we're doing this dynamically we can't be sure if the user will have office professional, home, or any other version, so this means that for some micros~3 might be micros~1, not sure which number will be attached at the end. but if we are able to launch it from the run command in the start menu then typing:
    C:\WIN98_SE\start menu\programs\Microsoft Word.lnk
    will work.
    Thanks.

    You should try this:
    Runtime.getRuntime().exec("command /C \"C:\\WIN98_SE\\start menu\\programs\\Microsoft Word.lnk\" "); with Win98
    orRuntime.getRuntime().exec("cmd /C \"C:\\WINNT\\Documents and Settings\\user-name\\Start Menu\\Programs\\Microsoft Word.lnk\" "); with Win2000 prof.
    /C - Carries out the command specified by string and then terminates
    I tested only the second one because I don't have access to a win98 system.
    Let me know if this solves your problem.
    Regards
    BG

  • Launch UWL ESS Workitem via url

    Hello,
    I am trying to launch a ESS Leave Approval UWL Work item via URL from an external application. Can anyone help me what is url to use... I am using UWL apis to get the details of the workitems but not able to create the exact url to launch the work item directly.
    Thanks and Regards
    Avijit

    Please elaborate more the requirement

  • Workspace not rendering after selecting "Launch Application"

    Hi,
    I have a 11.1.2.2 instance of Planning, Essbase, ODI etc. running on the cloud via Metavero. It's up and running, I think. When I click on Workspace URL and then select 'Launch Application', another window pops up and it looks like it wants to give me the login screen but it just stays gray and never gets to the login. I tried restarting some services but not sure which ones and which order is correct. Or is there other things I need to check?

    Sounds like browser issue, Which browser (and version) you are using?
    If its IE and apply recommended settings:
    Internet Explorer (IE7, IE8 and IE9) Recommended Settings for Oracle Hyperion Products [ID 820892.1]
    If its FireFox then:
    http://hyperionplanningandmore.blogspot.in/2013/05/blank-screen-after-login-into-firefox.html
    Cheers..
    Rahul S.

  • 'Unable to Launch Application Error' - Java Web Start Running Under MS IIS.

    I am attempting to render the following .jnlp in MS IE:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for LottoMadness Application -->
    <jnlp
       codebase="http://localhost/LottoMadness/"
       href="LottoMadness.jnlp">
       <information>
         <title>LottoMadness Application</title>
         <vendor>Rogers Cadenhead</vendor>
         <homepage href="http://localhost/LottoMadness/"/>
         <icon href="lottobigicon.gif"/>
       </information>
       <resources>
         <j2se version="1.5"/>
         <jar href="LottoMadness.jar"/>
       </resources>
       <application-desc main-class="LottoMadness"/>
    </jnlp>I've deployed the .jnlp, .gif, and .jar to MS IIS, running locally on my PC.
    When I attempt to render the .jnlp in IE I obtain an 'Application Error' window stating 'Unable to Launch Application'. Clicking details gives me:
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost/LottoMadness/LottoMadness.jnlp
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)I have configured MS IIS for Web Start, by setting the Extension/Content Type fields to .jnlp and application/x-java-jnlp-file.
    (The .jnlp is basically from 'Programming with Java in 24 Hours', as this is the book I am learning Java from.)

    AndrewThompson64 wrote:
    I am not used to seeing references to a local server that do not include a port number.
    E.G. http://localhost:8080/LottoMadness/
    I have deployed the following HTML (HelpMe.html) to the web server:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
         <title>Untitled</title>
    </head>
    <body>
    Help Me!
    </body>
    </html>When I attempt to render the URL in IE, I see the page just fine. The URL is use is:
    http://localhost/LottoMadness/HelpMe.htmlSo, I think my web server setup and usage is ok.
    >
    As an aside, what happens if (your MS IIS is running and) you click a direct link to..
    [http://localhost/LottoMadness/LottoMadness.jnlp|http://localhost/LottoMadness/LottoMadness.jnlp]
    When I click this link I get the error and exception I cited in my previous post.

  • Print BW report embedded via URL Iview

    Hi,
    We have a VC application which contains a BI report. In the VC we created a "Print" button which should print the entire contents of the VC Application. Unfortunately it seems this print is not compatible with the URL Iview since it ignores the content of the BI report.
    Is this normal ? Is there a workaround available in VC to print a BI Web application via the VC ?
    thanks

    Please let us know if there are any updates on this. I am also facing the same issue where I have a WAD report ( html link) in the VC model along with other reports in VC. The Print screen just prints the VC part and the WAD part comes as blank.
    Regards,
    Nidhi

  • How to launch a single URL in a locked windowed-kiosk mode?

    We need to launch a specific URL in Firefox in a windowed-kiosk mode.
    If this can be done via a command-line that would be great. The Company want to restrict the use of the browser to this one specific URL and only allow close controls on the opened app window.
    Is this possible?
    Any help much appreciated!

    See:
    *https://developer.mozilla.org/Command_Line_Options
    *FF Fullscreen: https://addons.mozilla.org/firefox/addon/FF_Fullscreen/
    See also:
    *http://mike.kaply.com/category/mozilla/
    *http://mike.kaply.com/2014/01/08/can-firefox-do-this/
    *CCK2 Wizard: https://addons.mozilla.org/firefox/addon/cck2wizard/

  • Call a ABAP Web-Dynpro-application via a BSP-Application

    We have a BSP-Framework, that call several applications among other things other BSP-Applications, ITS-Application and other systems. Now I want to integrate a ABAP Web Dynpro-Application.
    For the moment I can call the ABAP Web Dynpro-Application from our application.
    This application runs in the same session as the Framework (verify in transaction sm04).
    When I want to call another application in the Framework, the session will be killed (no more sessions in sm04). This happens also, when I want to call the ABAP Web Dynpro-Application a second time.
    I guess, that the ABAP-Framework thinks I want to go outside the system (for example www.google.de) and close the session. I found out, that this wouldn't happen, if the application were suspended. But I found no way to tell the application via a url-parameter to suspend.
    Can someone help me?

    Thx for the tip,
    but I can't firea suspend plug. Because I'm in BSP. I understand the docu so, that you have the option to call a other apllication like BSP from a ABAP Web Dynpro.
    I want to call the ABAP Web Dynpro form BSP like this way.
    1. Start BSP-Framework
    2. Call ABAP Web-Dynpro-Application from BSP
    3. Call another Application from BSP without automatically logout by unload ABAP Web Dynpro. (I have a chance to call the ABAP Web Dynpro again via url to suspend before I call the other app.)
    Regards Stefanie

  • Calling Web Dynpro application or URL from POWL

    Hi Friends,
    I need to call a Web Dynpro appl from a custom POWL. In my feeder class's method HANDLE_ACTION, i am not getting how to use e_portal_actions parameter for calling a URL of WD application. Pls help me out in this.
    Regards,
    Saud

    You can create a launchpad application through tran LPD_CUST and then in repsective method of POWL class you can launch your web dynpro application like this
    DATA ls_appl_param              TYPE APB_LPD_S_PARAMS.
      DATA lt_appl_param              TYPE APB_LPD_T_PARAMS.
      DATA lt_lpd_content             TYPE apb_lpd_t_content.
      DATA lr_lpd_content             TYPE REF TO apb_lpd_s_content.
      DATA lt_lpd_appl_params         TYPE apb_lpd_t_params.
      DATA lr_lpd_handle              TYPE REF TO cl_apb_launchpad_api.
      DATA lo_component     TYPE REF TO if_wd_component.
      DATA lr_provider      TYPE REF TO if_apb_lpd_provider.
      "Get launchpad handle
    lo_component = wd_comp_controller->wd_get_api( ).
    cl_apb_launchpad_api=>read_for_display( EXPORTING id_role = cl_oif_ui_assist=>sc_lpd_roles "Role Name
                                                       id_instance = cl_oif_ui_assist=>sc_lpd_instance " Instance Name for Launchpad
                                                       id_langu = sy-langu
                                                       ir_provider = lr_provider
                                                       ir_wd_component = lo_component
                                             RECEIVING er_launchpad = lr_lpd_handle ).
      CHECK lr_lpd_handle  IS BOUND.
      lt_lpd_content = lr_lpd_handle->get_content( ).
      READ TABLE lt_lpd_content REFERENCE INTO lr_lpd_content
                                WITH KEY link_text = cl_oif_ui_assist=>sc_lpd_link_text. "Link text for launchpad
          ls_appl_param-key = cl_oif_ui_assist=>wda_config_key.  "'SAP-WD-CONFIGID'. "app conf if any
          ls_appl_param-value = cl_oif_ui_assist=>CREATE_CONFIG_ID. "'MDG_OIF_CREATE_CONF'.
          APPEND ls_appl_param TO lt_appl_param.
          lt_lpd_appl_params = lr_lpd_content->application_parameter.
          "launch application
          lr_lpd_handle->launch_application(
            id_application_id         = lr_lpd_content->application_id
            it_application_parameters = lt_lpd_appl_params
            it_business_parameters =  lt_appl_param

  • Calling a web dynpro application via portal using SSO

    Hello Expert,
    i have a requirement where i need to call a web dnpro application via portal.
    But it is asking for user name and password.
    i want to call using single sign on.
    Can u please suggest a way.
    i did the coding like this:-
    CALL METHOD cl_wd_utilities=>construct_wd_url
    EXPORTING
    application_name = l_c_appl_name
    IMPORTING
    out_absolute_url = l_v_gv_url_string.
    l_v_icf_url = l_c_icf_url_val.                      "#EC SYNTCHAR
    CALL METHOD cl_icf_tree=>if_icf_tree~service_from_url
    EXPORTING
    url             = l_v_icf_url
    hostnumber      = l_c_0
    authority_check = space
    IMPORTING
    icfactive       = l_v_m_sso_active.
    IF l_v_m_sso_active = l_c_x .
    CREATE OBJECT o_viewer
    EXPORTING
    parent = o_empty_co.
    CALL METHOD o_viewer->enable_sapsso
    EXPORTING
    enabled = l_c_x
    EXCEPTIONS
    OTHERS  = 0.
    l_v_gv_url_c = l_v_gv_url_string .
    CONCATENATE l_v_gv_url_c l_c_url_string p0022-pernr INTO l_v_gv_url_c.
    CALL METHOD o_viewer->detach_url_in_browser
    EXPORTING
    url        = l_v_gv_url_c
    EXCEPTIONS
    cntl_error = 1
    OTHERS     = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
    RAISING error_occured.
    ENDIF.
    cl_gui_cfw=>flush( ).
    ENDIF.
    but it is not working
    thanks
    Mahesh

    Hi Mahesh,
    You need to setup a Single Sign On between SAP Portal and ECC system where yoy are doing the development.
    Ask basis team to setup the single sign on and usually this is the job done by Basis teams. Refer the below link to get some idea on SSO setup:
    http://scn.sap.com/community/enterprise-portal/blog/2013/12/15/sso-configuration-between-sap-portal-73-and-ecc-60-ehp-6
    Thanks
    Krishna

  • Auto Launch Application and perform some action

    Hello Friends,
    I am working on Autoback, want to launch application and perform some action to take backup.
    Can any one please update me what all the J2ME phone supports this kind of feature and basic needs to implement Autobackup, any sample code available please let me know
    Thanks,
    Kumar.M.R

    Something sketchy.
    I had the same message appear. It resized my window to the smallest possible size (not minimize!) and when I resized it larger, it had opened a new tab with that message. It was on "c510a1.minersaver1.com" which sounds like a related site. It tried to download "avmast_2004-4_mst5.exe"and I was going to try and refind this site on my Linux box, but forgot to save the exact URL (oops!).
    Running Firefox 4.0b11 on 64-bit Windows 7 Home Premium.
    EDIT: Found a LIVE link
    http://c510a1.minersaver1.com/defender/?44a=pccfjf&8d1ad=glslkkqpgl&eb45=gpqmpkkcmc&03f67=3

  • Launch application according to script/question result

    Hello
    I would like to install an application via ZENworks, but I need to ask the user if he wants to install it or not?
    Can I ask this to the user in a script and then launch another application (or the same) only if the user selected 'Yes' for example? or is possible to do it another way?
    Thanks

    Adelpicc,
    > I don't "need" it. But for the application object, with the pre-launch
    > script, there's a field for the scripting engine and one for the
    > extension. So I don't know what to put execpt cmd or wscript. Is there a
    > scripting engine to use your code (and specially the command "TERM")?
    >
    See the docs:
    "Script Engine Location The script engine determines the script commands
    and scripting language you need to use. If you do not define a script
    engine in the Script Engine Location field, Application Launcher uses the
    Novell ClientTM as the script engine (if the workstation has the Novell
    Client installed), which means that you can use most Novell Client login
    script commands."
    Ie, leave it blank and it will use the Client login script processor.
    - Anders Gustafsson (Sysop)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms

  • Launch Application empty...

    Hi,
    Running Arch Linux 64bit on Acer 8930G 2.27GHz, 4GB DDR2, 160GBSATA and Nvidia GeForce 9700M GT 512MB using KDE 4.8 desktop environment.
    When I clicked on a hyperlink via an email mesage the Launch Application popped up and it is empty.
    Is that a bug? How do I fix it?

    Clicked a hyperlink from what? What kind of hyperlink was it? HTTP, magnet (a la TPB)?
    PS: 37 views because "Launch Application empty..." sounds like dyslexia. Some of them could've been caused by you, like for example refreshing the page a few times.
    You shouldn't expect help. Not immediate help, anyway. We're all volunteers here. And Arch is a DIY kind of distribution, where users are encouraged to solve their own problems. It's why you see so many solved topics coming from the Arch forums. It implies a certain mindset.
    Last edited by DSpider (2012-07-15 07:41:00)

  • I have a problem in the distribution of an application via GPO.

    Hi all,
    I have a problem in the distribution of an application via GPO.
    Actually the problem is due to non-implementation of the changes of the MST transformation file.
    I have an installer in .MSI format, during installation the program requires the following parameters:
    - DatabaseInstance "SRVAPPXXXX"
    - DatabaseName "AAAAA_BBBBB"
    - DatabaseUser "dbuser"
     - DatabasePassword "password"
     - SharedComponentsPath "\\SRVAPPXXXX\PATH"
    Then through ORCA I prepared a .MST tranform file  that in the Property section corroborates the above parameters
    The installation is successful, but when the program is launched it faults as if the parameters supplied were empty.
    So I made a further step, I tried to run the installer from the command line:
    msiexec /qn /l*v c:\log.txt /i "\\SrvappXXXX\Share\Setup.msi" TRANSFORMS=\\SrvappXXXX\Share\Setup.mst
    and also:
    msiexec /qn /l*v c:\log.txt /i "\\SrvappXXXX\Share\Setup.msi" DatabaseInstance="SRVAPPXXXX"  DatabaseName="AAAAA_BBBBB" DatabaseUser="dbuser" DatabasePassword="password" SharedComponentsPath=\\SRVAPPXXXX\PATH
    In both case installations ends without any error.
    In the first case it does not work, in the second one it does
    Before relaunching the installation I have always previously totally  removed the program.
    Any suggestion is very welcome
    Ruggiero Lauria
    MCT-MCITP-MCSA-MCSE-MS SQL DBA

    That's the strange thing, in the log fiile everything seems to have worked fine.
    By the way it is a 18k lines file, however:
    MSI (s) (D8:BC) [18:21:17:034]: PROPERTY CHANGE: Modifying TRANSFORMS property. Its current value is '\\Srvappxxxx\path\Bravo.mst'. Its new value: '@Bravo.mst'
    Property(S): DatabaseUser = dbuser
    Property(S): DatabaseName =  AAAAA_BBBBB
    Property(S): DatabaseInstance = SRVAPPXXX
    Property(S): SharedComponentsPath = \\SRVAPPXXXX\PATH
    Ruggiero Lauria
    MCT-MCITP-MCSA-MCSE-MS SQL DBA

  • Can't receive variables from HTML to Flash in AS3 passed via URL (not Flashvars)

    hey all,
    can't seem to get AS3 to recognize variables passed via URL
    (not Flashvars). i can get vars passed with Flashvars in the
    javascript but I don't want to use that method. i'm simply
    extending the .swf call with .swf?var=123 in the embed and on the
    AS3 side i'm calling loaderInfo.parameters.var
    thought this would work but doesn't. what am i doing wrong?
    HTML:
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="1024" height="768" id="main" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="main.swf?var=123"
    /><param name="quality" value="best" /><param
    name="bgcolor" value="#ffffff" /> <embed
    src="main.swf?var=123" quality="best" bgcolor="#ffffff"
    width="1024" height="768" name="main" align="middle"
    allowScriptAccess="sameDomain" allowFullScreen="false"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    AS:
    t = new TextField();
    t.text = String(loaderInfo.parameters.var);
    thx in adv.
    michael

    appreciate you were going for brevity, but i think the
    answer's going to be hidden either in your complete html code or
    your complete AS code. without seeing this i can only keep
    guessing.
    that said, my latest guess is that you're not passing your
    variable within the AC_FL_RunContent function. there are two
    properties set in this function - src and movie, which contain your
    movie name, to which you can add any parameters you wish to pass.
    eg.
    'src', 'main?var=123',
    'movie', 'main?var=123',
    where main is the name of your swf and var the name of the
    parameter you wish to pass.
    if this function fails - if javascript isn't available in the
    browser, for example, or AC_RunActiveContent.js is missing, then
    the <object> tag you described is used. (this object tag is
    sitting inside a <noscript> tag.)

Maybe you are looking for

  • "Learn" no longer working with Euphonix?

    I've been messing around some more with Euphonix hardware. It seems that since there was 'native support' with Eucontrol 2.5.5 and with LP 9.1.1 there is no ability to assign values to the controls. This means that Command-L no longer appears to work

  • Since upgrading to OS7 my iphone 4 no longer connects to my bluetooth...pls help.

    Hello, Since I upgraded to OS 7.0.3, the bluetooth earpiece I use will no longer connect.  Is there a fix for this?  I have tried turning it off, removing it, reinstalling the bluetooth, nothing works.  Any ideas?

  • How to create unique objects in class and store

    Hi, I have a class that opens a text file and reads in the lines. each line holds an ip address. i need to create x amount of objects, and each object is assigned a unique ip address from the file. and here i am stuck. the class reads in the file, th

  • CRM / BW SURVEY

    Dear friends, This question is related to CRM survey and i have created a new survey questionire in CRM_SURVEY_SUITE , CALL BACK TO PAI --> CRM_SVY_S_PAI and i have checked the evolution in Business information warehouse. what is the purpose of that

  • Fail to install Oracle9i on Solaris

    Hi, I am a green hand for Solaris. When I tried to install oracle9i on Solaris, it says 'no enough disk space'. However, the hard disk of that machine is 72G. Can anybody tell me how to enlarge the available disk for Oracle9i installer? Thank you ver