perl/modules/WebService/Validator/CSS/lib/WebService/Validator/CSS W3C.pm,1.7,1.8

Update of /sources/public/perl/modules/WebService/Validator/CSS/lib/WebService/Validator/CSS
In directory hutz:/tmp/cvs-serv21284/lib/WebService/Validator/CSS

Modified Files:
	W3C.pm 
Log Message:
removing workarounds for old versions of SOAP::Lite module, requiring version > 0.65

Index: W3C.pm
===================================================================
RCS file: /sources/public/perl/modules/WebService/Validator/CSS/lib/WebService/Validator/CSS/W3C.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- W3C.pm	31 Oct 2005 07:51:27 -0000	1.7
+++ W3C.pm	18 Jan 2007 02:40:41 -0000	1.8
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-use SOAP::Lite;
+use SOAP::Lite 0.65;
 use LWP::UserAgent qw//;
 use URI qw//;
 use URI::QueryParam qw//;
@@ -64,15 +64,6 @@
     
     local $_ = $res->content;
     
-
-    # workaround for SOAP::Lite's lack of support for SOAP 1.2
-    s{xmlns:env="http://www.w3.org/2003/05/soap-envelope"}
-     {xmlns:env="http://www.w3.org/2001/06/soap-envelope"};
-
-    # workaround for SOAP::Lite's lack of support for SOAP 1.2
-    s{env:encodingStyle="http://www.w3.org/2003/05/soap-encoding"}
-     {env:encodingStyle="http://www.w3.org/2001/06/soap-encoding"};
-
     my $som;
     eval { $som = SOAP::Deserializer->new->deserialize($_); };
 

Received on Thursday, 18 January 2007 02:40:50 UTC