<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-15897</id>
	<title>Nabble - HTML_AJAX Dev/Support</title>
	<updated>2009-10-19T14:28:07Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/HTML_AJAX-Dev-Support-f15897.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML_AJAX-Dev-Support-f15897.html" />
	<subtitle type="html">Development and Support Mailing list for HTML_AJAX. See &lt;a href=&quot;http://htmlajax.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://htmlajax.org/&lt;/a&gt;&amp;nbsp;for more details. Any question about HTML_AJAX including how to use it is welcome.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-25965966</id>
	<title>Re: Simple Ajax request error</title>
	<published>2009-10-19T14:28:07Z</published>
	<updated>2009-10-19T14:28:07Z</updated>
	<author>
		<name>traplist</name>
	</author>
	<content type="html">If you are new to javascript and ajax in general I would stick to the normal method of coding and define each function as its own instead of trying to declare the function on the spot. It will make debugging much easier. I would also recommend you read this article to get a great understanding of ajax and how everything works:
&lt;br&gt;&lt;a href=&quot;http://www.amusingmarlow.com/?p=506&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Simple Ajax Request With PHP and Javascript&lt;/a&gt;&lt;br&gt;&lt;br&gt;Just substitute the PHP code for your JSP code and all should work.
&lt;br&gt;&lt;br&gt;As for your script, I would run the following and tell me what the alert says that you get back. I think the problem may be in your .jsp file because I tested the code in firefox and it seems to work fine on my end (I just replaced the home.jsp with a basic php hello world script). Also what browser are you using to test this? Sometimes a send(null) can cause issues depending on the browser.
&lt;br&gt;&lt;br&gt;&amp;lt;html&amp;gt;&amp;lt;body&amp;gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;function ajaxFunction()
&lt;br&gt;{ &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var xmlHttp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp;// Firefox, Opera 8.0+, Safari &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new XMLHttpRequest(); &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp;// Internet Explorer &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new ActiveXObject(&amp;quot;Msxml2.XMLHTTP&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Your browser does not support AJAX!&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return false; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; xmlHttp.onreadystatechange=function()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(xmlHttp.readyState==4)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.myForm.time.value=xmlHttp.responseText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;alert(xmlHttp.status);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp.open(&amp;quot;GET&amp;quot;,&amp;quot;/home.jsp&amp;quot;,true);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp.send(null); &amp;nbsp;
&lt;br&gt;}
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;form name=&amp;quot;myForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Name: &amp;lt;input type=&amp;quot;text&amp;quot; onkeyup=&amp;quot;ajaxFunction();&amp;quot; name=&amp;quot;username&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Time: &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;time&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;/form&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;msg2ajay wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;hello,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; i am very new to Ajax i have tried an example but it showing some error can anybady tell me where i am doing mistake... my coding is as follows
&lt;br&gt;&lt;br&gt;ajax.html:
&lt;br&gt;-----------
&lt;br&gt;&lt;br&gt;&amp;lt;html&amp;gt;&amp;lt;body&amp;gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;function ajaxFunction()
&lt;br&gt;{ &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var xmlHttp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp;// Firefox, Opera 8.0+, Safari &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new XMLHttpRequest(); &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp;// Internet Explorer &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new ActiveXObject(&amp;quot;Msxml2.XMLHTTP&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlHttp=new ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Your browser does not support AJAX!&amp;quot;); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return false; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; xmlHttp.onreadystatechange=function()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(xmlHttp.readyState==4)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.myForm.time.value=xmlHttp.responseText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; xmlHttp.open(&amp;quot;GET&amp;quot;,&amp;quot;/home.jsp&amp;quot;,true);
&lt;br&gt;&amp;nbsp; &amp;nbsp; xmlHttp.send(null); &amp;nbsp;
&lt;br&gt;}
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;form name=&amp;quot;myForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Name: &amp;lt;input type=&amp;quot;text&amp;quot; onkeyup=&amp;quot;ajaxFunction();&amp;quot; name=&amp;quot;username&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Time: &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;time&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;/form&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;home.jsp:
&lt;br&gt;---------
&lt;br&gt;&amp;lt;html&amp;gt;
&lt;br&gt;&amp;lt;head&amp;gt;
&lt;br&gt;&amp;lt;/head&amp;gt;
&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&amp;lt;%
&lt;br&gt;response.expires=-1
&lt;br&gt;response.write(time)
&lt;br&gt;%&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;i have placed two files in same folder...
&lt;br&gt;&lt;br&gt;thanQ in Adv.
&lt;br&gt;Ajay
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Simple-Ajax-request-error-tp12914103p25965966.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19740283</id>
	<title>AJAX request cannot be created - (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open] error</title>
	<published>2008-09-30T04:29:43Z</published>
	<updated>2008-09-30T04:29:43Z</updated>
	<author>
		<name>Amit Jagtap</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I am trying to develop a generic AJAX object so that I can reuse it across my application.
