AJAX problem

Hi All,
Please help me on this. I am getting this exception when i tried to run my jsp using AJAX.
org.apache.jasper.JasperException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: org/apache/taglibs/standard/lang/support/ExpressionEvaluatorManager
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:541)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:417)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)
     org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)
     org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)
     org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
     org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
javax.servlet.ServletException: java.lang.NoClassDefFoundError: org/apache/taglibs/standard/lang/support/ExpressionEvaluatorManager
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
     org.apache.jsp.WEB_002dINF.jspf.sucess_jsp._jspService(sucess_jsp.java:191)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)
     org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)
     org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)
     org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
     org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
java.lang.NoClassDefFoundError: org/apache/taglibs/standard/lang/support/ExpressionEvaluatorManager
     org.ajaxtags.tags.AjaxSelectTag.doStartTag(AjaxSelectTag.java:167)
     org.apache.jsp.WEB_002dINF.jspf.sucess_jsp._jspx_meth_ajax_005fselect_005f0(sucess_jsp.java:623)
     org.apache.jsp.WEB_002dINF.jspf.sucess_jsp._jspService(sucess_jsp.java:168)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)
     org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)
     org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)
     org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
     org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
and in my .jsp i have coded like this
<body>
<html:form action="/sucessAction.do">
Make:
<html:select property="make" styleId="make">
<html:option value="">Select make</html:option>
<html:option value="0">Zero</html:option>
<html:option value="">One</html:option>
<html:option value="">Two</html:option>
</html:select>
Model:
<html:select property="model" styleId="model" disabled="true">
<html:option value="">Select make</html:option>
</html:select>
Year:
<html:select property="year" styleId="year" disabled="true">
<html:option value="">Select model</html:option>
</html:select>
</html:form>
<script type="text/javascript">
function initProgress() {
Element.show('progressMsg');
function resetProgress() {
     Effect.Fade('progressMsg');
function reportError() {
if ($('model').options.length == 0) {
$('errorMsg').innerHTML = "Dropdown busted!";
Element.show('errorMsg');
setTimeout("Effect.DropOut('errorMsg')", 2500);
</script>
<ajax:select baseUrl="${contextPath}/Test/ajaxAction.do"
source="make"
target="model"
parameters="make={make}"
preFunction="initProgress"
postFunction="resetProgress"
errorFunction="reportError"
parser="new ResponseXmlParser()">
</ajax:select>

java.lang.NoClassDefFoundError means that a class can't be found. The class that can't be found is:
org/apache/taglibs/standard/lang/support/ExpressionEvaluatorManager
So what do you think is the problem?

Similar Messages

  • Ajax problem in IE7 - get.get() is empty

    I am testing Ajax under Mozilla Firefox and IE7. Under Firefox is everything fine but IE7 gives me errors.
    My process is the following:
    declare
    l_counter number;
    l_o_name varchar2(2000);
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<select>');
    htp.prn('<option value="x">x</option>');
    htp.prn('</select>');
    debug.add('ok');
    end;
    debug_add('ok') adds text 'ok' into debugging table. I can see that this info is being inserted into the table, so the process runs through.
    My JavaScript is in ApEx page attributes "HTML header" section and is like the following:
    <script type="text/javascript">
    function get_AJAX_SELECT_XML(pThis,pSelect){
         var l_Return = null;
         var l_Select = html_GetElement(pSelect);
         var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=my_proc',0);
         get.add('GTEST',pThis.value);
    alert(get.get());
         gReturn = get.get('XML');
         if(gReturn && l_Select){
    alert('Never here in IE7');
              var l_Count = gReturn.getElementsByTagName("option").length;
              l_Select.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = gReturn.getElementsByTagName("option");
                   appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
         if(document.all){/* why is ie different ask bill */
              pSelect.options.add(l_Opt);
              l_Opt.innerText = pContent;
         }else{
              l_Opt.appendChild(document.createTextNode(pContent));
              pSelect.appendChild(l_Opt);
    </script>
    alert(get.get()); gives me popup with text "undefined" in IE.
    So "if(gReturn && l_Select)" will never become true.
    I call it in an item:
    onchange="get_AJAX_SELECT_XML(this,'P3201_XXX')"
    In Mozilla 2.0.0.7 everything works, i can get correct answer from get.get() and the list is being filled with "x".

    Hi,
    I'm having a sporatic problem.
    Where do you put the encoding?
    Content-type: text/xml; charset=UTF-8
    Cache-Control: no-cache
    Pragma: no-cache
    <?xml version="1.0" encoding="UTF-8"?>
    I have the following in my ODP function
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    then I start my select list:
         htp.prn('<select>');
         htp.prn(ls_default);
    and a loop to build the option code

  • How to solve Ajax problem in Tomcat server

    we are using Tomcat 5.0.27 server and my sql server. we using AJAX Techniques in my projects. but its some times working fine but sometimes not working the code sample is given by
    var req;
    var names;
    function initRequest(url) {
    if (window.XMLHttpRequest)
         req = new XMLHttpRequest();
    else if (window.ActiveXObject)
    isIE = true;
    req = new ActiveXObject("Microsoft.XMLHTTP");
    if (req==null)
              alert("Your browser does not support XMLHTTP.")
    function loadPurchase(startLetter)
         var mon=document.getElementById('month').value;
    var yea=document.getElementById('year').value;
    var url = "../inventory?actionS=INVPurchase&month="+escape(mon)+"&year="+escape(yea)+"&id="+escape(startLetter);;
         initRequest(url);
         req.onreadystatechange = PurchaseRequest;
         req.open("GET", url, true);
         req.send(null);
    function PurchaseRequest() {
              0 (Uninitialized) The object has been created, but not initialized (the open method has not been called).
              1 (Open) The object has been created, but the send method has not been called.
              2 (Sent) The send method has been called, but the status and headers are not yet available.
              3 (Receiving) Some data has been received.
              4 (Loaded) All the data has been received, and is available
    alert(re.readyState)
         if(req.readyState == 4)
    alert("Inside Ready State");
    document.getElementById('Edit').disabled=true;
    document.getElementById('Delete').disabled=true;
    if (req.status == 200)
    PurchaseMessages();
         else
              alert("Problem retrieving XML data")
    function PurchaseMessages()
    var batchs = req.responseXML.getElementsByTagName("purchases")[0];
    var str="";
    for(loop = 0; loop < batchs.childNodes.length; loop++)
    var batch = batchs.childNodes[loop];
    var Refid = batch.getElementsByTagName("Refid")[0];
    str = str +Refid .childNodes[0].nodeValue;
    var tb=document.getElementById('PurchaseTable');
    tb.innerHTML=str ;
    the alert coding( req.readyState) is always 1
    how to solve for that
    please any one help me

    Sorry, I've never done this. I went to the Tomcat site and pulled down the CGI docs, which you might have seen:
    http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cgi-howto.html
    No other help available from me. Sorry.

  • AJAX problems

    I have a global select list (self submit) on page #0 in my application. I have a bulk update form on page #2. This bulk update form on page #2 has editable fields and a link also. This link on the bulk update form is programmed to show a AJAX report. This AJAX report is pulled from page #3 onto page #2 using Carl's example. Here are some of the problems that I'm having, any help is really appreciated.
    Problem # 1
    When I click on the url link in page #2, the AJAX report is pulled properly from page #3, but the pagination on the AJAX report does not work, the error message is "undefined"
    Problem #2
    When the AJAX report is displayed and I try to change select list (self submit) on page #0 to refresh the bulk update form on page #2, the ajax report generates the following error.
    Error      Item ID (1958808806097753) is not an item defined on the current page.
    Problem # 3
    I'm trying to set "Display as Text" field from the same link in bulk update form. I have set the target to "URL" in the report attributes and called the javascript. It sets the value in session, but does not show the latest value on the screen for the field. The same javascript code works "onChange" for a select field to set the field, but not for a link the report, any ideas are appreciated.
    thanks,
    Surya

    Hello,
    Yeah see you had two separate issues.
    first issue:
    When I try to change the pagination, it gives "undefined error";The problem with this is that the pagination is using page 8 when the report is from page 9. We are going to be enhancing this in 4.0 so this won't be a problem. You have a couple solutions.
    1. Disable Pagination and just return all the rows.
    2. Rewrite the javascript function that does the pagination so that it points at page 9 , include this in your page. This will break the pagination for any other reports on this page but will enable it for the report that you are pulling from page 9.
    function $a_report(pId,pMin,pMax,pFetched,pSort){
       lThis = $u_js_temp_drop();
       var lOld = $x('report_'+pId+'_catch');
       lOld.id = 'report_'+pId+'_catch_old';
           old code
           var l_URL = 'p='+$v('pFlowId')+':'+$v('pFlowStepId')+':'+$v('pInstance')+':FLOW_PPR_OUTPUT_R'+pId+'_';
        var l_URL = 'p='+$v('pFlowId')+':9:'+$v('pInstance')+':FLOW_PPR_OUTPUT_R'+pId+'_';
       if(!!pSort){l_URL += pSort+'::RP&fsp_region_id='+pId;}
       else{l_URL += 'pg_R_'+pId+':NO&pg_max_rows='+pMax+'&pg_min_row='+pMin+'&pg_rows_fetched='+pFetched;}
       var ajax = new htmldb_Get(null,null,null,null,null,'f',l_URL);
       var gReturn = ajax.get();
       lThis.innerHTML = gReturn;
       lOld.innerHTML = $x('report_'+pId+'_catch').innerHTML;
       lOld.id = 'report_'+pId+'_catch';
       lThis.innerHTML = '';
       return;
    Second issue:
    when change the global select list at the top and the error is "Error Item ID (4571613207429374406) is not an item defined on the current page."This problem was because you were pulling a hidden form item in with your report content from for page 9 "P9_JOB Hidden and Protected", this will always break your page. You should either use an Application Level item or make sure to strip the form item out. I fixed your page by moving the Form Item to a new region and moving that region to region position one. Since that content gets clipped out your fine and it doesn't break.
    >
    >
    Finally when pulling reports from another page you want to make sure that the highlighting options are turned off because it's trying to run javascript that is not in the page and throws errors.
    I've made all three of these fixes in your application so you can see them running.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Apex 4.0 Cascading Select List: ajax problem with german umlaute

    Hi everybody,
    Apex 4.0
    Dad PlsqlNLSLanguage: GERMAN_GERMANY.WE8MSWIN1252
    I have problems with german umlaute and ajax cascading select lists (Cascading LOV Parent Item).
    The data is populated without a page refresh in the select list when the parent select list changes but special signs like german umlaute are shown as weird characters.
    Seems like there is some charset problem with ajax.
    This is the only part of the application where special signs like umlaute are messed up. Everything else is fine.
    I allready tried to figure out if I can escape the umlaute in the javascript (file apex_widget_4_0.js) but no success here.
    Can anybody help me with this issue?
    Thanks in advance,
    Markus

    Hi Markus,
    your specified character set in your DAD is wrong. As mentioned in the installation instructions at http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/otn_install.htm#CHDHCBGI , Oracle APEX always requires AL32UTF8.
    >
    3. Locate the line containing PlsqlNLSLanguage.
    The PlsqlNLSLanguage setting determines the language setting of the DAD. The character set portion of the PlsqlNLSLanguage value must be set to AL32UTF8,
    regardless of whether or not the database character set is AL32UTF8. For example:Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Owa_util.mime_header in select_list_value (or whole ajax) problem

    Hi,
    I'm using Ajax in "select multiple items". After few problems (I had to turn off session state protection) - I had to organise the same process on the popup.
    I open new page of my application in javascript using window.open function. The problem is that when I'm trying to update or insert something on popup I got that kind of message:
    "problem with parsing XML file - didn't understand char after document element" - something like that (with additional about my adres and wwv_flow.accept)
    source of error page looks similar to that:
    <body><desc>this XML genericly sets multiple items</desc><item id="name">test</item></body>Content-type: text/xml; charset=UTF-8
    Cache-Control: no-cachePragma: no-cache
    <body><desc>this XML genericly sets multiple items</desc><item id="kli">test2</item></body>Content-type: text/xml; charset=UTF-8
    Cache-Control: no-cachePragma: no-cache
    <select><option value="1">- choose person -</option></select>ERR-1777: Page 2 provided no page to branch to.  Please report this error to your application administrator.<br /><br /><a href="f?p=104">Restart Application</a>I use 3 times: - 2 times I put some values into 5-6 textfields and once I'm put some options into select list
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;can any one know where is problem? I have the same construction on the static page (not popup) and there everything is ok.
    thanks for any help

    I have to add, that I understand that error :) it's easy to understand when it's raising - but why there is a problem with owa_util.mime_header - why it adds "content type" line...?
    why it was working fine before going to popup...
    sorry for English mistakes

  • XML News / AJAX problem

    Hi,
    We are using AJAX to call one portal component by sending some parameters to create the link for the news, which we create with xml form builder.
    We have modified the .xsl file of xml template and embedd the code to call the portal component.
    We are idenfying the news which is created by xml template and creating the link for that news in some other KM folder.
    After creating or updating the news with xml template all news will be displayed after compliting the process. But this is happening for first time only. If I try again to create/update the news the news item is creating/updating but browse is stuckup and popup message "Your request is being processed".
    Please let me know what might be the problem
    Thanks

    Solved my self

  • Ajax + problem with Firefox

    Dear All;
    I am new to Ajax world. I have following lines of code that works fine on IE and Eclipse internal Browser but when i tried testing on Firefox it did not work.
    I have pin pointed the exact location. Please help me out to solve it.
    Code:
    var xmldoc=req.responseXML.documentElement;
    var xrows=xmldoc.getElementsByTagName('entry');
    var mytable = document.getElementsByTagName("table")[2];
    var mytablebody = mytable.getElementsByTagName("tbody")[0];
    for(i=0;i<xrows.length;i++)
    alert('inside for loop');
    var num=xrows.childNodes[0].firstChild.nodeValue;
    alert("num:="+num);/////////////// This line has problem
    var site=xrows[i].childNodes[1].firstChild.nodeValue;
    alert("site"+site);
    In IE (////////////This line has problem) is showing proper output but this is not working with forefox.
    Please help me out.
    Thanks and Regards;
    Vikash Anand.

    HI Vikash,
    Yes, there a some problems between the browsers that causes every developer pain. A good site to help identifying browsers quirks is http://www.quirksmode.org.
    I believe you need an array designation where the xrows element is defined, which looks like your root element. For example:
    var xrows=xmldoc.getElementsByTagName('entry')[0];
    If this isn't your root element, then you may want to try starting at the root element, then using it's childNodes property, extract the "entry" items.
    This is assuming that you are you getting a valid xml document back in your response that has the entry item in it.
    The error console of firefox may also help you find the problem. For advanced debugging, firebug is great and is located at https://addons.mozilla.org/firefox/1843/
    Hope this helps - Thanks - Mark
    Message was edited by:
    markbasler

  • JSF AJAX problem

    Hi every body I am using ajax for jsf for form submit .I can use this.form.submit() , but I want to use the ajax type form submission .It is working fine in the fire fox , but when I am running my application on IE it is not working .
    Is there any limitation in ajax for JSF in IE ?
    thanks ,
    SB

    Hi every body I am using ajax for jsf for form submit .I can use this.form.submit() , but I want to use the ajax type form submission .It is working fine in the fire fox , but when I am running my application on IE it is not working .
    Is there any limitation in ajax for JSF in IE ?
    thanks ,
    SB

  • Livecycles Process Ajax problem

    Hi,
    I have a several LCES process that are called from an ajax app.  All works well except when the user's session expires/timesout.
    After that when the user tries to invoke one of the processes, jboss returns a http 401 error as it's Basic Authentication. I cannot always handel this correctly in ajax as browsers will intercept this 401 error and offer an authentication challenge.
    I guess I need something like the remoting end point 'Custom Authentication' but for the REST end point.
    1) Could I configure jboss to issue a redirect to a custom html page when a 401 exception accurs?
    2) Could I configure jboss to return a 403 or 500 error when there is a 'not Authorized' exception, instead of the 401?
    3) If I set "Require callers to authenticate:No" and 'Run as System" for the service is there any way I could then check within my process to see if the current user is actually authenticated?
    Any other suggestions?
    Thanks in advance,
    Michael

    1) Could I configure jboss to issue a redirect to a custom html page when a 401 exception accurs?
    Ans :  Yes you can handle it in front end in ajax by having a seperate exception handler in the server side which redirects the page when 401 exception is thrown from adobe
    2) Could I configure jboss to return a 403 or 500 error when there is a 'not Authorized' exception, instead of the 401?
    No.
    3) If I set "Require callers to authenticate:No" and 'Run as System" for the service is there any way I could then check within my process to see if the current user is actually authenticated?
    No you can not since you set "Require callers to authenticate:No" . You can track your session in adobe side only when the user authentication is set to yes
    Jaison

  • Ajax problem urgently help please?

    Hi all,
    Can you tell me that is it possible using for when we selected a data from a select list to show the selected item results in a multiselect list.I tried but did not success.For example we select a dept name from a select list and in the multiselect list we will show the empnames for this deptno but more than ona rows.can you tell me how can ı success this?
    ı am waiting your helps!

    Hi,
    You can replace a select list's item by doing something like the following in javascript:
    function fillState(country)
         var statelist = document.getElementById("StateList");
         statelist.length=0;
         var opt = new Option;
         var statenames = getStateNames(country);
         var optioncount = 0;
         var isSelected = false;
         for (var n = 0; n < statenames.length; n++)
              opt = new Option;
              opt.value = statenames[n][0];
              opt.text = statenames[n][1];
              statelist.options[optioncount] = opt;
              optioncount++;
    Without knowing more about the data you get back, I couldn't tell you how to adjust the above to suit your needs.
    In this example, I have an array populated with state codes and names which I then loop through to add into the select list. The "statelist.length=0" line at the beginning clears out any previous data.
    Hopefully this should give you an idea of what's needed.
    Regards
    Andy

  • Problems after upgrade with dock settings?

    Hi all,
    I upgraded my 10.4 server to 10.5.2 server today. All appeared to go fine except for 1 stupid thing. On my mac mini clients also running 10.5.2 OSX the dock settings don't work. All I get is the finder icon and the trash icon. However on my iMac I get my normal dock settings? This is all very wierd. I tried re-attaching the minis to the server but still the same problem?
    Also when I login to WGM I have to log in as 'root' user? diradmin does not work? Is there a default username that I have forgotten?
    Cheers
    folks
    Chris

    Yes, most annoying... it works perfectly on Firefox 2.x. A not so-desirable solution is to go back to Google's Gmail "older interface"... see this control in the top menu after "settings." In this mode, the selection of email addresses when composing is working.
    Better still, Apple should fix this brokenness in Safari 3.x, likely an ajax problem!
    -- Denis

  • Javascript block through javascript.enabled false not working as expected in newer versions, any actual way?

    Since a few versions, around 24.0 or earlier, when you toggle javascript.enabled from true to false to block javascript, doesn't work after load a page.
    Further details:
    1.- load a page with javascript enabled
    2.- toggle javascript preference to block javascript (javascript.enabled from true to false)
    3.- if you interact with javascript elements = they still work
    This wasn't this way in earlier versions.
    You can check in the following page. You'll see that the only way to actually block javascript execution is to load the page with the preference javascript.enabled set to false (A.K.A. javascript blocked):
    http://www.geocities.ws/jothache/event_listener.html
    Note: to easy change javascript preferences, for those don't want to play with about:config you can use addons like QuickJava:
    https://addons.mozilla.org/en-US/firefox/addon/quickjava/
    I find that how it works now, in the latest versions, it is a VERY HUGE SECURITY ISSUE as javascript is never actually blocked when the preference is toggled and AJAX (httpXMLrequest through javascript) still works so the possibilities of lost of privacy inreases, as for example, mouse tracking and send it to the server, not only as the example scripts I posted above.
    The question is, is there anyway to really block javascript in the latests versions or should I report this as a bug?
    Regards.

    Hi guigs2,
    if there is no problem in open the bug ticket being a simple user I'll report by myself (if I haven't misunderstood you). (Confirm this and I'll do myself).
    About the AJAX problem, here we have a sample test that works after toggle the preference:
    http://www.w3schools.com/xml/xml_http.asp
    I know about noscript and I don't like it. I prefer to do manually (those measures and more). What bothered me is that even toggle the preference, what in the past did the job of stopping the execution of scripts, now doesn't. In about version 24 it was only happening to event listeners not being blocked (used nowadays for dynamic events assignments). Now is with every javascript code.
    About the tracking methods, I'm aware of HTTP tracking without any need of javascript. Even a simple "knock knock" on any kind of server leaves a trace.
    I was just pointing that this preference stopping doing its job (stopping scripts executions) has the worst sceneario in a security way with XMLHttpRequest calls.
    But one of the things that bothers me too, and it is not related to tracking, is that, in humble machines as mine, some javascript codes make drop whole performance and the preference toggle now does nothing, so the script keeps running without being able of doing anything and sometimes you don't have the option to load a page without javascript because you need some feature of that page that requires javascript what becomes "all or nothing".
    Regards.

  • Zimbra Security Question:  Allow / Block embedded javascript or tags?

    Technical requirement: Ability to send in plain text and rich text and HTML (limited HTML, no javascripting or harmful tags)
    Can javascript or tags be embedded in an email through the Zimbra interface?
    Also, Zimbra has developed ALE (AJAX Linking and Embedding), a technology that allows users to embed applets into e-mail. For example, users can share a live spreadsheet in e-mail, rather than sending copies back and forth. Are applets a potential security risk? Can they be blocked?
    Thanks for your time.

    Hi guigs2,
    if there is no problem in open the bug ticket being a simple user I'll report by myself (if I haven't misunderstood you). (Confirm this and I'll do myself).
    About the AJAX problem, here we have a sample test that works after toggle the preference:
    http://www.w3schools.com/xml/xml_http.asp
    I know about noscript and I don't like it. I prefer to do manually (those measures and more). What bothered me is that even toggle the preference, what in the past did the job of stopping the execution of scripts, now doesn't. In about version 24 it was only happening to event listeners not being blocked (used nowadays for dynamic events assignments). Now is with every javascript code.
    About the tracking methods, I'm aware of HTTP tracking without any need of javascript. Even a simple "knock knock" on any kind of server leaves a trace.
    I was just pointing that this preference stopping doing its job (stopping scripts executions) has the worst sceneario in a security way with XMLHttpRequest calls.
    But one of the things that bothers me too, and it is not related to tracking, is that, in humble machines as mine, some javascript codes make drop whole performance and the preference toggle now does nothing, so the script keeps running without being able of doing anything and sometimes you don't have the option to load a page without javascript because you need some feature of that page that requires javascript what becomes "all or nothing".
    Regards.

  • Firefox 6.0.2 keeps on crashing, problems with ajax calls

    Hi,
    I am using the jquery form plugin to make ajax calls on my sites, when i invoke the plugin and have Firebug open I get this message:
    Could not convert JavaScript argument arg 0 [nsISupports.QueryInterface]
    [Break On This Error] callback.data = aElem....getComputedStyle(callback.data, '');
    rfhelper32.js
    Firebug also tells me that it's limit has been reached 1571 entries shown.
    Can someone tell me why this is happening; is there a problem with Firefox that will be fixed. It's not happening in IE9
    Here is the information from a recent crash report (which may or not be related to the above problem!)
    AdapterDeviceID: 0a66
    AdapterVendorID: 10de
    Add-ons: [email protected]:3.0.4,{6AC85730-7D0F-4de0-B3FA-21142DD85326}:2.5.5,{8f8fe09b-0bd3-4470-bc1b-8cad42b8203a}:0.17,{e968fc70-8f95-4ab9-9e79-304de2a71ee1}:0.7.3,{f36c6cd1-da73-491d-b290-8fc9115bfa55}:2.2.0,{BBDA0591-3099-440a-AA10-41764D9DB4DB}:3.1,[email protected]:1.8.2,{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}:2011.7.1.3,{972ce4c6-7e08-4474-a285-3208198ce6fd}:6.0.2
    AvailableVirtualMemory: 174600192
    BuildID: 20110902133214
    CrashTime: 1316093326
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1315406279
    Notes: AdapterVendorID: 10de, AdapterDeviceID: 0a66, AdapterDriverVersion: 8.16.11.9104
    D3D10 Layers? D3D10 Layers-
    D3D9 Layers? D3D9 Layers-
    WebGL? WebGL-
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 160793
    StartupTime: 1316067225
    SystemMemoryUsePercentage: 86
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 2147352576
    URL: https://s-static.ak.fbcdn.net/connect/xd_proxy.php?version=3#cb=f1ae6be54ac01b4&origin=https%3A%2F%2Fwww.paypal-business.co.uk%2Ffd558408b2cb6c&relation=parent.parent&transport=postmessage&type=resize&height=20&ackData[id]=1&width=250
    Vendor: Mozilla
    Version: 6.0.2
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 :
    MSAFD Tcpip [UDP/IP] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IP] : 2 : 3 :
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 :
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    RSVP TCPv6 Service Provider : 2 : 1 :
    RSVP TCP Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP UDPv6 Service Provider : 2 : 2 :
    RSVP UDP Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{91C733AA-510D-41D3-B67A-4441103BAE50}] SEQPACKET 1 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{91C733AA-510D-41D3-B67A-4441103BAE50}] DATAGRAM 1 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{4A8E4D1C-24D8-40C3-BC41-D04B5D505F39}] SEQPACKET 5 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{4A8E4D1C-24D8-40C3-BC41-D04B5D505F39}] DATAGRAM 5 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{C8F77A1D-B3A2-4DE2-AE72-C377BBD10D9A}] SEQPACKET 7 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{C8F77A1D-B3A2-4DE2-AE72-C377BBD10D9A}] DATAGRAM 7 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{C8F77A1D-B3A2-4DE2-AE72-C377BBD10D9A}] SEQPACKET 8 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{C8F77A1D-B3A2-4DE2-AE72-C377BBD10D9A}] DATAGRAM 8 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{4A8E4D1C-24D8-40C3-BC41-D04B5D505F39}] SEQPACKET 6 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{4A8E4D1C-24D8-40C3-BC41-D04B5D505F39}] DATAGRAM 6 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{3D95D40E-1835-44C6-A621-968094D90452}] SEQPACKET 10 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{3D95D40E-1835-44C6-A621-968094D90452}] DATAGRAM 10 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D6AD3B6C-2F8E-49B4-BDCD-DB35518116E7}] SEQPACKET 9 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D6AD3B6C-2F8E-49B4-BDCD-DB35518116E7}] DATAGRAM 9 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{18908ACF-76C1-4139-8C1C-89DF049156C5}] SEQPACKET 4 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{18908ACF-76C1-4139-8C1C-89DF049156C5}] DATAGRAM 4 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{4112C824-372C-4014-87AE-1BC13EA6E4CD}] SEQPACKET 3 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{4112C824-372C-4014-87AE-1BC13EA6E4CD}] DATAGRAM 3 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{2E408326-9611-4C41-B766-C4CB82734986}] SEQPACKET 0 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{2E408326-9611-4C41-B766-C4CB82734986}] DATAGRAM 0 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{91C733AA-510D-41D3-B67A-4441103BAE50}] SEQPACKET 2 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{91C733AA-510D-41D3-B67A-4441103BAE50}] DATAGRAM 2 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    VMCI sockets DGRAM : 0 : 2 :
    VMCI sockets STREAM : 0 : 1 : C:\Program Files\VMware\VMware Workstation\vsocklib.dll
    This report also contains technical information about the state of the application when it crashed.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

