Hi Derrel,

I've checked in your patches.  Note that for consistency with what I believe
Sebastian's preferred naming scheme is, I camel-cased the new property name,
so you'll have to change your code which uses the property.

You've camel-cased the property name but you forgot to change the calls to the getter and setter ;-)

I've attached a patch in one file ;-)

Thanks again.

Antony
Index: RemoteExchange.js
===================================================================
--- RemoteExchange.js   (revision 4223)
+++ RemoteExchange.js   (working copy)
@@ -423,7 +423,7 @@
         vTransport = new vTransportImpl;
         this.setImplementation(vTransport);
 
-        vTransport.setUseBasicHTTPAuth(vRequest.getUseBasicHTTPAuth());
+        vTransport.setUseBasicHttpAuth(vRequest.getUseBasicHttpAuth());
         
         vTransport.send();
         return true;
Index: Rpc.js
===================================================================
--- Rpc.js      (revision 4223)
+++ Rpc.js      (working copy)
@@ -205,7 +205,7 @@
   req.setCrossDomain(this.getCrossDomain());
 
   if (this.getUsername()) {
-    req.setUseBasicHTTPAuth(this.getUseBasicHTTPAuth());
+    req.setUseBasicHttpAuth(this.getUseBasicHttpAuth());
     req.setUsername(this.getUsername());
     req.setPassword(this.getPassword());
   }
Index: XmlHttpTransport.js
===================================================================
--- XmlHttpTransport.js (revision 4223)
+++ XmlHttpTransport.js (working copy)
@@ -267,7 +267,7 @@
   //   Opening connection
   // --------------------------------------
   if (this.getUsername()) {
-    if (this.getUseBasicHTTPAuth()) {
+    if (this.getUseBasicHttpAuth()) {
       vRequest.open(vMethod, vUrl, vAsynchronous);
       vRequest.setRequestHeader('Authorization',
                                 'Basic ' + encode64(this.getUsername() +
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to