Web / Desktop GUI API

I am researching the possibility of and API that allows both dektop (Swing) and web (JSP) front-ends to be built from a single piece of source code. Does anyone know any projects that are currently looking at this?

Hi bachan;
Please try this search i belive you will find many think in it
Also check
Publicly Callable Business Process APIs in Release 11i & 12 [ID 121964.1]
Regard
Helios

Similar Messages

  • Rich Web Based GUIs

    Hi.
    I'm looking for some libraries available for creating rich web based gui's in Java. Things like JSuite seem to be the way to go rather than depending on web start.
    What I'd like is that when a user visits the site, they would see something resembling a desktop application, rather than the usual HTML forms.
    Has anyone here seen or used anything like this? I'd appreciate it if you could share some of your thoughts on how these libraries worked.
    Thanks
    James

    I've been trolling (the good kind of trolling) the forums lateley to see if any Java programmers have tried MacroMedia Flex[url].
    Here are some link to threads I've posted, with little success:
    http://forum.java.sun.com/thread.jsp?forum=427&thread=518133
    http://forum.java.sun.com/thread.jsp?forum=31&thread=519410
    http://forum.java.sun.com/thread.jsp?forum=45&thread=520247
    Now Flex won't give you a Java GUI inside the web browser. (They would claim what they give you is better.)
    What you will get is Java on the server-side and rich media on the client-side.

  • How to open the link in new firefox window for web desktop based application? Or how to open the mail/website/rss link in new firefox window

    I am using the firefox 3.6. My problem is that I am using the web desktop and few web desktop based application directly opens link. If I click on rss link than it opens in same window, so no longer access to web desktop. I want to open any kind of link in new window instead of same window. I have tired to change the value of browser.link.open_newwindow, browser.link.open_newwindow.restriction but doesn't work. Also gone through the https://developer.mozilla.org/en/window.open but not sure where to do this in web desktop based application or firefox where we connect the web desktop?
    Is there any way to open the link every time in new firefox window?

    Hi Joseph,
    the HTMLB link object misses the support for onClientClick through the tag lib, see hbj:link without onClientClick ? and OnClientClick Event for Link HTMLB Component for similiar problems and workarounds.
    With this workaround, you can call for example an AbstractPortalComponent, implement doOnNodeReady (with an empty doContent method) and return the PDF, settings the content type on the http before etc.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • How to create Custom WEB ADI using API Only for both Dowload/Upload process

    I am able to create custom WEB ADI using API for upload process. I have written the following code to create custom WEB ADI using API for upload process.
    DECLARE
    v_application_id NUMBER:= 20003;
    v_object_code VARCHAR2(255):='WEBADI_API_DEM_17';
    v_int_user_name VARCHAR2(255):='WEBADI_API_DEM_17';
    v_language VARCHAR2(255):='US';
    v_source_lang VARCHAR2(255):='US';
    v_user_id NUMBER :=1345;
    v_integrator_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTG';
    v_param_list_code VARCHAR2(255);
    --v_interface_code  VARCHAR2(255);
    v_interface_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTF';
    p_layout_code VARCHAR2(255):='WEBADI_API_DEM_17_LAYOUT';
    V_MAPPING_CODE VARCHAR2(255);
    BEGIN
    BNE_INTEGRATOR_UTILS.CREATE_INTEGRATOR(P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_USER_NAME =>v_int_user_name,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_INTEGRATOR_CODE =>v_integrator_code);
    BNE_INTEGRATOR_UTILS.CREATE_INTERFACE_FOR_API (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_API_PACKAGE_NAME =>'XXDH_PRICE_LIST_POC_PKG',
    P_API_PROCEDURE_NAME =>'CREATE_PRICE_LIST',
    P_INTERFACE_USER_NAME =>'WEBADI_API_DEM_17',
    P_PARAM_LIST_NAME =>'WEBADI_API_DEM_17',
    P_API_TYPE =>'PROCEDURE',
    P_API_RETURN_TYPE =>NULL,
    P_UPLOAD_TYPE =>2,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANG =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_PARAM_LIST_CODE =>v_param_list_code,
    P_INTERFACE_CODE =>v_interface_code);
    BNE_INTEGRATOR_UTILS.CREATE_DEFAULT_LAYOUT
    (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_INTERFACE_CODE =>v_interface_code,
    P_USER_ID =>v_user_id,
    P_FORCE =>FALSE,
    P_ALL_COLUMNS =>TRUE,
    P_LAYOUT_CODE =>p_layout_code);
    BNE_CONTENT_UTILS.CREATE_CONTENT_COLS_FROM_VIEW (P_APPLICATION_ID =>v_application_id,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_VIEW_NAME =>'XXDH_PRICE_LIST_POC_V',
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id);
    BNE_CONTENT_UTILS.CREATE_CONTENT_TO_API_MAP (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_INTERFACE_CODE =>v_interface_code,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_MAPPING_CODE =>V_MAPPING_CODE);
    END;
    I need to know what are API we can use to create download+upload ADI? anyone has already prepared script....please share it it me. My email id - [email protected]
    Thanks

    Use FNDLOAD, it's the only way.
    There are 2 seperate scripts, 1 for the Integrator and 1 for Layout.
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bneintegrator.lct <your name>.ldt BNE_INTEGRATORS INTEGRATOR_ASN="XXX" INTEGRATOR_CODE="<your code>"
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnelay.lct <your name>.ldt BNE_LAYOUTS LAYOUT_ASN="XXX" LAYOUT_CODE="<your code>"
    Cheers
    Jeroen

  • Adding a custom button in agile web client GUI.

    Hi,
    Is it possible to add a custom button in agile web client GUI?. Since i am totally new in the agile world, please provide some guidelines.
    thanks,
    Uday

    Yes, there are ways to add buttons to the user interface. The solution depends on your use case. If you are wanting to add a button in the same area that you see other action buttons, like the Save or Edit buttons, then you can do by following the instructions in the Navigation Extensibility Guide. You can find this document in the Extensibility Pack documentation online. All the online documentation can be found at http://www.oracle.com/technetwork/documentation/agile-085940.html#plmprocess - select the Extensibility Pack and you'll find the Navigation Guide in there.

  • Securing DSP calls via Web Services Mediator API

    I have been implementing a client of DSP 3.0 services using the static Web Services Mediator API. I am successfully calling these through the AL Service Bus, where I have deployed the WSDL generated from the DSP. We are calling this from a rich client (i.e. the client is not running in any container). My company has chosen to use SAML-based security on all web services deployed in the service bus.
    I know how to use general-purpose web service clients to pass SAML tokens to the web service. My question is, how do I do this when using the Web Services Mediator API. I have noticed the XMLHelper class and the RequestConfig class, but I have not seen much in the way of examples of using them.
    Related question:
    Is it possible to insert additional content into the SOAPHeader, or configure attributes on the Port?
    Thanks,
    Jeff
    Edited by jhoffmanme at 02/13/2008 8:06 AM

    I'm checking into the SAML question.
    Regarding the soap header - whatever is in the contract defined in the WSDL.

  • High-level GUI api

    hi all,
    I am developing a game in which i was supposed have the Canvas class in which after the game waas over the Usr was supposed to enter the name and some details about him.
    I tried by using the same Canvas class for that,it has given the OutofMemory Exception
    I rethought about the implementation and i am in total confusion what to do for the next step.
    I tried to avoid the outof memory Exception,like by increasing the heap size even then the problem continues...
    Like a oasis i found an document about the custom item,the concept is good like in that they have given that with the help of high-level GUI api we can have the application control(we can use Canvas in from)
    is that is possible to implement,if so, can anybody show me the way for that
    thanks for reading such a big query,Thanks in advance
    lakhsman

    hi ,
    the document name is "Games on the Java Platform for Mobile Information" it was an pdf file in that they have given about the High-level GUI API.
    i got that file from the www.sun.com/software site
    thanks in advance
    lakshman

  • Firmware update with web desktop manager

    Hello,
    I want to update my devices via Web Desktop Manager. I have configured the BES like discribed in the appropriate document and I have configured a share and a software bundle.
    After login in the web desktop manager, I have no possibility to update the firmware. The register card "Device software" is missing.
    I don`t know how to fade in the missing register!
    Thanks and greetings

    hello mchavez,
    youwill find more answers if you post your question on the appropriate section of the forum.
    go to the homepage of this forum and look for the "Blackberry Enterprise Solution" board.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Can't install Microsoft Exchange Web Services Managed API 2.0 - message says it is already installed but it is not.

    I tried to install the Microsoft Exchange Web Services Managed API 2.0 but I got a message saying it was already installed and that I should un-install it.  However it does not appear in the control panel un-install a program list.  I am using
    VS2013 on windows 8.  What can I do to get it to work?
    Mike VE

    Hello,
    Thank you for your sharing.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Desktop GUI

    Hello,
    Looking for a strong light weight Desktop GUI that will work with Solaris 10, and be a good candidate for VPN Technology. The Java based one that is coming with Solaris 10 has a high overhead and bogs down. Sun's CDE is not going to be supported in future releases (to my knowledge). Any recommendations would be appreciated. Possibly one that is built with VPN in mind.
    Thanks

    What about plain old x? If future versions of Solaris are to discontinue support for CDE the standard desktop environment ( GNOME ) will still run on top of X11.
    http://www.freedesktop.org/wiki/

  • How to develop a web browser using API javatv?

    How to develop a web browser using API javatv?
    I'm tryin' to build a web browser using the API javaTv and
    I want to know if that is possible and if somebody already made this.
    This web browser will run a page developed in jsp.
    Thanks.

    You don't need JavaTV to write a web browser.
    Whichever Java platform you're using with JavaTV should provide enough.

  • How to start graphical desktop GUI from solaris console login?

    I installed successfully Solaris 11 Express.
    However after Restart only the solaris console login prompt appears.
    How can I manually start the graphical desktop GUI from console login?
    How can I start always automatically the graphical desktop GUI from console login?
    Peter

    When you install Solaris 11 Express from the LiveCD on a system which supports the graphical login screen, it usually comes up automatically. So first, we need to know why this didin't happen. First, did you use Automated Install? If so, you may not have all of the software you need. If that is the case, you may need to do a "pkg install slim_install" as root to get the software you need. If you have all of the software you need, check "svcs -xv" to make sure that there were no problems in the system start up. If problems are listed, you should resolve those issues and see if that allows the graphic install to come up. If "svcs -xv" is clean, you should check the "gdm" service. If it is disabled, you need to enable it. I'm sure there are other potential problems but this should get you started.

  • Web desktop manager

    hi all,
    i'm sorry if this is the wrong forum to write in. i was wondering if it's possible to install bb web desktop on without BES, on windows 7? i would like to have that web manager, but i'm getting "setup.exe encountered an error and it need to be closed" error .
    any advice would be appreciated.
    br

    Can anyone provide me the link of web desktop manager?
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Experience with Web Desktop Manager??

    I have just installed Web Desktop Manager v1.0.1 on my BES server (v.4.1.4.15).  The installation went fine, but I am not able to login to the website.  I get "The page cannot be found".  Anybody have suggestions on what I did wrong and what I need to do to get this working? Thanks!

    hello mchavez,
    youwill find more answers if you post your question on the appropriate section of the forum.
    go to the homepage of this forum and look for the "Blackberry Enterprise Solution" board.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • GUI APIs and Input Events

    I'm working on some of my own APIs for game development in Java as both a learning project and hopefully something I can carry through to an actual product. One of the APIs is something like an Input Registry. It is designed to keep track of key/mouse events and notify registered listeners when it's registry changes. I've noticed that different GUI APIs written for Java sort of handle their input events differently. I was wondering if there was a non-GUI API specific way to capture what key/mouse events are happening. I'd like to keep this lower level of the API as separate from specific GUI APIs as possible, so that I can use AWT, SWT, Swing, or whatever else is out there all on top of the same lower level API.
    Is this possible?

    I'm working on some of my own APIs for game development in Java as both a learning project and hopefully something I can carry through to an actual product. One of the APIs is something like an Input Registry. It is designed to keep track of key/mouse events and notify registered listeners when it's registry changes. I've noticed that different GUI APIs written for Java sort of handle their input events differently. I was wondering if there was a non-GUI API specific way to capture what key/mouse events are happening. I'd like to keep this lower level of the API as separate from specific GUI APIs as possible, so that I can use AWT, SWT, Swing, or whatever else is out there all on top of the same lower level API.
    Is this possible?

Maybe you are looking for

  • DOWN PAYMENT THROUGH APP

    Hi Is it possible to pay down payment through APP, because when I am trying  I am getting error in edit proposal, Please provide me steps I will assign points Thanks Radha

  • Zen touch problem

    Hello everyone. I have a 20gig zen touch which was working fine . I have the latest drivers / firmware installed . But when i connect it to the computer windows says found new hardware creative zen , then opens the install new hardware part , even al

  • Graphics In Reports

    I am new to printing reports using LV. As I see it, there are two ways to handle printing: 1) print front panel - this is good because I can print plots, text, etc. but LV seems to throw in extra header stuff at the top that I can't turn off. 2) Prin

  • Report suggestion

    Hi guys, Is there any type of report type where I can see: Material Center Batch Date of Manufacture Shelf Life Exp. Date I tried with the COOISPI, but the dates can´t be selected. Regards,

  • IOS 7 Notification Sync

    Is this a feature that needs to be turned on? If so, can anyone help? One of the most annoying features of iOS is having to get rid of notifications on iPad and iPhone seperately, so I was looking forward to this. Still in iOS7, if I get an email and