Af:commandLink not launching popup window

Hi,
I have an af:commandLink inside page1.jspx, when clicked is launching a popup window and inside it page2.jspx is displayed.
The code is as follows:
<af:commandLink text="Link Text" id="cl1" action="openPopup" windowHeight="600" windowWidth="700" useWindow="true" partialSubmit="true" returnListener="#{viewScope.backingBean.returnFromPopup}" />
"openPopup" action is set in adfc-config.xml "From Activity ID" = "page1.jspx" and "To Activity ID" = "page2.jspx".
The application containing the two pages can be accessed via URL1 and URL2 (same application just the URLs are different - URL1 is not using SSO, we use it for quick access, URL2 is using SSO to grant acces to the app).
The issue with this simple use-case is that using URL1 (no SSO), everything works ok, but using URL2 (with SSO) the commandLink sometimes loads the popup window, but the majority of time it doesn't, even if the browser's popup blocker is disabled - could not find a pattern or a way to reproduce (tested on Firefox and Chrome, same results). I noticed on the FireBug console on URL2 that a POST call to server is issued when clicking the commandLink, but nothing happens, popup window is not showing up. Same call is issued on URL1, and the popup window is launched and everything works as expected.
I'm using jDev 11.1.2.2.0 and Firefox 10.0.7, Chrome 26.0.1410.64 m.
Any clues on why is this happening?
Thanks a lot in advance,
Iulian

Hi,
have you tried if there is a difference in the behavior if the session previously has been SSO authenticated or not?
Frank