Maybe you are looking for

  • Support Contract wref to sales order-how to get serial number

    Hi Experts, Below is the scenario Step 1:I sell product[supplied by thirdparty] in sales order  123456 Material number     Description      Qty material-0001         Printer             2 Step 2:While purchase it from 3rd party it will be having seri

  • OBIEE 11g Hierarchy expanding issue

    Hi Experts, I have an Analysis report which I display hierarchy and I have many reports which contain hierarchy. But I have a specific report which only expand up to 1 level only unlike my other Analysis reports which display the hierarchy up to the

  • DAO and CMT config...

    Hi.           I am using WLS 8.1 sp2 . I have a stateless session bean that uses a DAO for database access. It appears that the DAO is not participating in the transaction. Here is a very simple example, here is my slsb method:           public Strin

  • Brush cursor disappears when zoomed in.

    Hello, As the title states and like many of you on here, I am having mucho issues with PS CS4. I'm running a dell precision 490 with xp x64, a quad-core 2.6ghz, 16gb ram, and an nvidia quadro fx 4600. I can't see why I am having issues other than x64

  • N97 mini video out

    Hi, i was trying to view a video recorded in a n97 mini in a tv screen. i connected a video out that came with an older n85 and played the video on the phone. the video played on the phone but not on the tv. the manual says i can output the video lik