&lt;br&gt;Following is the code for it - 
&lt;br&gt;function async(url,cbFun){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.callBackcbFun;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.url=url;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.initRequest=function (){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (window.XMLHttpRequest) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req = new XMLHttpRequest();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if (window.ActiveXObject) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req = new ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.doAjax=function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.initRequest();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.callBack = cbFun;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (this.req != null){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req.onreadystatechange = function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (this.req.readyState == 4){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.callBack(this.req.responseText,this.req.responseXML,this.req.readyState,this.req);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //	Invoke Stalker...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }			
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req.open(&amp;quot;GET&amp;quot;, url, true);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.req.send(null);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert (&amp;quot;No Request Object created!!!&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;But, I recieve the following error - 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Error: uncaught exception: [Exception... &amp;quot;Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open]&amp;quot; &amp;nbsp;nsresult: &amp;quot;0x80070057 (NS_ERROR_ILLEGAL_VALUE)&amp;quot; &amp;nbsp;location: &amp;quot;JS frame :: &lt;a href=&quot;http://localhost:8080/wf/script/async.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/wf/script/async.js&lt;/a&gt;&amp;nbsp;:: anonymous :: line 29&amp;quot; &amp;nbsp;data: no]
&lt;br&gt;&lt;br&gt;Could someone please help me about this..
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Amit</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-request-cannot-be-created---%28NS_ERROR_ILLEGAL_VALUE%29--nsIXMLHttpRequest.open--error-tp19740283p19740283.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19178996</id>
	<title>Re: loading message delay</title>
	<published>2008-08-27T04:21:59Z</published>
	<updated>2008-08-27T04:21:59Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">I guess the workaround is just to set the display to block at your application's own leisure...
&lt;br&gt;&lt;br&gt;David Sanders wrote:
&lt;br&gt;&amp;gt; ... is currently set to 500ms (hardcoded) is this something that's worth adding to an option somewhere?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19178996&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/loading-message-delay-tp19178583p19178996.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19178583</id>
	<title>loading message delay</title>
	<published>2008-08-27T03:51:40Z</published>
	<updated>2008-08-27T03:51:40Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">... is currently set to 500ms (hardcoded) is this something that's worth adding to an option somewhere?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19178583&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/loading-message-delay-tp19178583p19178583.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19156470</id>
	<title>Re: Authentication on the server side</title>
	<published>2008-08-25T23:25:34Z</published>
	<updated>2008-08-25T23:25:34Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">David Sanders wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Probably is a dumb question but I still don't really understand the workings of HTML_AJAX:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there any way to attach a session cookie to the client side so that I may wrap my server call with PEAR::Auth?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dave
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Html_ajax-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19156470&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;All the page cookies are sent on the ajax request. &amp;nbsp;So once you login 
&lt;br&gt;you can track things with the standard cookies.
&lt;br&gt;&lt;br&gt;You can enforce the auth in the registered methods or at the top of the 
&lt;br&gt;server file or whatever your ajax entry point is.
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19156470&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Authentication-on-the-server-side-tp19156025p19156470.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19156025</id>
	<title>Authentication on the server side</title>
	<published>2008-08-25T22:31:31Z</published>
	<updated>2008-08-25T22:31:31Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Probably is a dumb question but I still don't really understand the workings of HTML_AJAX:
&lt;br&gt;&lt;br&gt;Is there any way to attach a session cookie to the client side so that I may wrap my server call with PEAR::Auth?
&lt;br&gt;&lt;br&gt;Dave
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19156025&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Authentication-on-the-server-side-tp19156025p19156025.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18952444</id>
	<title>Problem synchronizing Ajax calls</title>
	<published>2008-08-12T13:55:47Z</published>
	<updated>2008-08-12T13:55:47Z</updated>
	<author>
		<name>JavaRunner</name>
	</author>
	<content type="html">I have a JSP that renders up to 6 SELECT elements. Each SELECT is dependent on the preceding SELECT.
&lt;br&gt;At startup the app grabs a default value for each SELECT and uses this value to pre-select an option.
&lt;br&gt;This option value then becomes a retrieval argument value in a SQL stmt that retrieves data for the following SELECT.
&lt;br&gt;My problem is this:
&lt;br&gt;After the first Ajax call the functions containing the next Ajax call is firing before the code to pre-select the preceding SELECT has completed.
&lt;br&gt;Hence an incorrect argument is passed to the SQL.
&lt;br&gt;I have tried using setTimeout but IE gets in the way and reports 'Slow running script bla bla'. Setting various Advanced IE options
&lt;br&gt;suggested by several Google searches hasn't helped. One suggestion involved setting a Registry entry. That did not work either, and
&lt;br&gt;since this is commercial software it's difficult to ensure all users make the necessary Registry changes even if it had worked.
&lt;br&gt;I've also tried setInterval. This will fire a function that can test for a specific variable value that I can set when the
&lt;br&gt;scripts have completed, and then I clearInterval when I find the value has been set.
&lt;br&gt;This doesn't work too well either.
&lt;br&gt;Using IE is mandatory in this case. :evil: :evil:
&lt;br&gt;Any one have any suggestions that might resolve this issue?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-synchronizing-Ajax-calls-tp18952444p18952444.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18026210</id>
	<title>Re: HTML_AJAX.formSubmit dropping &quot;+&quot; characters</title>
	<published>2008-06-20T02:37:08Z</published>
	<updated>2008-06-20T02:37:08Z</updated>
	<author>
		<name>superfly</name>
	</author>
	<content type="html">hey wade,
&lt;br&gt;have you tried to utf8_en/decode() - this helped me when i got troubles with PEAR_AJAX and special characters ;)
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;franz
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Wade Hedgren wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I have a form with a select element with one of the option's values = &amp;quot;MlcCre+Cal+/+&amp;quot;.&amp;nbsp; When the form is submitted via &amp;quot;HTML_AJAX.formSubmit (frm, post_callback)&amp;quot; the &amp;quot;+&amp;quot; characters are stripped from the string in the resulting POST array.&amp;nbsp; When submitting the same string via a text element, the string &amp;quot;MlcCre+Cal&amp;quot; is returned in the POST array. I'm using html_ajax_lite as my client. Also, on another subject: I'm interested in contributing to this package by working on your documentation.&amp;nbsp; How can I get started? Cheers, Wade Wade W. Hedgren Director of IT University of Cincinnati Dept. of Psychiatry Personal home Page: &lt;a href=&quot;http://www.psychiatry.uc.edu/Wade&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu/Wade&lt;/a&gt;&amp;nbsp;Department Site: &lt;a href=&quot;http://www.psychiatry.uc.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;Html_ajax-devel@lists.bluga.net
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML_AJAX.formSubmit-dropping-%22%2B%22-characters-tp17823513p18026210.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17833840</id>
	<title>Re: HTML_AJAX.formSubmit dropping &quot;+&quot; characters</title>
	<published>2008-06-13T16:37:45Z</published>
	<updated>2008-06-13T16:37:45Z</updated>
	<author>
		<name>Laurent Yaish</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body bgcolor=&quot;#FFFFFF&quot;&gt;&lt;div&gt;Documentation would be great!&lt;br&gt;&lt;br&gt;Sent from my iPhone&lt;/div&gt;&lt;div&gt;&lt;br&gt;On Jun 13, 2008, at 6:31 AM, &quot;Wade Hedgren&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17833840&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wade@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;I have a form with a select element with one of the option's values = &quot;MlcCre+Cal+/+&quot;.&amp;nbsp; When the form is submitted via &quot;HTML_AJAX.formSubmit (frm, post_callback)&quot; the &quot;+&quot; characters are stripped from the string in the resulting POST array.&amp;nbsp; When submitting the same string via a text element, the string &quot;MlcCre+Cal&quot; is returned in the POST array.&lt;br&gt;&lt;br&gt;I'm using html_ajax_lite as my client.&lt;br&gt;&lt;br&gt;Also, on another subject: I'm interested in contributing to this package by working on your documentation.&amp;nbsp; How can I get started?&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Wade&lt;br&gt;&lt;br&gt;Wade W. Hedgren&lt;br&gt;Director of IT&lt;br&gt;University of Cincinnati&lt;br&gt;Dept. of Psychiatry&lt;br&gt;Personal home Page: &lt;a href=&quot;http://www.psychiatry.uc.edu/Wade&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://www.psychiatry.uc.edu/Wade&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu/Wade&lt;/a&gt;&lt;/a&gt;&lt;br&gt;Department Site: &lt;a href=&quot;http://www.psychiatry.uc.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://www.psychiatry.uc.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu&lt;/a&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;&lt;span&gt;_______________________________________________&lt;/span&gt;&lt;br&gt;&lt;span&gt;Html_ajax-devel mailing list&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17833840&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17833840&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML_AJAX.formSubmit-dropping-%22%2B%22-characters-tp17823513p17833840.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17827691</id>
	<title>Re: HTML_AJAX.formSubmit dropping &quot;+&quot; characters</title>
	<published>2008-06-13T09:45:55Z</published>
	<updated>2008-06-13T09:45:55Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">Wade: sounds like an encoding problem spaces can be encoded as + so i'm 
&lt;br&gt;guessing thats the problem can you open up a bug
&lt;br&gt;&lt;br&gt;As far as writing docs there are a couple options. &amp;nbsp;You can either start 
&lt;br&gt;making edits in the wiki, or if you want to target the pear manual 
&lt;br&gt;you'll want to get on the pear-doc list and ask for some help getting 
&lt;br&gt;started with the setup for that.
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;Wade Hedgren wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have a form with a select element with one of the option's values = 
&lt;br&gt;&amp;gt; &amp;quot;MlcCre+Cal+/+&amp;quot;. &amp;nbsp;When the form is submitted via &amp;quot;HTML_AJAX.formSubmit 
&lt;br&gt;&amp;gt; (frm, post_callback)&amp;quot; the &amp;quot;+&amp;quot; characters are stripped from the string 
&lt;br&gt;&amp;gt; in the resulting POST array. &amp;nbsp;When submitting the same string via a 
&lt;br&gt;&amp;gt; text element, the string &amp;quot;MlcCre+Cal&amp;quot; is returned in the POST array.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm using html_ajax_lite as my client.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also, on another subject: I'm interested in contributing to this 
&lt;br&gt;&amp;gt; package by working on your documentation. &amp;nbsp;How can I get started?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wade
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wade W. Hedgren
&lt;br&gt;&amp;gt; Director of IT
&lt;br&gt;&amp;gt; University of Cincinnati
&lt;br&gt;&amp;gt; Dept. of Psychiatry
&lt;br&gt;&amp;gt; Personal home Page: &lt;a href=&quot;http://www.psychiatry.uc.edu/Wade&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu/Wade&lt;/a&gt;&lt;br&gt;&amp;gt; Department Site: &lt;a href=&quot;http://www.psychiatry.uc.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Html_ajax-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17827691&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17827691&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML_AJAX.formSubmit-dropping-%22%2B%22-characters-tp17823513p17827691.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17823513</id>
	<title>HTML_AJAX.formSubmit dropping &quot;+&quot; characters</title>
	<published>2008-06-13T06:31:48Z</published>
	<updated>2008-06-13T06:31:48Z</updated>
	<author>
		<name>Wade Hedgren</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body&gt;I have a form with a select element with one of the option's values = &quot;MlcCre+Cal+/+&quot;.&amp;nbsp; When the form is submitted via &quot;HTML_AJAX.formSubmit (frm, post_callback)&quot; the &quot;+&quot; characters are stripped from the string in the resulting POST array.&amp;nbsp; When submitting the same string via a text element, the string &quot;MlcCre+Cal&quot; is returned in the POST array.&lt;br&gt;&lt;br&gt;I'm using html_ajax_lite as my client.&lt;br&gt;&lt;br&gt;Also, on another subject: I'm interested in contributing to this package by working on your documentation.&amp;nbsp; How can I get started?&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Wade&lt;br&gt;&lt;br&gt;Wade W. Hedgren&lt;br&gt;Director of IT&lt;br&gt;University of Cincinnati&lt;br&gt;Dept. of Psychiatry&lt;br&gt;Personal home Page: &lt;a href=&quot;http://www.psychiatry.uc.edu/Wade&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu/Wade&lt;/a&gt;&lt;br&gt;Department Site: &lt;a href=&quot;http://www.psychiatry.uc.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.psychiatry.uc.edu&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/body&gt;&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17823513&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML_AJAX.formSubmit-dropping-%22%2B%22-characters-tp17823513p17823513.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17685963</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-05T23:38:18Z</published>
	<updated>2008-06-05T23:38:18Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">David Sanders wrote:
&lt;br&gt;&amp;gt; Joshua Eichorn wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;gt; Changing the default would be ok, does anyone have an example style that
&lt;br&gt;&amp;gt;&amp;gt; works falls back to absolute position in IE6 while being fixed in 
&lt;br&gt;&amp;gt;&amp;gt; everything else?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does the &amp;quot;underscore hack&amp;quot; work when specified through the dom with javascript?
&lt;br&gt;&lt;br&gt;btw, I just remembered, when I wrote quickform_rule_spelling, I googled a way to 
&lt;br&gt;get a workaround for ie6 for fixed positioning using expressions. &amp;nbsp;The result 
&lt;br&gt;was acceptable, with the exception that when you scrolled it appeared jerky/jumpy.
&lt;br&gt;&lt;br&gt;I think this may have been the page that I got it from:
&lt;br&gt;&lt;a href=&quot;http://www.howtocreate.co.uk/fixedPosition.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.howtocreate.co.uk/fixedPosition.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17685963&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17685963.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17683077</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-05T18:56:16Z</published>
	<updated>2008-06-05T18:56:16Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Joshua Eichorn wrote:
&lt;br&gt;&amp;nbsp; &amp;gt; Changing the default would be ok, does anyone have an example style that
&lt;br&gt;&amp;gt; works falls back to absolute position in IE6 while being fixed in 
&lt;br&gt;&amp;gt; everything else?
&lt;br&gt;&lt;br&gt;Does the &amp;quot;underscore hack&amp;quot; work when specified through the dom with javascript?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17683077&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17683077.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17674616</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-05T09:46:35Z</published>
	<updated>2008-06-05T09:46:35Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">David Sanders wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Laurent Yaish wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; You can style the 'Loading' div however you want
&lt;br&gt;&amp;gt;&amp;gt; all you need to do is create a div with 'id = HTML_AJAX_LOADING' and 
&lt;br&gt;&amp;gt;&amp;gt; apply whatever css properties you'd like
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ah ok thanks, I didn't know this... But it'd be nice if the default was like 
&lt;br&gt;&amp;gt; this... &amp;nbsp;It seems to make more sense ;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;Changing the default would be ok, does anyone have an example style that 
&lt;br&gt;works falls back to absolute position in IE6 while being fixed in 
&lt;br&gt;everything else?
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17674616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17674616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17663166</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-04T23:36:13Z</published>
	<updated>2008-06-04T23:36:13Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Laurent Yaish wrote:
&lt;br&gt;&amp;gt; You can style the 'Loading' div however you want
&lt;br&gt;&amp;gt; all you need to do is create a div with 'id = HTML_AJAX_LOADING' and 
&lt;br&gt;&amp;gt; apply whatever css properties you'd like
&lt;br&gt;&lt;br&gt;Ah ok thanks, I didn't know this... But it'd be nice if the default was like 
&lt;br&gt;this... &amp;nbsp;It seems to make more sense ;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17663166&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17663166.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17662252</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-04T22:11:10Z</published>
	<updated>2008-06-04T22:11:10Z</updated>
	<author>
		<name>Laurent Yaish</name>
	</author>
	<content type="html">You can style the &amp;#39;Loading&amp;#39; div however you want&lt;br&gt;all you need to do is create a div with &amp;#39;id = HTML_AJAX_LOADING&amp;#39; and apply whatever css properties you&amp;#39;d like&lt;br&gt;&lt;br&gt;Laurent&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Wed, Jun 4, 2008 at 9:28 PM, David Sanders &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17662252&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dsanders@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div class=&quot;Ih2E3d&quot;&gt;David Sanders wrote:&lt;br&gt;
&amp;gt; Instead of raising another bug report I thought I&amp;#39;d make use of the mailing list&lt;br&gt;
&amp;gt; again ^^.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Can we have it so that the old Google style &amp;quot;Loading...&amp;quot; message is fixed&lt;br&gt;
&amp;gt; instead of absolute. &amp;nbsp;It&amp;#39;s just that if you scroll down you don&amp;#39;t see the message ;)&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;Oh and can we make the z-index something like 1000 so that it appears over the&lt;br&gt;
top of other divs with z-indexes?&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
 &amp;nbsp; &amp;nbsp; David Sanders&lt;br&gt;
 &amp;nbsp; &amp;nbsp; shangxiao&lt;br&gt;
_______________________________________________&lt;br&gt;
Html_ajax-devel mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17662252&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17662252&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17662252.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17661831</id>
	<title>Re: Loading... message position</title>
	<published>2008-06-04T21:28:49Z</published>
	<updated>2008-06-04T21:28:49Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">David Sanders wrote:
&lt;br&gt;&amp;gt; Instead of raising another bug report I thought I'd make use of the mailing list 
&lt;br&gt;&amp;gt; again ^^.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can we have it so that the old Google style &amp;quot;Loading...&amp;quot; message is fixed 
&lt;br&gt;&amp;gt; instead of absolute. &amp;nbsp;It's just that if you scroll down you don't see the message ;)
&lt;br&gt;&lt;br&gt;Oh and can we make the z-index something like 1000 so that it appears over the 
&lt;br&gt;top of other divs with z-indexes?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17661831&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17661831.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17661793</id>
	<title>Loading... message position</title>
	<published>2008-06-04T21:24:42Z</published>
	<updated>2008-06-04T21:24:42Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Instead of raising another bug report I thought I'd make use of the mailing list 
&lt;br&gt;again ^^.
&lt;br&gt;&lt;br&gt;Can we have it so that the old Google style &amp;quot;Loading...&amp;quot; message is fixed 
&lt;br&gt;instead of absolute. &amp;nbsp;It's just that if you scroll down you don't see the message ;)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17661793&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading...-message-position-tp17661793p17661793.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17616546</id>
	<title>Re: SingleBuffer Queue Behaviour</title>
	<published>2008-06-02T23:00:26Z</published>
	<updated>2008-06-02T23:00:26Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Joshua Eichorn wrote:
&lt;br&gt;&amp;gt; Added an option to remove that sounds reasonable. &amp;nbsp;If you send me a 
&lt;br&gt;&amp;gt; patch i will get it in for the next bug fix release which should be in 
&lt;br&gt;&amp;gt; the next week or so.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -josh
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Ok great, I've already started to play around with the javasscript. &amp;nbsp;One thing I 
&lt;br&gt;didn't realise is that it will only ever send that first request once per page 
&lt;br&gt;load because the interval id is never cleared unless stop() is called. &amp;nbsp;Is this 
&lt;br&gt;correct?
&lt;br&gt;&lt;br&gt;Also, can you tell me what the effect of setting &amp;quot;singleOutstandingRequest&amp;quot; 
&lt;br&gt;should be?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;David Sanders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;shangxiao
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17616546&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SingleBuffer-Queue-Behaviour-tp17556963p17616546.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17605631</id>
	<title>Re: SingleBuffer Queue Behaviour</title>
	<published>2008-06-02T09:37:54Z</published>
	<updated>2008-06-02T09:37:54Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">shangxiao wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just a question about the behaviour of the SingleBuffer queue.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is it worth adding an option to disable the immediate sending of the first
&lt;br&gt;&amp;gt; request? &amp;nbsp;The reason why I ask is because as I was using
&lt;br&gt;&amp;gt; HTML_QuickForm_Livesearch and tracking the ajax requests on my server while
&lt;br&gt;&amp;gt; playing with the interval delay, I found it strange that for longer delay
&lt;br&gt;&amp;gt; times, I was still getting a request for the first character that I had
&lt;br&gt;&amp;gt; typed. &amp;nbsp;At first I thought this was a bug and then I read the javascript and
&lt;br&gt;&amp;gt; found that it was deliberate. &amp;nbsp;My intention is to get a livesearch text
&lt;br&gt;&amp;gt; field happening but delay sending a request to the server until the user had
&lt;br&gt;&amp;gt; stopped typing in the text field. &amp;nbsp;So would this be a reasonable request? &amp;nbsp;I
&lt;br&gt;&amp;gt; could imagine that in the future I would want similar functionality.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;Added an option to remove that sounds reasonable. &amp;nbsp;If you send me a 
&lt;br&gt;patch i will get it in for the next bug fix release which should be in 
&lt;br&gt;the next week or so.
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17605631&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SingleBuffer-Queue-Behaviour-tp17556963p17605631.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17564191</id>
	<title>Test 0.5.6</title>
	<published>2008-05-30T10:23:08Z</published>
	<updated>2008-05-30T10:23:08Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">Can you guys test 0.5.6 for me before I do a release
&lt;br&gt;&lt;br&gt;I moved svn around a bunch and i want to make sure i didn't break anything
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://bluga.net/projects/HTML_AJAX/HTML_AJAX-0.5.6.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bluga.net/projects/HTML_AJAX/HTML_AJAX-0.5.6.tgz&lt;/a&gt;&lt;br&gt;-josh
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17564191&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Test-0.5.6-tp17564191p17564191.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17556963</id>
	<title>SingleBuffer Queue Behaviour</title>
	<published>2008-05-30T04:42:27Z</published>
	<updated>2008-05-30T04:42:27Z</updated>
	<author>
		<name>shangxiao</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;Just a question about the behaviour of the SingleBuffer queue.
&lt;br&gt;&lt;br&gt;Is it worth adding an option to disable the immediate sending of the first request? &amp;nbsp;The reason why I ask is because as I was using HTML_QuickForm_Livesearch and tracking the ajax requests on my server while playing with the interval delay, I found it strange that for longer delay times, I was still getting a request for the first character that I had typed. &amp;nbsp;At first I thought this was a bug and then I read the javascript and found that it was deliberate. &amp;nbsp;My intention is to get a livesearch text field happening but delay sending a request to the server until the user had stopped typing in the text field. &amp;nbsp;So would this be a reasonable request? &amp;nbsp;I could imagine that in the future I would want similar functionality.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;David</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SingleBuffer-Queue-Behaviour-tp17556963p17556963.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17418231</id>
	<title>Re: Unable to find javascript file:	C:\php5\pear\data\HTML_AJAX\js\HTML_AJAX.js</title>
	<published>2008-05-22T20:57:17Z</published>
	<updated>2008-05-22T20:57:17Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Do you have a pear data dir.&amp;nbsp; The JavaScript files get installed to
that by the installer.&lt;br&gt;
&lt;br&gt;
If you moved things around after install time then things will get
broken.&lt;br&gt;
&lt;br&gt;
There is a property you can set to update the location,
jsClientLocation i think (though that could be wrong)&lt;br&gt;
&lt;br&gt;
-josh&lt;br&gt;
Ian Sweeney wrote:
&lt;blockquote cite=&quot;mid:000001c8bbfb$f1b5fb80$d521f280$@me.uk&quot; type=&quot;cite&quot;&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; &quot;&gt;
  &lt;meta name=&quot;Generator&quot; content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
  
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
  &lt;div class=&quot;Section1&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;Error message is&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;Unable to find javascript file:
C:\php5\pear\data\HTML_AJAX\js\HTML_AJAX.js&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;Any ideas?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;server.php&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: red;&quot;&gt;&amp;lt;?php&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: gray;&quot;&gt;//a
session is required(you can also set
session.auto_start=1 in php.ini)&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;session_start();&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: blue;&quot;&gt;include&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;span style=&quot;color: rgb(0, 130, 0);&quot;&gt;'HTML/AJAX/Server.php'&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(102, 0, 0);&quot;&gt;$server&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;span style=&quot;color: black;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;new&lt;/span&gt; &lt;span style=&quot;color: black;&quot;&gt;HTML_AJAX_Server();&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(102, 0, 0);&quot;&gt;$server&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;-&amp;gt;ajax-&amp;gt;php4CompatCase&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;span style=&quot;color: black;&quot;&gt;=&lt;/span&gt;
  &lt;span style=&quot;color: blue;&quot;&gt;true&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(102, 0, 0);&quot;&gt;$server&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;-&amp;gt;handleRequest();&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: red;&quot;&gt;?&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;test.htm&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;html&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;script
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;type&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;text/javascript&quot;
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;src&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;server.php?client=all&quot;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;script&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;div
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;id&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;target&quot;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;I'm
the target&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;div&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;script
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;type&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;text/javascript&quot;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;HTML_AJAX.replace(&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(142, 0, 255);&quot;&gt;'target'&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(142, 0, 255);&quot;&gt;'output.php'&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;);&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;script&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;form&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;input
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;type&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;button&quot;
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;onclick&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;HTML_AJAX.replace('target','output.php');&quot;
  &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(127, 0, 127);&quot;&gt;value&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(42, 0, 255);&quot;&gt;&quot;Update
target&quot;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;form&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: rgb(63, 127, 127);&quot;&gt;html&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: teal;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
  &lt;/div&gt;
  &lt;pre wrap=&quot;&quot;&gt;
&lt;hr size=&quot;4&quot; width=&quot;90%&quot;&gt;
_______________________________________________
Html_ajax-devel mailing list
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17418231&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;
  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17418231&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Unable-to-find-javascript-file%3A-C%3A%5Cphp5%5Cpear%5Cdata%5CHTML_AJAX%5Cjs%5CHTML_AJAX.js-tp17402006p17418231.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17402006</id>
	<title>Unable to find javascript file: C:\php5\pear\data\HTML_AJAX\js\HTML_AJAX.js</title>
	<published>2008-05-22T04:06:52Z</published>
	<updated>2008-05-22T04:06:52Z</updated>
	<author>
		<name>spr12ian</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-GB link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;Error message is&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Unable to find javascript file: C:\php5\pear\data\HTML_AJAX\js\HTML_AJAX.js&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Any ideas?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;server.php&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:red'&gt;&amp;lt;?php&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:gray'&gt;//a session is required(you can also set
session.auto_start=1 in php.ini)&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:black'&gt;session_start();&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:blue'&gt;include&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;'&gt; &lt;span style='color:#008200'&gt;'HTML/AJAX/Server.php'&lt;/span&gt;&lt;span style='color:black'&gt;;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#660000'&gt;$server&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;'&gt; &lt;span style='color:black'&gt;=&lt;/span&gt; &lt;span style='color:blue'&gt;new&lt;/span&gt; &lt;span style='color:black'&gt;HTML_AJAX_Server();&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#660000'&gt;$server&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;-&amp;gt;ajax-&amp;gt;php4CompatCase&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt; &lt;span style='color:black'&gt;=&lt;/span&gt;
&lt;span style='color:blue'&gt;true&lt;/span&gt;&lt;span style='color:black'&gt;;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#660000'&gt;$server&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;-&amp;gt;handleRequest();&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:red'&gt;?&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;test.htm&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;html&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;script &lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;type&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;text/javascript&amp;quot;
&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;src&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;server.php?client=all&amp;quot;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;script&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;div &lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;id&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;target&amp;quot;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;I'm the target&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;/&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;div&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;script &lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;type&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:black'&gt;HTML_AJAX.replace(&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#8E00FF'&gt;'target'&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;,&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#8E00FF'&gt;'output.php'&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;);&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;/&lt;/span&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;script&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:
10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:black'&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;form&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:black'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;input &lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;type&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;button&amp;quot;
&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;onclick&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;HTML_AJAX.replace('target','output.php');&amp;quot;
&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#7F007F'&gt;value&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;=&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#2A00FF'&gt;&amp;quot;Update
target&amp;quot;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Courier New&quot;;color:black'&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;lt;/&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:#3F7F7F'&gt;form&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:teal'&gt;&amp;lt;/&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:#3F7F7F'&gt;html&lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:teal'&gt;&amp;gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17402006&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Unable-to-find-javascript-file%3A-C%3A%5Cphp5%5Cpear%5Cdata%5CHTML_AJAX%5Cjs%5CHTML_AJAX.js-tp17402006p17402006.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16140028</id>
	<title>Re: Contents of Html_ajax-devel digest...</title>
	<published>2008-02-24T06:12:18Z</published>
	<updated>2008-02-24T06:12:18Z</updated>
	<author>
		<name>Prashant Deshmukh</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;i&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel-request@...&lt;/a&gt;&lt;/i&gt;&lt;/b&gt; wrote:&lt;blockquote class=&quot;replbq&quot; style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt; Send Html_ajax-devel mailing list submissions to&lt;br&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel@...&lt;/a&gt;&lt;br&gt;&lt;br&gt;To subscribe or unsubscribe via the World Wide Web, visit&lt;br&gt; http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;br&gt;or, via email, send a message with subject or body 'help' to&lt;br&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel-request@...&lt;/a&gt;&lt;br&gt;&lt;br&gt;You can reach the person managing the list at&lt;br&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel-owner@...&lt;/a&gt;&lt;br&gt;&lt;br&gt;When replying, please edit your Subject line so it is more specific&lt;br&gt;than &quot;Re: Contents of Html_ajax-devel digest...&quot;&lt;br&gt;&lt;br&gt;&lt;br&gt;Today's Topics:&lt;br&gt;&lt;br&gt;   1. Re: AJAX Error 0x80040111 (NS_ERROR_NOT_AVAILABLE)&lt;br&gt;      (Joshua Eichorn)&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------&lt;br&gt;&lt;br&gt;Message: 1&lt;br&gt;Date: Thu, 21 Feb 2008 12:48:07 -0700&lt;br&gt;From:
 Joshua Eichorn &lt;josh@bluga.net&gt;&lt;br&gt;Subject: Re: [HTML_AJAX-devel] AJAX Error 0x80040111&lt;br&gt; (NS_ERROR_NOT_AVAILABLE)&lt;br&gt;To: kamo &lt;joaofgo@gmail.com&gt;&lt;br&gt;Cc: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel@...&lt;/a&gt;&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;47BDD577.4040502@...&lt;/a&gt;&amp;gt;&lt;br&gt;Content-Type: text/plain; charset=ISO-8859-1; format=flowed&lt;br&gt;&lt;br&gt;Hey,&lt;br&gt;&lt;br&gt;I dont really have time to help I would recommend using a library to &lt;br&gt;handle your AJAX needs either HTML_AJAX or something else.&lt;br&gt;&lt;br&gt;-josh&lt;br&gt;kamo wrote:&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;  &lt;br&gt;&amp;gt;  &amp;gt; Hi!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;  Thank you for the reply. I'm not sure how to adapt the sample code you sent&lt;br&gt;&amp;gt; me to my case, due to my dreadful Javascript coding abilities. Although I&lt;br&gt;&amp;gt; understand the inner logic I don't recognize some other underlying layers of&lt;br&gt;&amp;gt; functioning. If I sent you my AJAX Javascript code could you kindly try to&lt;br&gt;&amp;gt; adapt and comment it. &lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; The thing is that at this moment I am implementing some GIS functions on&lt;br&gt;&amp;gt;
 PHP/PostgreSQL/PostGIS that are rather complex and time demanding. Also if&lt;br&gt;&amp;gt; you agree I would be very proud to make a reference to your efforts on my&lt;br&gt;&amp;gt; MSc or other related works.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;  -- Best regards&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;  &lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; JoshuaEichorn wrote:&lt;br&gt;&amp;gt;   &lt;br&gt;&amp;gt;&amp;gt; Your not in the correct state to read that variable.&lt;br&gt;&amp;gt;&amp;gt; Check out http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js for an &lt;br&gt;&amp;gt;&amp;gt; example on how it should be done.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; _readyStateChangeCallback is the method that checks the status&lt;br&gt;&amp;gt;&amp;gt; -josh&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;     &lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;   &lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Html_ajax-devel mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;&lt;br&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;br&gt;&lt;br&gt;&lt;br&gt;End of Html_ajax-devel Digest, Vol 30, Issue
 3&lt;br&gt;**********************************************&lt;br&gt;&lt;/joaofgo@gmail.com&gt;&lt;/josh@bluga.net&gt;&lt;/blockquote&gt;&lt;br&gt;&lt;BR&gt;&lt;BR&gt;&lt;div&gt;&lt;strong&gt;&lt;font size=&quot;6&quot;&gt;&lt;font size=&quot;4&quot;&gt;&lt;em&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br&gt;&amp;nbsp;&lt;/div&gt;&lt;/em&gt;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;&lt;p&gt;&amp;#32;


      &lt;!--8--&gt;&lt;hr size=1&gt;&lt;/hr&gt; Share files, take polls, and discuss your passions - all under one roof. &lt;a href=&quot;http://in.rd.yahoo.com/tagline_groups_8/*http://in.promos.yahoo.com/groups&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt; Click here.&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16140028&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Contents-of-Html_ajax-devel-digest...-tp16140028p16140028.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15619645</id>
	<title>Re: AJAX Error 0x80040111 (NS_ERROR_NOT_AVAILABLE)</title>
	<published>2008-02-21T11:48:07Z</published>
	<updated>2008-02-21T11:48:07Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">Hey,
&lt;br&gt;&lt;br&gt;I dont really have time to help I would recommend using a library to 
&lt;br&gt;handle your AJAX needs either HTML_AJAX or something else.
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;kamo wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Hi!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Thank you for the reply. I'm not sure how to adapt the sample code you sent
&lt;br&gt;&amp;gt; me to my case, due to my dreadful Javascript coding abilities. Although I
&lt;br&gt;&amp;gt; understand the inner logic I don't recognize some other underlying layers of
&lt;br&gt;&amp;gt; functioning. If I sent you my AJAX Javascript code could you kindly try to
&lt;br&gt;&amp;gt; adapt and comment it. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The thing is that at this moment I am implementing some GIS functions on
&lt;br&gt;&amp;gt; PHP/PostgreSQL/PostGIS that are rather complex and time demanding. Also if
&lt;br&gt;&amp;gt; you agree I would be very proud to make a reference to your efforts on my
&lt;br&gt;&amp;gt; MSc or other related works.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;-- Best regards
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; JoshuaEichorn wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Your not in the correct state to read that variable.
&lt;br&gt;&amp;gt;&amp;gt; Check out &lt;a href=&quot;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&lt;/a&gt;&amp;nbsp;for an 
&lt;br&gt;&amp;gt;&amp;gt; example on how it should be done.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _readyStateChangeCallback is the method that checks the status
&lt;br&gt;&amp;gt;&amp;gt; -josh
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=15619645&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-Error-0x80040111-%28NS_ERROR_NOT_AVAILABLE%29-tp15581605p15619645.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15616656</id>
	<title>Re: AJAX Error 0x80040111 (NS_ERROR_NOT_AVAILABLE)</title>
	<published>2008-02-21T09:44:20Z</published>
	<updated>2008-02-21T09:44:20Z</updated>
	<author>
		<name>kamo</name>
	</author>
	<content type="html">&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt; Hi!
&lt;br&gt;&lt;br&gt;&amp;nbsp;Thank you for the reply. I'm not sure how to adapt the sample code you sent me to my case, due to my dreadful Javascript coding abilities. Although I understand the inner logic I don't recognize some other underlying layers of functioning. If I sent you my AJAX Javascript code could you kindly try to adapt and comment it. 
&lt;br&gt;&lt;br&gt;The thing is that at this moment I am implementing some GIS functions on PHP/PostgreSQL/PostGIS that are rather complex and time demanding. Also if you agree I would be very proud to make a reference to your efforts on my MSc or other related works.
&lt;br&gt;&lt;br&gt;&amp;nbsp;-- Best regards
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;JoshuaEichorn wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Your not in the correct state to read that variable.
&lt;br&gt;Check out &lt;a href=&quot;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&lt;/a&gt;&amp;nbsp;for an 
&lt;br&gt;example on how it should be done.
&lt;br&gt;&lt;br&gt;_readyStateChangeCallback is the method that checks the status
&lt;br&gt;-josh
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-Error-0x80040111-%28NS_ERROR_NOT_AVAILABLE%29-tp15581605p15616656.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15592841</id>
	<title>Re: AJAX Error 0x80040111 (NS_ERROR_NOT_AVAILABLE)</title>
	<published>2008-02-20T08:28:15Z</published>
	<updated>2008-02-20T08:28:15Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">Your not in the correct state to read that variable.
&lt;br&gt;&lt;br&gt;Check out &lt;a href=&quot;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.bluga.net/HTML_AJAX/trunk/js/HttpClient.js&lt;/a&gt;&amp;nbsp;for an 
&lt;br&gt;example on how it should be done.
&lt;br&gt;&lt;br&gt;_readyStateChangeCallback is the method that checks the status
&lt;br&gt;-josh
&lt;br&gt;&lt;br&gt;&lt;br&gt;kamo wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;Hi!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; I'm having some problems to debug some AJAX oriented code that follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	
&lt;br&gt;&amp;gt; function sendAjaxRequest(formIndex, outputElement, flagElement){
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; var Form 	 &amp;nbsp; &amp;nbsp; = document.forms[formIndex];
&lt;br&gt;&amp;gt; var requestString &amp;nbsp;= getRequestString(Form);
&lt;br&gt;&amp;gt; var XMLHttp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= makeXMLHttpObject();
&lt;br&gt;&amp;gt; 			
&lt;br&gt;&amp;gt; 			// Output the status element
&lt;br&gt;&amp;gt; 			build_loading_flag(flagElement);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 			XMLHttp.open(&amp;quot;post&amp;quot;, Form.action, true);
&lt;br&gt;&amp;gt; 			XMLHttp.setRequestHeader(&amp;quot;Content-Type&amp;quot;,
&lt;br&gt;&amp;gt; &amp;quot;application/x-www-form-urlencoded; charset=UTF-8&amp;quot;);
&lt;br&gt;&amp;gt; 			
&lt;br&gt;&amp;gt; 			XMLHttp.onreadystatechange = 
&lt;br&gt;&amp;gt; 				function (){
&lt;br&gt;&amp;gt; 					if(XMLHttp.readyState == 4){
&lt;br&gt;&amp;gt; 						// This is resultant response form the server
&lt;br&gt;&amp;gt; 						showResults(XMLHttp.responseText, outputElement);
&lt;br&gt;&amp;gt; 						destroy_loading_flag(flagElement);
&lt;br&gt;&amp;gt; 						// Resets the form content
&lt;br&gt;&amp;gt; 						//document.forms[formIndex].reset(); 
&lt;br&gt;&amp;gt; 					}
&lt;br&gt;&amp;gt; 					else{
&lt;br&gt;&amp;gt; 					if (XMLHttp.statusText != &amp;quot;OK&amp;quot;){
&lt;br&gt;&amp;gt; 						alert(&amp;quot;An error has occurred. Status: &amp;quot; + XMLHttp.statusText);
&lt;br&gt;&amp;gt; 						destroy_loading_flag(flagElement);
&lt;br&gt;&amp;gt; 					}
&lt;br&gt;&amp;gt; 					else {
&lt;br&gt;&amp;gt; 						destroy_loading_flag(flagElement);
&lt;br&gt;&amp;gt; 					}
&lt;br&gt;&amp;gt; 				 &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; 				};
&lt;br&gt;&amp;gt; 				// This would be set to null in case of a GET request
&lt;br&gt;&amp;gt; 				XMLHttp.send(requestString); 
&lt;br&gt;&amp;gt; 			}	
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Every time I invoke this function Firefox error console throws the
&lt;br&gt;&amp;gt; following message at the line that calls the statusText attribute:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [Exception... &amp;quot;Component returned failure code: 0x80040111
&lt;br&gt;&amp;gt; (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.statusText]&amp;quot; &amp;nbsp;nsresult:
&lt;br&gt;&amp;gt; &amp;quot;0x80040111 (NS_ERROR_NOT_AVAILABLE)&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can someone help me out on this one. I'm not proefficient in this matters.
&lt;br&gt;&amp;gt; &amp;nbsp;-- Thanks in advance.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=15592841&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-Error-0x80040111-%28NS_ERROR_NOT_AVAILABLE%29-tp15581605p15592841.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15581605</id>
	<title>AJAX Error 0x80040111 (NS_ERROR_NOT_AVAILABLE)</title>
	<published>2008-02-19T19:28:55Z</published>
	<updated>2008-02-19T19:28:55Z</updated>
	<author>
		<name>kamo</name>
	</author>
	<content type="html">&amp;nbsp;
&lt;br&gt;&amp;nbsp;Hi!
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;gt; I'm having some problems to debug some AJAX oriented code that follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;function sendAjaxRequest(formIndex, outputElement, flagElement){
&lt;br&gt;&lt;br&gt;var Form 	 &amp;nbsp; &amp;nbsp; = document.forms[formIndex];
&lt;br&gt;var requestString &amp;nbsp;= getRequestString(Form);
&lt;br&gt;var XMLHttp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= makeXMLHttpObject();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Output the status element
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; build_loading_flag(flagElement);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XMLHttp.open(&amp;quot;post&amp;quot;, Form.action, true);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XMLHttp.setRequestHeader(&amp;quot;Content-Type&amp;quot;, &amp;quot;application/x-www-form-urlencoded; charset=UTF-8&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XMLHttp.onreadystatechange = 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(XMLHttp.readyState == 4){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // This is resultant response form the server
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; showResults(XMLHttp.responseText, outputElement);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; destroy_loading_flag(flagElement);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Resets the form content
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //document.forms[formIndex].reset(); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (XMLHttp.statusText != &amp;quot;OK&amp;quot;){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;An error has occurred. Status: &amp;quot; + XMLHttp.statusText);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; destroy_loading_flag(flagElement);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; destroy_loading_flag(flagElement);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // This would be set to null in case of a GET request
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XMLHttp.send(requestString); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }	
&lt;br&gt;&lt;br&gt;&amp;nbsp;Every time I invoke this function Firefox error console throws the following message at the line that calls the statusText attribute:
&lt;br&gt;&lt;br&gt;[Exception... &amp;quot;Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.statusText]&amp;quot; &amp;nbsp;nsresult: &amp;quot;0x80040111 (NS_ERROR_NOT_AVAILABLE)&amp;quot;
&lt;br&gt;&lt;br&gt;Can someone help me out on this one. I'm not proefficient in this matters.
&lt;br&gt;&amp;nbsp;-- Thanks in advance.
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-Error-0x80040111-%28NS_ERROR_NOT_AVAILABLE%29-tp15581605p15581605.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14898840</id>
	<title>Re: Best way to do AJAX (superfly)</title>
	<published>2008-01-16T15:36:09Z</published>
	<updated>2008-01-16T15:36:09Z</updated>
	<author>
		<name>superfly</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;standerby wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Thank you superfly. It is really helpful.
&lt;br&gt;&lt;br&gt;Lewis
&lt;br&gt;&lt;br&gt;and the ajax output goes to 
&lt;br&gt;src=&amp;quot;server.php?client=all&amp;stub=ajaxclass&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp;var remote = new ajaxclass({});
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
some parts of my posts didnt get throu the nable security and i think i posted a bug :(
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt; h e a d e r &amp;gt;
&lt;br&gt;&amp;lt; script type=&amp;quot;java.... src=&amp;quot;sever.php...&amp;quot; &amp;gt;
&lt;br&gt;&amp;lt; script type=&amp;quot;java.... &amp;gt;
&lt;br&gt;var remote = new ajaxclass({}); // we need to start the class too
&lt;br&gt;&lt;br&gt;the js eventcall should then be -&amp;gt; onclick=&amp;quot;remote.updateorder('company','&amp;lt;?=$pageID?&amp;gt;');&amp;quot;
&lt;br&gt;&lt;br&gt;now it should work ;)
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Best-way-to-do-AJAX-%28superfly%29-tp14896627p14898840.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14896627</id>
	<title>Re: Best way to do AJAX (superfly)</title>
	<published>2008-01-16T14:01:30Z</published>
	<updated>2008-01-16T14:01:30Z</updated>
	<author>
		<name>standerby</name>
	</author>
	<content type="html">Thank you superfly. It is really helpful.&lt;br&gt;&lt;br&gt;Lewis&lt;br&gt;&lt;blockquote class=&quot;replbq&quot; style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------&lt;br&gt;&lt;br&gt;Message: 1&lt;br&gt;Date: Wed, 16 Jan 2008 06:58:46 -0800 (PST)&lt;br&gt;From: superfly &lt;brachycera@gmail.com&gt;&lt;br&gt;Subject: Re: [HTML_AJAX-devel] Best way to do AJAX&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14896627&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel@...&lt;/a&gt;&lt;br&gt;Message-ID: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14896627&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;14881479.post@...&lt;/a&gt;&amp;gt;&lt;br&gt;Content-Type: text/plain; charset=us-ascii&lt;br&gt;&lt;br&gt;&lt;br&gt;hey lewis!&lt;br&gt;&lt;br&gt;first see the examples how to setup the PEAR_AJAX server.php and to start&lt;br&gt;the class. when you got this, you should end up with a class you start via&lt;br&gt;the server.php. in this class you can put functions to interact with your&lt;br&gt;form. i show you an example how i made this for a project from myself...&lt;br&gt;&lt;br&gt;in this func a user uses a radiobutton so re-sort the search results&lt;br&gt;&lt;br&gt;class ajaxclass {&lt;br&gt;
 &lt;br&gt; function ajaxclass(){&lt;br&gt; }&lt;br&gt;&lt;br&gt;function updateorder($order, $pageID){&lt;br&gt;  &lt;br&gt;  if(!empty($_SESSION['query'])){&lt;br&gt;&lt;br&gt;   require_once 'HTML/AJAX/Action.php';&lt;br&gt;   $objAction =&amp;amp; new HTML_AJAX_Action();&lt;br&gt;   &lt;br&gt;   if($order=='zuname'){&lt;br&gt;    $_SESSION['query']['order'] = 'zuname';    &lt;br&gt;   }&lt;br&gt;   &lt;br&gt;   if($order=='company'){&lt;br&gt;    $_SESSION['query']['order'] = 'company';&lt;br&gt;   }&lt;br&gt;   &lt;br&gt;   if($order=='lastEdit'){&lt;br&gt;    $_SESSION['query']['order'] = 'lastEdit';&lt;br&gt;   }&lt;br&gt;   &lt;br&gt;   &lt;br&gt;   if($_SESSION['query']['output']=='adressen'){&lt;br&gt;    $output = utf8_encode(queryOutputAdresses($_SESSION['query'],$pageID));&lt;br&gt;   }else{&lt;br&gt;    $output = utf8_encode(queryOutputMarketing($_SESSION['query'],$pageID));&lt;br&gt;   }&lt;br&gt;   &lt;br&gt;   $objAction-&amp;gt;assignAttr('result', 'innerHTML', $output); // 'result' is&lt;br&gt;the ID of an html element&lt;br&gt;   return $objAction;&lt;br&gt;  }&lt;br&gt;  &lt;br&gt; }&lt;br&gt;&lt;br&gt;&lt;br&gt;on the HTML side i call this func
 with:&lt;br&gt;onclick=&quot;ajaxclass.updateorder('company','$pageID');&quot;&lt;br&gt;&lt;br&gt;and the ajax output goes to &lt;/brachycera@gmail.com&gt;&lt;div id=&quot;result&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;in the header area i got &amp;lt;br&amp;gt;&amp;lt;header&amp;gt;&amp;lt;br&amp;gt;&amp;lt;script type=&quot; text=&quot;&quot; javascript=&quot;&quot;&gt;&lt;br&gt;src=&quot;server.php?client=all&amp;amp;stub=ajaxclass&quot;&amp;gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;sorry my english is not the best and this example might not be perfect&lt;br&gt;either, but maybe you get a glimpse how to use PEAR_AJAX&lt;br&gt;&lt;br&gt;have fun, &lt;br&gt;superfly&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;standerby wrote:&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I am working on a web page, which has check box, radio button, slider,&lt;br&gt;&amp;gt; etc. What I want to accomplish is to display some data retrieved from&lt;br&gt;&amp;gt; database using the criteria enforced by those controls. I am using MDB2&lt;br&gt;&amp;gt; for database accessing and it works great. My question is what method I&lt;br&gt;&amp;gt; should use for
 HTML_AJAX to interactive with customer. For instance if a&lt;br&gt;&amp;gt; customer check a checkbox it will make a query to database and update the&lt;br&gt;&amp;gt; content div.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Thanks,&lt;br&gt;&amp;gt; Lewis&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;        &lt;br&gt;&amp;gt; ---------------------------------&lt;br&gt;&amp;gt; Never miss a thing.   Make Yahoo your homepage.&lt;br&gt;&amp;gt; _______________________________________________&lt;br&gt;&amp;gt; Html_ajax-devel mailing list&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14896627&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;&lt;br&gt;&amp;gt; http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;/div&gt;&lt;br&gt;-- &lt;br&gt;View this message in context: http://www.nabble.com/Best-way-to-do-AJAX-tp14744756p14881479.html&lt;br&gt;Sent from the HTML_AJAX Dev/Support mailing list archive at Nabble.com.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Html_ajax-devel mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14896627&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;&lt;br&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;br&gt;&lt;br&gt;&lt;br&gt;End of Html_ajax-devel
 Digest, Vol 29, Issue 2&lt;br&gt;**********************************************&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;br&gt;&lt;p&gt;&amp;#32;



      &lt;hr size=1&gt;Never miss a thing.  &lt;a href=&quot;http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt; Make Yahoo your homepage.&lt;/a&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14896627&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Best-way-to-do-AJAX-%28superfly%29-tp14896627p14896627.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14881479</id>
	<title>Re: Best way to do AJAX</title>
	<published>2008-01-16T06:58:46Z</published>
	<updated>2008-01-16T06:58:46Z</updated>
	<author>
		<name>superfly</name>
	</author>
	<content type="html">hey lewis!
&lt;br&gt;&lt;br&gt;first see the examples how to setup the PEAR_AJAX server.php and to start the class. when you got this, you should end up with a class you start via the server.php. in this class you can put functions to interact with your form. i show you an example how i made this for a project from myself...
&lt;br&gt;&lt;br&gt;in this func a user uses a radiobutton so re-sort the search results
&lt;br&gt;&lt;br&gt;class ajaxclass {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function ajaxclass(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;function updateorder($order, $pageID){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(!empty($_SESSION['query'])){
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; require_once 'HTML/AJAX/Action.php';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $objAction =&amp; new HTML_AJAX_Action();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($order=='zuname'){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $_SESSION['query']['order'] = 'zuname';				
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($order=='company'){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $_SESSION['query']['order'] = 'company';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($order=='lastEdit'){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $_SESSION['query']['order'] = 'lastEdit';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($_SESSION['query']['output']=='adressen'){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $output = utf8_encode(queryOutputAdresses($_SESSION['query'],$pageID));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }else{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $output = utf8_encode(queryOutputMarketing($_SESSION['query'],$pageID));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $objAction-&amp;gt;assignAttr('result', 'innerHTML', $output); // 'result' is the ID of an html element
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $objAction;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;on the HTML side i call this func with:
&lt;br&gt;onclick=&amp;quot;ajaxclass.updateorder('company','$pageID');&amp;quot;
&lt;br&gt;&lt;br&gt;and the ajax output goes to &amp;lt;div id=&amp;quot;result&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;in the header area i got 
&lt;br&gt;&amp;lt;header&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;server.php?client=all&amp;amp;stub=ajaxclass&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;var remote = new ajaxclass({});&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;/header&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;sorry my english is not the best and this example might not be perfect either, but maybe you get a glimpse how to use PEAR_AJAX
&lt;br&gt;&lt;br&gt;have fun, 
&lt;br&gt;superfly
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;standerby wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I am working on a web page, which has check box, radio button, slider, etc. What I want to accomplish is to display some data retrieved from database using the criteria enforced by those controls. I am using MDB2 for database accessing and it works great. My question is what method I should use for HTML_AJAX to interactive with customer. For instance if a customer check a checkbox it will make a query to database and update the content div.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Lewis
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;---------------------------------
&lt;br&gt;Never miss a thing. &amp;nbsp; Make Yahoo your homepage.
&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;Html_ajax-devel@lists.bluga.net
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-way-to-do-AJAX-tp14744756p14881479.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14744756</id>
	<title>Best way to do AJAX</title>
	<published>2008-01-10T13:47:59Z</published>
	<updated>2008-01-10T13:47:59Z</updated>
	<author>
		<name>standerby</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I am working on a web page, which has check box, radio button, slider, etc. What I want to accomplish is to display some data retrieved from database using the criteria enforced by those controls. I am using MDB2 for database accessing and it works great. My question is what method I should use for HTML_AJAX to interactive with customer. For instance if a customer check a checkbox it will make a query to database and update the content div.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Lewis&lt;br&gt;&lt;p&gt;&amp;#32;

      &lt;hr size=1&gt;Never miss a thing.  &lt;a href=&quot;http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt; Make Yahoo your homepage.&lt;/a&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14744756&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-way-to-do-AJAX-tp14744756p14744756.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14134967</id>
	<title>Re: RE : RE : AJAX requests which fail silently ?</title>
	<published>2007-12-03T09:43:05Z</published>
	<updated>2007-12-03T09:43:05Z</updated>
	<author>
		<name>JoshuaEichorn</name>
	</author>
	<content type="html">The custom handler is only used on the specific remote handler where its 
&lt;br&gt;set so everything else is still going to use the default handler.
&lt;br&gt;&lt;br&gt;-josh
&lt;br&gt;Alain BAUDHUIN wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Josh,
&lt;br&gt;&amp;gt; Thanks for the example, but would this technique not replace the handler for
&lt;br&gt;&amp;gt; any method I would call on any remote object ? It is essential in my case
&lt;br&gt;&amp;gt; that I can use both 'silently failing' methods AND 'regularly failing'
&lt;br&gt;&amp;gt; methods in the page (and even with overlapping calls). I can obviously group
&lt;br&gt;&amp;gt; the silently failing methods in a dedicated remote object if it helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Alain.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _____________________
&lt;br&gt;&amp;gt; Alain BAUDHUIN
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alain.baudhuin@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Message d'origine-----
&lt;br&gt;&amp;gt; De : Joshua Eichorn [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;josh@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; Envoyé : vendredi 30 novembre 2007 23:40
&lt;br&gt;&amp;gt; À : Alain BAUDHUIN
&lt;br&gt;&amp;gt; Cc : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Objet : Re: RE : [HTML_AJAX-devel] AJAX requests which fail silently ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Adding the custom error handler on remote stubs is a little ugly but it 
&lt;br&gt;&amp;gt; works.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You just have to add an onError function to the dispatchers options array
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://bluga.net/projects/HTML_AJAX/examples/error.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bluga.net/projects/HTML_AJAX/examples/error.php&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For a quick example.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -josh
&lt;br&gt;&amp;gt; Alain BAUDHUIN wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Josh,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Setting error handlers at call-level sound exactly like the solution I 
&lt;br&gt;&amp;gt;&amp;gt; need. For those 'silently failing' calls, I'm only using Remote Stubs, 
&lt;br&gt;&amp;gt;&amp;gt; as demonstrated in listing 9-4 in your book.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks in advance,
&lt;br&gt;&amp;gt;&amp;gt; Alain.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _____________________
&lt;br&gt;&amp;gt;&amp;gt; Alain BAUDHUIN
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alain.baudhuin@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -----Message d'origine-----
&lt;br&gt;&amp;gt;&amp;gt; De : Joshua Eichorn [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;josh@...&lt;/a&gt;]
&lt;br&gt;&amp;gt;&amp;gt; Envoyé : vendredi 30 novembre 2007 22:07
&lt;br&gt;&amp;gt;&amp;gt; À : Alain BAUDHUIN
&lt;br&gt;&amp;gt;&amp;gt; Cc : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Objet : Re: [HTML_AJAX-devel] AJAX requests which fail silently ?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Alain BAUDHUIN wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm an enthusiast user of &amp;nbsp;HTML_AJAX for some time already. I'm 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; mainly exposing PHP classes using stubs, and I've provided my version of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; HTML_AJAX.onError= function(e) { (...) }which works just fine.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; But now I'm facing the fact that some some of the exposed functions 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; should not perform any error reporting to the user in case of 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; failure, (eg. server not available),. At some places, asynchronous 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; calls to no-error-reporting-methods and 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; standard-error-reporting-methods can be mixed, so I cannot possibly 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; remove and restore the error handler. &amp;nbsp;Is there any way to inhibit 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; error reporting on some of the exposed methods and not others ?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My only other idea would be to instanciate a second HTML_AJAX object, 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; with an empty onError function, but is this even possible since 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; HTML_AJAX is a global ?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks for any hint,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Alain.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _____________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Alain BAUDHUIN
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alain.baudhuin@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alain.baudhuin@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Html_ajax-devel mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; You should be able to set error handlers at the call level, with the
&lt;br&gt;&amp;gt;&amp;gt; global handler used if thats not set.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I can give you an example if I know what your doing (proxies,
&lt;br&gt;&amp;gt;&amp;gt; HTML_AJAX.post, etc etc)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -josh
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Html_ajax-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14134967&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Html_ajax-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.bluga.net/mailman/listinfo/html_ajax-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-requests-which-fail-silently---tp14097743p14134967.html" />
</entry>

</feed>
