Http post does not work in portlet

Hi,
I have a simple portlet that has a form using http post. When I submit the portal page just displays a blank page. And request parameter name is prefix by only "_pirefnull" :
<INPUT TYPE="hidden" name="_pirefnull.param1" value="hello" />
When I call this funtion:
pReq.getRenderContext().getBackURL()
it also returns null.
Sample code is as follows:
<form      name="frmPage"
                    action="<%=HttpPortletRendererUtil.htmlFormActionLink(pReq,PortletRendererUtil.PAGE_LINK)%>"
                    method="get" >
<%=HttpPortletRendererUtil.htmlFormHiddenFields(pReq, PortletRendererUtil.PAGE_LINK) %>
<input      type="hidden"
                    name="<%=HttpPortletRendererUtil.portletParameter(pReq, "next_page")%>"
                    value="htdocs/myportlet/Page2.jsp" />
<input type="hidden" name="<%=HttpPortletRendererUtil.portletParameter(pReq, "param1")%>" value="hello"/>
<input type="submit" name="btnSubmit" text="Submit"/>
<input type="button" name="btnCancel" value="Return" onClick="javascript:window.location='<%=pReq.getRenderContext().getBackURL()%>'"/>
</form>
This works in my development portal. However, it doesn't work in the production portal.
Is there any version of the portal that only works on HTTP get method? How do I solve this problem. Any information would be very much appreciated.
Rachel

Rachel,
there doesn't seem to be any problem in your code. Though I'm a bit surprised with the null values that you seem to be getting. Could you condirm the folowing the for me:
1. Are you hitting the JSP directly or is the request to render coming from Portal? If you hit it directly then things like PortletRenderRequest will be null.
2. Could you find out what exactly is null - PorltletRenderRequest, RenderContext?
3. Why are you using HTTP GET for form submission? Can't you use POST for this?
4. Do you see any errors in your application.log file? Might be helpful for debugging.
5. What are the versions of your dev and producttion portals? What's the JPDK version you using?
Regards,
Abhinav