Similar Messages

  • ITunes 10.5.2 not launching on Windows 7

    iTunes 10.5.2 will not launch on Windows 7 Professional.  I have tried disabling Bonjour, and that did not help.  Any suggestions?

    I got it to work now ...
    -Unistall the current iTunes on your computer.
    - go to http://support.apple.com/kb/DL1427
    -Go all the way down the page and download the iTunes through the given link
    ----------Download for iTunes 10.4.1 for Windows  (64 - bit) here:  iTunes 10.4.1 for Windows 64-bit.
    -Once downloaded if a message window pops up with a message "the file itunes library.itl cannot be read"
    Just go to My documents-> Music folder -> iTunes folder -> delete library.itl if existing or add it if it doesn't exist.
    it worked for me so I believe that it should
    Good luck

  • ITUNES DOES NOT LAUNCH IN WINDOWS SEVEN 32BIT

    I TUNES NOT LAUNCHING IN WINDOWS 7 32 BIT

    Restart Computer.
    Refer steps here to delete SC file(s):
    Win7/Vista http://support.apple.com/kb/TS2363
    WinXP http://support.apple.com/kb/TS1776
    Then proceed to repair your QuickTime. START > CONTROL PANEL
    WinXP - Add n Remove Programs
    Win7/Vista - Programs n Features
    highlight QUICKTIME and click CHANGE then REPAIR

  • TS1717 I tunes 10.7 will not launch on windows 7

    I tunes 10.7 will not launch in windows 7

    I am having the same problem. Like me, so many posts describe days of work with little to show for it. I have read numerous "solutions" but none work or work fully.
    Here we have two of the most influential computer companies in the world: APPLE and MICROSOFT, and hundreds of posts with people asking for help in connecting their Iphone to Windows7, or in getting Itunes under devices, to show their connected IPhone when it does not do so.
    You would think that Apple and Windows would have solved this problem and developed wizards to help their customers, but if they have done so, none of the many posts I have read make any mention of it.
    Like many who have written on their attempts to solve the problem I have installed and reinstalled Itunes, disabled USB devices, and so one.
    I am as interested in understanding what the technical problem(s) are as I am in solving my problem.
    Windows has managed to recognize literally thousands of devices yet when I connect my IPHONE 4s (presumably one of millions sold) it is silent. That is as amazing to me as it is frustrating.
    If anyone ever gets this figured out a gold star to you, and please contact [email protected]
    Thankyou,
    Professor Hal

  • Itunes will not launch on Windows Vista no error code

    Itunes will not launch on my computer. I have windows vista. I have uninstalled and downloaded itunes repeatedly. I have also tried all of the troubleshooting tips available on the apple support site. But none of them worked. Quicktimes works fine. It is just itunes. I even opened up task manager to check the processes and itunes appears for about a second in the processes tab then just disappears. I have no idea what to do i have an iphone 3gs and havent updated it for a few months now and cannot sync my iphone without itunes. I Have kaspersky internet protection but i doubt thats the problem because itunes was working fine until i updated it.PLEASE HELPPPPPP!

    Presumably the configuration fails to complete, so every time you start iTunes it has another go.
    As iTunes works normally when you plug in your iPod, you should be able to work round this by creating a new iTunes short cut.
    Go to Program Files\iTunes and right click on iTunes.exe. Select: Send to>>Desktop(create shortcut). If you are lucky you will be able to open iTunes using this short cut.
    However this work around does not fix the underlying problem that WIndows fails to complete configuring iTunes.

  • Safari on Lion will not allow popup windows to return data to the website

    I have a web-based application that uses pop-up windows to capture certain user changes. One example is the user changing the default number of hours to a new specific number. The problem is that with Safari on Lion, the data does not get returned to the website.
    I have tested this function with Windows and IE, Firefox, Chrome, and Safari with no problem. I have tested it with my Macbook system running Snow Leopard and Safari, with no problem. I have tested it with my Macbook and Firefox with no problem. I've used the Firefox Firebug debugging tool with no errors found.
    Debugging has proven that the data is being captured by the popup, and it is assigned to the returnValue. However, the website never receives that data - the object is empty. This error is happening with every popup I've tried in the system covering a wide range of uses.
    The only thing I have found that fixes/masks the problem is turning on the Developer menu in Safari, and then starting Javascript debugging. In that mode the problem does not occur, but I can't find any errors to fix.
    It seems as if there is some change in Lion that affects the security of popup windows and returned data, but an internet search turns up no similar complaints. I have been able to reproduce the error on 3 different Macs running Lion.
    I have verified that pop-up windows are not blocked, and java and javascript are enabled. I've also compared the settings on my system with the failing systems and find no Safari settings that make any difference. I've tried all the simple things like system reboots, safari resets, and cookie cleaning.
    I would appreciate any ideas or information that might help. I am an experienced developer but relatively new to Mac's.
    Here is the code that calls the popup and waits for the returned data :
    if (window.showModalDialog)
    retVal = window.showModalDialog(templink, "name", "dialogWidth:275px;dialogHeight:350px");
    else
    retVal = window.open(templink, "name", "height=350, width=275,toolbar=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no, modal=yes");
    if (retVal == 'cancel')
    return;
    else {
    frmnewhrs.lid.value = tempid;
    frmnewhrs.newhrs.value = retVal;
    frmnewhrs.submit(); }
    This is the code in the popup that captures and sends the new data :
    function preSaveCheck() {
    var tempstr = document.getElementById("newhrs").value;
    if (tempstr.length > 0) {
    window.returnValue = tempstr;
    window.close();}
    Thanks, Dave

    Anti virus software installed on the Macs?
    Using a router with a Firewall?

  • Indesign CS4 will not launch in Windows Vista

    Indesign CS4 will not launch but all other CS4 programs will in Windows Vista, has been worked perfectly up until mid february, I have spent two weeks dealing with Adobe support, and finally I ran “Windows Installer Clean Up” and restarted as requested on phone call to adobe today, then ran “WinCS4Cleanupscript” which inform me that it was clean (or words to that effect) and restarted. Did new install of CS4, at registration I noticed that the Reg Form was pre filled and with my preferences which was a bit strange. After all that Indesign still does not launch but is running. Please can anyone help.

    This is the earlier thread http://forums.adobe.com/message/2621367#2621367
    I think the onus is on Rapport to sort its software to prevent it interfering with other applications, and there is a post in that thread that indicates that Rapport is both aware of the problem and is working to overcome it.
    I would hope that Adobe itself would have picked up this problem by at least monitoring this forum, but other than adding it to the knowledgebase for its technical support, which I don't expect is an overnight thing to do, I can't see what else it would be expected to do.
    Perhaps if anyone from Adobe is monitoring this problem they could chime in here and let us know what the position is. I strongly suspect that Trusteer may have been the reason I couldn't get InDesign to run under Windows 7, and so I rolled the whole shooting match back to XP. I am planning to reinstall W7 with the knowledge that I may have to toggle Trusteer on and off to run InDesign, but it would be helpful to have some assurance from either party that a fix is on its way.
    In the previous thread the Rapport response implied there was reference to the problem on its FAQ page. If there is I can't find it.
    k

  • Not closing popup window with firing Exitplug

    Hi Friends,
    Could you please help me in resolving below webdynpro issue.
    With a button (SAVE) click on 1st webdynpro application, Iu2019m calling a confirmation popup window using CREATE_POPUP_TO_CONFIRM method ("Data has been saved" is the message in the popup window). Then with the OK button on confirmation popup window, Iu2019m calling the EXIT plug to go to another webdynpro application
    Issue is: If I execute this webdynpro application in Enterprise Portal then the confirmation popup window is not getting closed even after reaching to the 2nd webdynpro.
    But If I execute direct webdynpro URL, confirmation pop is getting closed and there is no issue.
    CODE:
    Code for SAVE button action: Here Im calling the confirmation popup window.
        DATA: lt_text TYPE string_table.
        DATA: mr_popup_window TYPE REF TO if_wd_window.
    pop a confirmation window for display purpose
        DATA: l_window_manager TYPE REF TO if_wd_window_manager,
              l_cmp_api        TYPE REF TO if_wd_component,
        l_window         TYPE REF TO if_wd_window.
        l_cmp_api        = wd_comp_controller->wd_get_api( ).
        l_window_manager = l_cmp_api->get_window_manager( ).
        APPEND 'Data has been saved' TO lt_text.
        CALL METHOD l_window_manager->create_popup_to_confirm
          EXPORTING
            text           = lt_text
            button_kind    = if_wd_window=>co_buttons_ok
            default_button = if_wd_window=>co_button_ok
          RECEIVING
            result         = mr_popup_window.
    associated the action handling methods with the window
        DATA: view_controller TYPE REF TO if_wd_view_controller.
        view_controller = wd_this->wd_get_api( ).
        mr_popup_window->set_remove_on_close( abap_true ).    CALL METHOD mr_popup_window->subscribe_to_button_event
          EXPORTING
            button      = if_wd_window=>co_button_ok
            action_name = 'ON_SUCCESS_OK'
            action_view = view_controller.
        mr_popup_window->open( ).
    Code for OK button action of POPUP window: Here Im calling the EXIT plug.
        DATA: lr_ref TYPE REF TO ig_yics_userdefault,
              lv_url TYPE string.
        CALL METHOD cl_wd_utilities=>construct_wd_url
          EXPORTING
            application_name = 'YICS_HOMEPAGE'
          IMPORTING
            out_absolute_url = lv_url.
        lr_ref = wd_this->get_yics_userdefault_ctr( ).
        lr_ref->fire_go_exit_plg( url = lv_url ).
    Regards,
    Vijay.

    >Exit plugs do not work in a portal environment.
    This is a good point that I feel silly for not remembering...
    You can check if your application is running in the portal using the IF_WD_APPLICATION->GET_CLIENT_ENVIRONMENT method
      lo_api_componentcontroller = wd_this->wd_get_api( ).
      lo_api_application = lo_api_componentcontroller->get_application( ).
      l_client_environment = lo_ap_application->get_client_environment( ).
    if it is - then you can use the IF_WD_PORTAL_INTEGRATION interface
    lo_portal_integration = lo_api_componentcontroller->get_portal_manager( ).
    and the you can use the IF_WD_PORTAL_INTEGRATION methods to navigate eg - NAVIGATE_ABSOLUTE
    call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
    If you're navigating in the portal you should probably have iViews set up for the apps you are calling, but it is possible to create a pass-through iView which will redirect to a URL passed as a parameter.
    [Setting the URL at Runtime - in URL iVIew|http://help.sap.com/saphelp_nw04/helpdata/en/45/85087d755d1f88e10000000a1553f6/frameset.htm]
      data lo_api_component  type ref to if_wd_component.
      data lo_portal_manager type ref to if_wd_portal_integration.
      data lt_params type wdy_key_value_list.
      data ls_param type wdy_key_value.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      ls_param-key = 'forcedURL'.
      ls_param-value = 'http://www.google.com'.
      append ls_param to lt_params.
      call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
          use_sap_launcher    = abap_false
          launcher_parameters = lt_params.
    Hope this helps
    Chris
    Chris

  • Dreamweaver 8 will not launch with Windows 8.1

    I cannot get Dreamweaver 8 to launch with Windows 8.1  I have searched thru foums and attempted multiple deletes and reloads and restarts etc.  I have attempted Admin run without sucess.  It is my gut feeing that Adobe want s me to buy a new version.
    Any suggestions
    Thanks
    David

    Hi David.toto,
    The versions supported by Adobe are listed at Adobe - Support Plans : Policies : Supported Product Versions.
    Dreamweaver 8 was released many years back and both the software and the Windows OS have come a long way since then. While it is possible that there is a workaround solution to make DW 8 run on your computer, Adobe has not tested DW 8 to run on this OS. It is not the answer you were hoping for, I know, but that's the best answer I have for you. A better answer can come only from a user that is running DW 8 on WIndows 8.1.
    Thanks,
    Preran

  • HT1926 I downloaded the latest version of iTunes; however, it now will not launch, citing Windows error 127, any suggestions?

    I downloaded the latest version of iTunes, now it will not launch.  I get a Windows Error 127 message.  Any suggestions?

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (Although the procedure is for Vista and 7 and you've got XP, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a

  • Photoshop will not launch. Window indicates need JAVA SE6. Already have it, but re-installed. Photoshop will still not launch. Help! MacOS 10.10.1

    Since installing Mac OS 10.10.1 photoshop will not run, it will not launch. A window indicates that it needs JAVA SE6 to run. JAVA SE6 is installed. I have re-installed and restarted but photoshop will not run and I get the same message window that I need to install JAVA SE6. How do I make this work?

    Have you added any Photoshop Add-on that uses an external JavaScript.  Photoshop itself has is own ScriptingSupport Plug-in and does not use an external java.  Also Java SE6 is old and has security issues you should update to version SE8
    Note the plug-in is system info
    Adobe Photoshop Version: 2014.2.1 20141014.r.257 2014/10/14:23:59:59 CL 987299  x64
    Required plug-ins:
       3D Studio 15.2.1 (2014.2.1 x001 x003)
       Accented Edges 15.2.1
       Adaptive Wide Angle 15.2.1
       Angled Strokes 15.2.1
       Average 15.2.1 (2014.2.1 x001 x003)
       Bas Relief 15.2.1
       BMP 15.2.1
       Camera Raw 8.7
       Camera Raw Filter 8.7
       Chalk & Charcoal 15.2.1
       Charcoal 15.2.1
       Chrome 15.2.1
       Cineon 15.2.1 (2014.2.1 x001 x003)
       Clouds 15.2.1 (2014.2.1 x001 x003)
       Collada 15.2.1 (2014.2.1 x001 x003)
       Color Halftone 15.2.1
       Colored Pencil 15.2.1
       CompuServe GIF 15.2.1
       Conté Crayon 15.2.1
       Craquelure 15.2.1
       Crop and Straighten Photos 15.2.1 (2014.2.1 x001 x003)
       Crop and Straighten Photos Filter 15.2.1
       Crosshatch 15.2.1
       Crystallize 15.2.1
       Cutout 15.2.1
       Dark Strokes 15.2.1
       De-Interlace 15.2.1
       Dicom 15.2.1
       Difference Clouds 15.2.1 (2014.2.1 x001 x003)
       Diffuse Glow 15.2.1
       Displace 15.2.1
       Dry Brush 15.2.1
       Eazel Acquire 15.2.1 (2014.2.1 x001 x003)
       Embed Watermark 4.0
       Entropy 15.2.1 (2014.2.1 x001 x003)
       Export Color Lookup Tables NO VERSION
       Extrude 15.2.1
       FastCore Routines 15.2.1 (2014.2.1 x001 x003)
       Fibers 15.2.1
       Film Grain 15.2.1
       Filter Gallery 15.2.1
       Flash 3D 15.2.1 (2014.2.1 x001 x003)
       Fresco 15.2.1
       Glass 15.2.1
       Glowing Edges 15.2.1
       Google Earth 4 15.2.1 (2014.2.1 x001 x003)
       Grain 15.2.1
       Graphic Pen 15.2.1
       Halftone Pattern 15.2.1
       HDRMergeUI 15.2.1
       HSB/HSL 15.2.1
       IFF Format 15.2.1
       IGES 15.2.1 (2014.2.1 x001 x003)
       Ink Outlines 15.2.1
       JPEG 2000 15.2.1
       Kurtosis 15.2.1 (2014.2.1 x001 x003)
       Lens Blur 15.2.1
       Lens Correction 15.2.1
       Lens Flare 15.2.1
       Liquify 15.2.1
       Matlab Operation 15.2.1 (2014.2.1 x001 x003)
       Maximum 15.2.1 (2014.2.1 x001 x003)
       Mean 15.2.1 (2014.2.1 x001 x003)
       Measurement Core 15.2.1 (2014.2.1 x001 x003)
       Median 15.2.1 (2014.2.1 x001 x003)
       Mezzotint 15.2.1
       Minimum 15.2.1 (2014.2.1 x001 x003)
       MMXCore Routines 15.2.1 (2014.2.1 x001 x003)
       Mosaic Tiles 15.2.1
       Multiprocessor Support 15.2.1 (2014.2.1 x001 x003)
       Neon Glow 15.2.1
       Note Paper 15.2.1
       NTSC Colors 15.2.1 (2014.2.1 x001 x003)
       Ocean Ripple 15.2.1
       OpenEXR 15.2.1
       Paint Daubs 15.2.1
       Palette Knife 15.2.1
       Patchwork 15.2.1
       Paths to Illustrator 15.2.1
       PCX 15.2.1 (2014.2.1 x001 x003)
       Photocopy 15.2.1
       Photoshop 3D Engine 15.2.1 (2014.2.1 x001 x003)
       Photoshop Touch 14.0
       Picture Package Filter 15.2.1 (2014.2.1 x001 x003)
       Pinch 15.2.1
       Pixar 15.2.1 (2014.2.1 x001 x003)
       Plaster 15.2.1
       Plastic Wrap 15.2.1
       PLY 15.2.1 (2014.2.1 x001 x003)
       PNG 15.2.1
       Pointillize 15.2.1
       Polar Coordinates 15.2.1
       Portable Bit Map 15.2.1 (2014.2.1 x001 x003)
       Poster Edges 15.2.1
       PRC 15.2.1 (2014.2.1 x001 x003)
       Radial Blur 15.2.1
       Radiance 15.2.1 (2014.2.1 x001 x003)
       Range 15.2.1 (2014.2.1 x001 x003)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.2.1
       Ripple 15.2.1
       Rough Pastels 15.2.1
       Save for Web 15.2.1
       ScriptingSupport 15.2.1  <------------------------------------------------------------------ Photoshop Scripting Support Plug-in
       Shake Reduction 15.2.1
       Shear 15.2.1
       Skewness 15.2.1 (2014.2.1 x001 x003)
       Smart Blur 15.2.1
       Smudge Stick 15.2.1
       Solarize 15.2.1 (2014.2.1 x001 x003)
       Spatter 15.2.1
       Spherize 15.2.1
       Sponge 15.2.1
       Sprayed Strokes 15.2.1
       Stained Glass 15.2.1
       Stamp 15.2.1
       Standard Deviation 15.2.1 (2014.2.1 x001 x003)
       STL 15.2.1 (2014.2.1 x001 x003)
       Sumi-e 15.2.1
       Summation 15.2.1 (2014.2.1 x001 x003)
       Targa 15.2.1
       Texturizer 15.2.1
       Tiles 15.2.1
       Torn Edges 15.2.1
       Twirl 15.2.1
       U3D 15.2.1 (2014.2.1 x001 x003)
       Underpainting 15.2.1
       Vanishing Point 15.2.1
       Variance 15.2.1 (2014.2.1 x001 x003)
       Virtual Reality Modeling Language | VRML 15.2.1 (2014.2.1 x001 x003)
       Water Paper 15.2.1
       Watercolor 15.2.1
       Wave 15.2.1
       Wavefront|OBJ 15.2.1 (2014.2.1 x001 x003)
       WIA Support 15.2.1 (2014.2.1 x001 x003)
       Wind 15.2.1
       Wireless Bitmap 15.2.1 (2014.2.1 x001 x003)
       ZigZag 15.2.1
    Optional and third party plug-ins:
       CUR (Windows Cursor) NO VERSION
       Face Control II 2.00
       Fine Touch 3.25
       GREYCstoration NO VERSION
       ICO (Windows Icon) NO VERSION
       Reduce Noise 7.0.0.0
       ScriptListener 13.0
       StarFilter Pro 3 3.0.5.1
       SuperPNG 2.0
       Variations 14.2.1 (14.2.1 x001)
    Plug-ins that failed to load: NONE
    Flash:
       Libraries
       Adobe Color Themes
    Installed TWAIN devices: NONE

  • I just intalled itunes 11but it will not launch on windows 8

    i just installed itunes 11 on windows 8 but it will not launch

    I'm having the same symptoms with Acrobat X Professional. See this thread: Acrobat X won't run on Windows 8.1 (no error on install or run, but program doesn't start)

  • Question on launching popup window..

    Hi,
    In our application, from an existing page, there is a need to launch a pop up window where the user can view certain values in read-only mode. This window will be launched at the click of a button created through personalization on the main page. This page also needs a couple of parameters from the main page. How can we achieve this?
    The popup will only have a cancel button to return to the main window. Also, when Cancel is pressed, the window should be closed and the base page should be displayed. Do we have control over not reloading the base page i.e not fire the queries again since nothing has really changed?
    Thanks for your inputs on this!

    "_BLANK",basically opens a new browser window and not a pop up window.If you need to open pop up window, you need to call javascript. See this thread:
    Re: Need to fire Custom Page as a modal window through JavaScript.
    This blog also, might be helpful for you:
    www.mukx.blogspot.com
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Itunes 8 will not launch on windows vista

    When I have mt ipod connected to the computer, itunes launches fine and automatically. When I try to open itunes without the ipod connected, I get a dialog box, "please wait while windows configures itunes", then a staus bar, gathering required information, time remaining, and then I get a message that i need to restart my computer. If I click "no" on the restart dialog box, it brings up the "my computer" dialog box. On numerous occasions I have restarted and still nothing. I did not have any of these issues prior to downloading itunes 8. Can anyone help?

    Presumably the configuration fails to complete, so every time you start iTunes it has another go.
    As iTunes works normally when you plug in your iPod, you should be able to work round this by creating a new iTunes short cut.
    Go to Program Files\iTunes and right click on iTunes.exe. Select: Send to>>Desktop(create shortcut). If you are lucky you will be able to open iTunes using this short cut.
    However this work around does not fix the underlying problem that WIndows fails to complete configuring iTunes.

  • JavaME SDK 3.0.5 not launching on Windows 7 64 bit OS using JDK 1.6.0_27 x8

    I installed JavaME SDK 3.0.5 on top of JavaME SDK 3.0 without uninstalling it at C:\Java_ME_platform_SDK_3.0.5 on Windows 7 64 bit OS using jdk1.6.0_27 x86.
    The installation went fine but i am not getting any shortcuts to launch JavaME SDK 3.0.5.
    No shortcut menu item for JavaME SDK launcher is available in start menu or no shortcut is available on desktop.
    Menu item group in start menu is created for JavaME SDK 3.0.5. It contains
    "Documentation" and "Uninstall" shortcuts only.
    When i clicked "Documentation" shortcut it complains for missing index.html file.
    I checked there is no toolbar folder present inside C:\Java_ME_platform_SDK_3.0.5.
    There used to be one for 3.0 at C:\Java_ME_platform_SDK_3.0\toolbar.
    I do have jdk1.6.0_27 x64 installed too. Does it creates any problem?
    Am i missing any installation or configuration step?
    I don't have netbeans installed on my computer.

    There is no "toolbar" folder in Java ME SDK installation dir anymore. All developer tools are moved to Netbeans plugins.
    Remember, that Java ME SDK consists of two parts: emulator and developer tools.
    In the given use case only emulator and other command line tools are accessible (see "bin" folder). You can run samples or your Java ME applications via command line interface.
    To develop, debug and profile your applications you have to install Netbeans (6.9.1 or later, latest 7.0.1 is recommended) and Java ME SDK Tools on top of it.
    You can do it either via installer (Netbeans have to be installed before you start Java ME SDK installation) or later from Netbeans Plugins manager (see Developer Guide in "docs" folder for details).
    So, nothing wrong with installation in your case.
    The only problem is the broken shortcut for documentation in Start menu. We will fix it soon.
    Edited by: Alexander Burdukov on 28.11.2011 8:32

Maybe you are looking for

  • New Airport Update no longer works with my Verizon supplied DSL WiFi

    While at work today (03-28-08) I allowed the new Airport software update to install. This was done over an ethernet connection. I arrived home, my Macbook will not recognize the Westel DSL modem/WiFi that I've had for some time and was provided by Ve

  • Moving iTunes to new computer, using external HD, not seeing library in iTunes

    Hi all, I got a new laptop running Windows 7.  I followed Apple's directions for how to move iTunes to a new computer using an external hard drive.  http://support.apple.com/kb/HT4527 All looks good until Part 5, Step 6 where it says "Open iTunes.  Y

  • Issues with photos/videos not uploading in chronological order..

    I have been having issues with Adobe Bridge not uploading my photo/video files (from a CF card) in chronological order. When uploading I select to rename the files by shot date + 01.. etc. For photos the first image then becomes the last image after

  • ExecuteWithParams with LOV

    Hi, I have the following query in a view object: SELECT Id, Name, CompanyId FROM persons WHERE CompanyId = :p_CompanyId Now I want to make a search page for that. I can drag the ExecuteWithParams to the page and then I get an input field for p_Compan

  • Characteristic wise Goods Receipt

    Hi Experts, I'm creating the material with KMAT type and class type as 300. To that material i'm assigning class and characteristics and also i check the batch management check box. I created PIR for that material with characteristics. I done MRP run