[interchange-cvs] interchange - racke modified lib/Vend/SOAP.pm

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Tue Mar 18 08:40:02 2003


User:      racke
Date:      2003-03-18 13:37:02 GMT
Modified:  lib/Vend SOAP.pm
Log:
enable the full power of Interchange Perl/Usertags for the SOAP_Action

Revision  Changes    Path
2.8       +4 -2      interchange/lib/Vend/SOAP.pm


rev 2.8, prev_rev 2.7
Index: SOAP.pm
===================================================================
RCS file: /var/cvs/interchange/lib/Vend/SOAP.pm,v
retrieving revision 2.7
retrieving revision 2.8
diff -u -r2.7 -r2.8
--- SOAP.pm	11 Mar 2003 18:56:01 -0000	2.7
+++ SOAP.pm	18 Mar 2003 13:37:02 -0000	2.8
@@ -1,6 +1,6 @@
 # Vend::SOAP - Handle SOAP connections for Interchange
 #
-# $Id: SOAP.pm,v 2.7 2003/03/11 18:56:01 racke Exp $
+# $Id: SOAP.pm,v 2.8 2003/03/18 13:37:02 racke Exp $
 #
 # Copyright (C) 1996-2002 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -34,7 +34,7 @@
 use strict;
 
 use vars qw($VERSION @ISA $AUTOLOAD);
-$VERSION = substr(q$Revision: 2.7 $, 10);
+$VERSION = substr(q$Revision: 2.8 $, 10);
 @ISA = qw/SOAP::Server/;
 
 my %Allowed_tags;
@@ -302,6 +302,8 @@
     $routine =~ s/.*:://;
 	if ($Vend::Cfg->{SOAP_Action}{$routine}) {
 		$sub = $Vend::Cfg->{SOAP_Action}{$routine};
+		Vend::Interpolate::init_calc();
+		new Vend::Tags;
 	} elsif (! $Allowed_tags{$routine}) {
 		die ::errmsg("Not allowed routine: %s", $routine);
 	}