Similar Messages

  • Http_utl.text_write for http 'POST" does not work

    i have a proc that uses utl_http code I have seen all over on web sites for 'POST'ing to a REST web service ..... i use utl_http.write_text to write data to the request body but no data gets written ...... below are the code segments I use
    url entered directly into browser that **works fine**: http://www.media.com/admintool/Services.aspx?par_string=[{ "PAR_Transaction_Id" : 5566338, "MRI_Title_Name" : "4 Wheel & Off Road"}]
    calling routine:
    declare
    l_url varchar2 (300) := 'http://www.media.com/admintool/Services.aspx';
    l_data clob;
    l_query varchar2(32767);
    begin
    dbms_output.enable(3000000);
    l_data := '[{
    "PAR_Transaction_Id" : 5566338,
    "MRI_Title_Name" : "4 Wheel & Off Road"}]
    http_util_pkg.http_post(
    p_url_in => l_url, p_data_in => l_data);
    end;
    called routine segment:
    l_http_req := utl_http.begin_request (p_url_in, 'POST');
    -- Set the HTTP request headers
    utl_http.set_header(l_http_req, 'User-Agent', 'Mozilla/4.0');
    utl_http.set_header(l_http_req, 'content-type', p_data_type);
    utl_http.set_header(l_http_req, 'content-length', v_length);
    -- Write the data to the body of the HTTP request
    utl_http.write_text(l_http_req, 'par_string=');
    while v_index <= v_length
    loop
    utl_http.write_text(l_http_req, substr(p_data_in, v_index, 4000));
    dbms_output.put_line ('data = ' || substr(p_data_in, v_index, 4000));
    v_index := v_index + 4000;
    end loop;
    results .... you can see below that the header content length is non-zero but the response header says there is no content, so something is haywire with the write_text method
    url = http://www.media.com/admintool/Services.aspx
    length in data = 1271
    http package; url = http://www.media.com/admintool/Services.aspx
    after set authentication
    after write headers
    data = [{
    "PAR_Transaction_Id" : 5566338,
    "MRI_Title_Name" : "4 Wheel & Off Road"}]
    after write text
    status code: 200
    reason phrase: OK
    Connection: close
    Date: Tue, 06 Apr 2010 03:59:27 GMT
    Server: Microsoft-IIS/6.0
    X-Powered-By: ASP.NET
    X-AspNet-Version: 2.0.50727
    Cache-Control: private
    Content-Length: 0 *************** response header says no content !!!
    can you help me figure out what is wrong with the utl_http.write_text method ???
    thank you

    Please do not resurrect old threads - rather ask your question in a new thread. If need be, add a URL in your new thread posting that refers to the old thread. Also add as much relevant details as possible. Your Oracle version (all 4 digits). Your o/s. If possible, sample code and data that can be used as a test case. Complete error details. And what the intent of the code is (i.e. what the actual problem is that you're trying to solve).
    As for HTTP post - works just fine as far as I've used it.

  • CoreID Access: Passing obmygroups to HTTP-Headervariable does not work

    Hello,
    we want to pass the group membership of a user via headervariable to a web application. This works on a testing environment when configuring a action (headervar - HTTP_GRP - obmygroups) and the variables in the dads.conf (PlsqlCGIEnvironmentList HTTP_GRP).
    Now I configured the same on an other environment and there all variables gets filled to (like sn, cn, givenname...) but not the HTTP-GRP Variable. I have no idea why this does not work on the second environment. I tried to pass obuniqueid, and this works.
    How can I debug this problem? Does anybode has an idea what goes wrong?
    Regards
    hfr

    Hello,
    we want to pass the group membership of a user via headervariable to a web application. This works on a testing environment when configuring a action (headervar - HTTP_GRP - obmygroups) and the variables in the dads.conf (PlsqlCGIEnvironmentList HTTP_GRP).
    Now I configured the same on an other environment and there all variables gets filled to (like sn, cn, givenname...) but not the HTTP-GRP Variable. I have no idea why this does not work on the second environment. I tried to pass obuniqueid, and this works.
    How can I debug this problem? Does anybode has an idea what goes wrong?
    Regards
    hfr

  • Request Scope for portlets? Sharing data tutorial does not work for portlet

    I created 2 identical applications, one that was a regular JSF web app, and one a JSR168 portlet. By following the "Sharing Data Between Two Pages" tutorial, I can get this technique to work without a problem in the web app, but the portlet (deployed locally using the pluto server) does not work. What is the difference between a regular app and a portlet app?
    This shows that portlets apparently handle scope much differently than other applications, so any information relating to this would be helpful to pass along.

    Portlet Life Cycle Differences
    A portlet page is the same as a web application page in the Creator 2 application
    model with differences only in the page life cycle. To best understand the life
    cycle differences, you must first understand how a portal interacts with a portlet.
    This interaction between portals and portlets is defined by the JSR-168 Portlet
    specification. Typically a portal display in the web browser shows multiple
    portlets. That is, when the portal page is displayed, there are actually multiple
    portlets displaying or rendering their content. The job of the portal is to manage
    how these portlets are displayed. Internally, the portal is responsible for telling
    each portlet two things:
    1. When to display itself
    2. If there has been an action, such as a button press, performed inside that
    portlet.
    When a portal wants portlets to display their contents, the portal sends a render
    request to each portlet showing in the portal. If one of the portlets showing in the
    portal has a button tied to an action request, when that button is pushed, the
    portal fires an action request for that portlet. In addition, the portal generates a
    render request for the portlet and all other portlets on the page. You should note
    that the portal implementation fires both action and render requests for each
    action method on a portlet showing in the portal. The implication of this
    interaction means the portlet page being rendered can not make assumptions
    about the state of the values to be shown. Unlike a normal web application page,
    a portlet page can't assume that the page being rendered in the Render Response
    phase is the same page that was built in Restore View. If a portlet wants to
    maintain state across repeated render requests, the portlet must use the session
    bean to store stateful information.
    The main point to remember is a portlet page must always be prepared to render
    it's values from scratch or session data. This implies you should never bind
    portlet page UI components to page bean properties or request bean properties.
    Also, you should never rely on page bean instance variables that might be set
    during an action event.
    Hope this helps.

  • HTTP server does not work

    I cannot start my HTTP server. If I go to options>IDE configuration>Server and External Tool settings>HTTP server I cannot select truefrom the drop down menu and start the server. I get an error saying "Unable to start the HTTP server please check that the port is not in use." I then try to change the port number but it gives me the same error and resets the port number to something else.
    This is a big problem because I cannot start my Tomcat, and I cannot even test my applets, because this error message always pops up. The command window sais: "
    Connection Refused" when I try to test my applets.
    Thank you very much for your time and help
    Martin

    Hi Sanjeev,
    thanks for your response. I am using Windows XP. The error message that I am talking about pops up on everything. When I try to start Tomcat it pops up. I cannot even test my applets because the error message pops up. (The error message pops up several times and I have to close it). Actually after I close the the anoying error messages an Internet Explorer window appears and my applet is running. The same thing is with Tomcat. It works only after I close the error message which pops up several times.
    Here is what happens in the command window when I run an applet:
    Tomcat Internal
    C:\j2sdk1.4.0\jre\..\bin\java -classpath "C:\Program Files\s1studio\ce\tomcat401\bin\bootstrap.jar";"C:\j2sdk1.4.0\jre\..\lib\tools.jar" -Dcatalina.home="C:\Program Files\s1studio\ce\tomcat401" -Dcatalina.base="C:\SunStudioWork\tomcat401_base" org.apache.catalina.startup.Bootstrap "start"
    Starting service Tomcat-Netbeans
    Apache Tomcat/4.0.1
    localhost_log
    2002-11-27 10:27:53 WebappLoader[]: Deploying class repositories to work directory C:\SunStudioWork\tomcat401_base\work\localhost\_
    2002-11-27 10:27:53 StandardManager[]: Seeding random number generator class java.security.SecureRandom
    2002-11-27 10:27:53 StandardManager[]: Seeding of random number generator has been completed
    2002-11-27 10:27:53 ContextConfig[]: Added certificates -> request attribute Valve
    2002-11-27 10:27:53 StandardWrapper[:default]: Loading container servlet default
    2002-11-27 10:27:53 default: init
    2002-11-27 10:27:53 jsp: init
    2002-11-27 10:27:53 StandardContext[]: Servlet threw load() exception
    javax.servlet.ServletException: Servlet.init() for servlet jsp threw exception
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:871)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3267)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3384)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1123)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:612)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1123)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:307)
    at org.apache.catalina.core.StandardService.start(StandardService.java:388)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:505)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:776)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:243)
    ----- Root Cause -----
    java.lang.NoSuchMethodError: javax.servlet.ServletContext.getResourcePaths(Ljava/lang/String;)Ljava/util/Set;
    at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocationsCache.java:202)
    at org.apache.jasper.compiler.TldLocationsCache.<init>(TldLocationsCache.java:139)
    at org.apache.jasper.EmbededServletOptions.<init>(EmbededServletOptions.java:324)
    at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:266)
    at org.netbeans.modules.tomcat.tomcat40.runtime.IDEJspServlet.init(IDEJspServlet.java:212)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:852)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3267)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3384)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1123)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:612)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1123)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:307)
    at org.apache.catalina.core.StandardService.start(StandardService.java:388)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:505)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:776)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:243)
    localhost_access_log
    127.0.0.1 - - [27/Nov/2002:10:28:01 -0500] "GET /TriangularArbitrageApplet.html HTTP/1.1" 304 -
    127.0.0.1 - - [27/Nov/2002:10:28:13 -0500] "GET /TriangularArbitrageApplet.class HTTP/1.1" 200 4709
    127.0.0.1 - - [27/Nov/2002:10:28:16 -0500] "GET /TriangularArbitrageApplet$1.class HTTP/1.1" 200 781
    (there are 3 GET becace the error message poped up 3 times).
    I have also tried to change the port and the same thing as you said happens. It changes to a different one, but I still get the error message.

  • XMLHttpRequest with "post" does not work (parameters are not passed to called routine); same code works in Chrome and IE.

    Here is my code:<br />
    <br />
    <pre><nowiki>function evalCtr(Ctr)
    var xxxhttp;
    if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
    xxxhttp=new XMLHttpRequest();
    else
    {// code for IE6, IE5
    xxxhttp=new ActiveXObject("Microsoft.XMLHTTP");
    xxxhttp.onreadystatechange=function()
    if (xxxhttp.readyState==4 && xxxhttp.status==200)
    alert(xxxhttp.responseText);
    var params = "oper=XXX&Center=YYY";
    xxxhttp.open("post","c_ctr.cfm",true);
    xxxhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
    xxxhttp.setRequestHeader("Content-length", params.length)
    xxxhttp.setRequestHeader("Connection", "close");
    xxxhttp.send(params);
    }</nowiki></pre>

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.<br />
    The helpers at that forum are more knowledgeable about web development issues.<br />
    You need to register at the mozillaZine forum site in order to post at that forum.<br />
    See http://forums.mozillazine.org/viewforum.php?f=25

  • BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    These are user forums. You are not speaking to Apple here. Report your problem at Apple Feedback.

  • Only posted values for Navigation does not work

    Hi,
    I have a problem where all master data is shown in the input help for a variable, even when the setting for the info object is to show only posted values.
    In a WEB template I have tree reports using tree different data providers. The setting in the web template is to show the same variable only once and that works. The setting of the info objects is to show only posted values. That does not work!
    When using the input help for a variable, all master data shows, not only the poster values in the data providers.
    When unchecking the setting Display Same Variable Only Once (MELT_VARBLES) the variables appears tree times each and the input help works as expected. It shows only posted values.
    Any experience of this?
    Best Regards
    Kent

    Hi Kent,
    If you build several queries on different infoproviders, then put them into one web template or workbook. Variables from different queries with the same technical name will get merged in variable screen (Set parameter MERGE_VARIABLES=True in web template property. Set "Display Duplicated Variables Only Once" in workbook settings for variables).
    This means, that it is not possible to decide which infoprovider the variable is based on. The provider is unknown to the system when doing F4 help so that D mode is not possible since D mode [Only Values in InfoProvider]  is also infoprovider dependent. So only M mode ['Values in Master Data Table'] is possible.
    In such merge variable situation, the authorizated values in F4 help is also retrieved without specific infoprovider.
    Regards,
    Nishant

  • "Track Shipment" is iOS4 does not work for Canada Post tracking numbers

    Not 100% sure this is the best forum to post this but couldn't find an iOS specific forum.
    When an email arrives with a shipment tracking number embedded in it, iOS4 is smart enough to recognize it and turn it into a link. You click the link, select "Track Shipment" and in theory you get sent off to the appropriate shipment tracking website.
    Problem is that this does not work for Canada Post tracking numbers, I get sent to the USPS tracking site instead of the Canada Post one. I assume that the number format is similar but there must be a way to distinguish between CPC tracking numbers and USPS tracking numbers (by range ?).

    This has since become working in 4.0 and higher.
    I noticed I now get a notes folder for each of my email accounts (ie. in my case; MobileMe gets one, Gmail gets another, and Virgin Media a yet another). And all three since accordingly correctly between Notes mailbox on iPhone 4 and it's counterpart Notes mailbox in the mac mail app under Reminders section.
    Additionally, just like other main mailboxes (inbox, drafts, sent, trash, junk), they also have a "unified" box at the top in both mac and iphone, in order to view notes in all email accounts at the same time.
    Hooray Apple, shame it took so long, but at least it's here now

  • HTTP Return Code on CSM causes IP Sticky does not work

    I have CSM running on 3.1(1a).
    I configured HTTP Return Code Checking:
    map HTTPCHECK retcode
    match protocol http retcode 404 404 action remove 5 reset 60
    And apply it to the following web server serverfarm:
    serverfarm DCMSWEB
    nat server
    no nat client
    predictor leastconns
    retcode-map HTTPCHECK
    real 10.1.31.1
    inservice
    real 10.1.31.2
    inservice
    I also configure IP sticky for my web server:
    sticky 2 netmask 255.255.255.255 timeout 60
    And apply that sticky to the virtual server:
    vserver DCMSWEBHTTP
    virtual 10.1.30.100 tcp www
    serverfarm DCMSWEB
    sticky 60 group 2
    replicate csrp sticky
    replicate csrp connection
    persistent rebalance
    inservice
    But, the problem is my sticky does not work if I apply HTTP return code checking on the serverfarm.
    "show mod contentswitchingmodule 8 sticky" does not show any IP sticky connection.
    If I remove HTTP return code checking from serverfarm, my IP sticky is back to normal.
    Has anyone encoutered this similar problem before?
    Is this a bug on the CSM software?

    This is a new bug.
    The workaround is to use the command 'client 0.0.0.0 /0' under the vserver.
    Gilles.

  • Dynamic image does not work in the template builder plug-in (Apex-BI Intgr)

    Hi all, I posted this problem in the BI Publisher topic but nobody responded maybe this is because mods thought this is an Apex-BI integration issue.
    If I'm in the wrong place, please do warn me.
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    ...This works obviously
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    ...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    ...This, however, does not work.
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1

    Hi Oeren,
    your steps seem basically to be correct. I have a tutorial how to do this here (in german)
    http://www.oracle.com/webfolder/technetwork/de/community/apex/tipps/pdf-dyn-images/index.html
    when you see the URL corrently as long as you have it as a plain text field, the XML tag and the
    referencing seem to be OK.
    Here are two thought - the issue might be one of these ...
    How did you insert the dummy image into the word document - did you do it via "insert" or
    via "link to file". "Link to File" does not work - you must choose the simple "insert".
    Another one: Does your BI Server have a connection to the internet - is the proxy server correctly set ..?
    Does this help ..?
    Regards
    -Carsten
    Cloud Computing mit APEX umsetzen. Jetzt!
    http://tinyurl.com/apexcloudde
    SQL und PL/SQL: Tipps, Tricks & Best Practice
    http://sql-plsql-de.blogspot.com

  • Firefox does not work after update to 3.6.6 (and all later revisions)

    (EDIT: I found the exact revision from which the Firefox is not starting, it is 3.6.6 so I changed them throughout this post, previous revision value was 3.6.8)
    I am using Windows 7 x64
    After Firefox recently updated to 3.6.6 it does not work any more. The application is listed in task manager but it does not do anything. There is no user interface or anything. Only way to interact with it is "End process". Starting in safe mode or starting Profile manager is not possible.
    I tried all possible and suggested solutions in mozilla KB, this and other forums but without success (windows safe mode, firefox safe mode, renaming firefox, waiting, checking for firewall or malware/virus issues, deleting profile, uninstall, clean reinstall and every possible combination of those that I could think of). Always the same result, no error message, firefox shown in task manager and that's it.
    When I do clean install of all later firefox revisions starting from 3.6.6 the problem remains, including latest Firefox 4 beta6.
    I have no issues with any firefox versions on my Vista laptop, so I would guess that something in my windows environment is not suitable for newer versions of firefox.
    As I cannot find official older 3.6.x revision of Firefox, I am currently using 3.5.13 and it works flawlessly.
    Any help is appreciated, I ran out of ideas.

    You can try a direct connection and select No Proxy in the connection settings.
    You can find the connection settings in "Tools > Options > Advanced : Network : Connection"
    Also do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Java does not work at all upon using the update manager to update to firefox 3.6.10 for Ubuntu 9.0.4

    OS: Ubuntu 9.0.4
    Browser: Firefox 3.6.10
    upon updating to firefox 3.6.10, java does not work at all.
    websites that use java do not work at all anymore, when they worked just fine before the updating thru update manager. e.g. hulu website cannot play any of the shows.
    i can give the folder of bookmarked pages i tried.
    how to do that on here, i've yet to see if possible.
    i can even give saved text from the terminal concerning certain attempts.
    when i updated thru update manager, it gave some weird java plugin that wasn't there before "The IcedTea Web Browser Plugin IcedTea6 Java Web Browser Plugin (execution of applets on webpages)".
    i uninstalled this as instructed by an answer found in one of the pages i saved, cuz it was conflicting w/another java program the updater said i needed. right now, i don't remember for sure what it was. it perhaps was realplayer flash or Java itself. w/all the hours/days of searching i put in, it's difficult if not downright impossible for me to remember all the specifics of what i tried.
    i've searched throughout many webpages (including many searches on mozilla, ubuntu, java, etc) for instruction in fixing the problem.
    oh, and incidentally, on the Java site, when i try the verify test of Java, firefox pops up with that yellow bar right below the slew of tabbed website windows, giving the statement "additional plugins are required to display all the media on this page. (w/link to) install missing plugins ." which is what i do, go thru the requesting plugin installation. it comes up with, guess what, the IcedTea Java Plugin. i click on the 'next' in the "Plugin Finder Service" box that pops up, & all it gives me is "No plugins were installed. IcedTea ...Plugin failed. and the link 'find out more about plugins or manually find missing plugins'". the link takes me to some of the very things/plugins that wouldn't install in the first place. the Java test failure is a LOL funny, as what plugin it is saying is required (IcedTea) is a recommended alternate program to display the very test in the first place.
    i followed the given instructions on those many searched pages, in every case (barring what i may have just plain missed), but to no avail.
    i've even gone to the point of trying to reinstall the previous 3.5.13 firefox version, from mozilla site. even that wouldn't install.
    i've tried installing Java for my sys direct from it's site. nada.
    now it's time for me to post the problem & perhaps someone will come up with some kind of "dummy" way to fix it.
    until then many sites a regularly use are totally useless to me on this fast puter.
    the only way i can get to use such sites, are two choices: 1. use a dinosaur laptop, which is slower than molasses & cannot handle to any streaming stuff, or 2. use an available internet access puter at the library. but useage for ea person per day is limited to only one hour a day. and one can end up waiting for an hour or more ( in the busiest periods) to even get to use one.
    so, is there anyone at all, who knows any for-sure working fix for this problem?
    thanks muchly :^D
    p.s. i can't pay anybody any money for such help, as is required in certain sites (e.g. Java website), cuz i don't have any.
    i can pay in labor tho, if there is someway to find someone who can physically be at this puter w/me, taking me step-by-step
    sorry for the 20-pg essay. i hope it was all clearly understood. if, not, well, clear communication is always what is needed, ask away.

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • My sound does not work on my Windows 8.1

    it stoppped working after i updated it and i went into computer manage ment and went to services and clicked windows audio. i hit start and it said Error 0x800706cc: the endpoint is a duplicate. PLEASE HELP!!

    Does this works ?
    http://answers.microsoft.com/en-us/windows/forum/windows_8-hardware/windows-audio-cant-be-started-error-1740/d94003a0-aee9-44a0-9d0d-a8931fd45462
    Also, update the drivers for your audio device. 
    In addition, check if Multimedia Class Scheduler service is running. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • I get wireless connection but my internet does not work on my ipad 2

    I get wireless connection but my internet does not work on my ipad 2

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

Maybe you are looking for

  • How to create a simple idoc in practice? can you provide an example?

    how to create a simple idoc in practice? can you provide an example with full source code?

  • Slideshow on 1st monitor (while in dual monitor mode)

    Apparently, Lightroom expects you to always use the second monitor for slideshows and does not allow you to use the first (no options available as far I my research went). My 1st monitor is bigger and would be my choice for slideshow presentations. I

  • My IP Address was published on a public forum, can I protect myself?

    The owner of a forum (AppleTalk Australia) I was a member of published my IP Address in a thread there and I'm concerned about security issues. How can insure my computer is safe? Is there any configurations in System Preferences, Aiport Admin Utilit

  • AirTunes not available?

    Hello, I searched and read the archived Topic : "Airport Express and Verizon Fios" and initially setting up Airport Express wired to my wifi router helped in setting AE up and configuring it correctly. However, even though the status light on my AE i

  • Microphone too loud?

    Whenever i sing at a loud Volume it always seems like the microphone is too weak and cant handle that much sound so it causes a bunch noise in the playback like im singing RIGHT into the mic, like im using an amateur recording device or something. Im