-
Thanks for the help. I was able to capture a debug log of the bug that suggests that Chrome is never sending the missing Cookie header to Privoxy. Lots more details on Chrome's bug tracker.
I've marked this bug "closed" on Privoxy's bug tracker since I have no evidence it's actually a Privoxy bug. Would be nice to keep the bug entry in the database, though, in case the Chrome team thinks it's...
2009-11-09 17:00:07 UTC in Privoxy
-
I'm trying to pin down a problem where Google Chrome 4.0.223.16 (current beta version) does not always send cookies on requests. The problem only occurs in Chrome if requests are going through Privoxy. It only started appearing in Chrome 4.0; Chrome 3.0 (current stable) does not show it. I do not know if it's a bug in Chrome, Privoxy, or the combination of the two.
There's a lot more detail...
2009-11-08 16:40:51 UTC in Privoxy
-
Here's a patch we use to make SOAPpy work better
when serializing arrays of complex types when calling a
document/literal service. It surpresses broken type
information and multirefs.
2004-12-03 00:58:42 UTC in Web Services for Python
-
In certain circumstances SOAPpy decides to serialize
things using multirefs. When it does that it seems to
stomp out any SOAP headers that were set. The
following patch fixes this, although I don't understand
SOAPpy well enough to know if this causes other
problems.
2004-08-01 20:48:54 UTC in Web Services for Python
-
Logged In: YES
user_id=9313
please disregard this - user error!
2004-05-17 00:00:54 UTC in Web Services for Python
-
class SOAPConfig, in its __init__ function, sets
self.debug to 0. This overrides a setting the user may
have made before the class is first instantiated. In
particular, my code like this:
import SOAPpy
SOAPPy.Config.debug = 1
wasn't working, but if I put the setting of debug after I
did something else with SOAPpy it worked.
2004-05-16 20:46:07 UTC in Web Services for Python
-
Logged In: YES
user_id=9313
ugh, indentation got lost. You get the idea :-)
2004-03-28 22:41:39 UTC in Web Services for Python
-
Logged In: YES
user_id=9313
ugh, indentation got lost. You get the idea :-)
2004-03-28 22:41:16 UTC in Web Services for Python
-
Client.py had an unguarded print statement if a fault
occurred on line 356. Below is a tiny patch to guard this
inside Config.debug
diff -d -u -r1.16 Client.py
--- Client.py 18 Feb 2004 04:05:59 -0000 1.16
+++ Client.py 28 Mar 2004 22:38:32 -0000
@@ -353,7 +353,8 @@
throw_struct = 0
if throw_struct:
- print p
+ if Config.debug:
2004-03-28 22:40:44 UTC in Web Services for Python
-
When using SOAPpy.Proxy, an array of unicode strings
does not serialize correctly; SOAPpy searlizes it with a
non-existent XML Schema type 'unicode'. I've included a
patch that seems to help in Python 2.2, but no test.
Between this bug and the boolean bug 888345, I think
it's a bad idea for SOAPpy to rely on type
(Foo).__name__ to be the XML Schema type. My patch
fixes the...
2004-03-15 02:28:22 UTC in Web Services for Python